Adobe Experience Platform Launch

Adobe Experience Platform Launch is a tag management system that enables your organization to deploy marketing and analytic tags on your properties. In this article, we will cover how to trigger a direct call to a rule configured in Adobe Experience Platform Launch when an end-user consents to a particular vendor.


Prerequisites

This article assumes that your organization already has the following implemented on a web property:

  • Sourcepoint CMP campaign(s)
  • Adobe Experience Platform Launch tags

Configure Adobe Launch rule

Navigate to the rules authoring section in the Adobe Launch platform and select an existing rule or create a new rule. Use the provided space to give your rule a name if it doesn't exist yet.

When finished, click + Add under the Events section.

Screenshot 2025-07-17 at 11.32.59 AM.png

Use the Event Type dropdown menu to select Direct Call. Add a unique direct call identifier in the provided identifier field. 

  Note: The unique direct call identifier will later be used within the Sourcepoint platform when configuring your consent action / opt-in hook. 

Screenshot 2025-07-17 at 11.46.46 AM.png

Click Keep Changes when finished.

Next, click + Add under the Actions section to configure what action should be executed when your direct call event is triggered. 

Screenshot 2025-07-17 at 11.49.17 AM.png

From the Action Configuration builder, select Custom Code from the Action Type dropdown menu. Use the provided space to enter the code snippet that should be executed. In our example, we will simply be logging a "Adobe Tag Fired" message to the browser console. 

Screenshot 2025-07-17 at 12.00.57 PM.png

Click Keep Changes when finished. 

Save your rule and publish the changes in accordance with your publishing flow. 


Configure Sourcepoint consent action/opt-in hook

Instructions on how to configure a consent action/opt-in hook differs slightly by campaign type. Please select a tab below for more details for a specific campaign.

GDPR (TCF/Standard) U.S. Multi-State Privacy (GPP/Standard) Global Enterprise

Navigate to the GDPR TCF or GDPR Standard vendor list associated with your property.

Screenshot 2025-07-17 at 3.34.26 PM.png

From the vendor list builder, select the purpose or vendor that when consented to will trigger your Adobe Launch rule.

Screenshot 2025-07-17 at 3.39.43 PM.png

From the subsequent modal, click the Consent Actions tab and use the Geolocation field to select the states/countries/regions that should be geo-targeted (i.e. only end-users from these states/countries/regions will trigger your Adobe Launch rule when they consent to the vendor or purpose). 

Screenshot 2025-07-18 at 8.52.26 AM.png

Next, ensure the Custom JS tab is selected in the modal and add the following code snippet in the provided space. The snippet performs the following:

  • Checks if the _satellite function is available
  • If the function is available, call the _satellite event using the track method
  • The code calls the direct call rule configured in Adobe Launch and logs a message to the browser console
if (typeof _satellite.track == 'function') {
    console.log('Consent hook fired');     
    _satellite.track('cmpconsent'); // must match the identifier in Adobe Launch 
    } 

Screenshot 2025-07-18 at 11.16.12 AM.png

Click Apply changes to confirm your consent action configuration. Save your vendor list when finished. 


Test integration

Navigate to the web property that has the Sourcepoint CMP implementation code and Adobe Launch tags implemented.

Refresh the page (or resurface the privacy manager) to consent/opt-into the vendor or purpose that will trigger your Adobe Launch rule. Click Save & Exit when finished.

Screenshot 2025-07-18 at 1.42.35 PM.png

Navigate to the browser console and confirm that the consent hook has fired and that the custom code you configured in the Adobe Launch rule has fired. In our example, the browser console should log:

  • Consent hook fired (console log from the consent hook configuration)
  • Adobe Tag Fired (console log from the the Adobe Launch rule)

 

 

 

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.