Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!

BlueKai integration to Adobe Analytics

Avatar

Level 2

Hello,

I'm attempting to integrate Adobe Analytics with Oracle BlueKai DMP.

Our Adobe Analytics tag creates a global `window.s` object, my question is, how do I ensure my eVar values are captured properly? Do I need to wrap the eVar in a certain syntax for to capture values, or will my tag below automatically capture the values within the 'window.s' object?

Example:

<!-- Begin BlueKai Tag in body-->

<script type="text/javascript" src="http://tags.bkrtx.com/js/bk-coretag.js"></script>

<script type="text/javascript">

window.s = {

eVar10: 'eVar10Value',

eVar112: 'eVar112Value',

};

if (window.BKTAG !== undefined) {

window.BKTAG.getTracker({

reportSuiteID: [INSERT_ID],

marketingCloudContainerID: [INSERT_ID],

analyticsVisitorContainerID: [INSERT_ID],

});

window.BKTAG.doTag(2);

//pass UUIDs for ID swaps using the following syntax:

//bk_addPageCtx('eVar1', 'value');

bk_addPageCtx("eVar1", "'eVar1'");

BKTAG

.doTag(

{

site_id: [INSERT_ID]

, pixel_limit: 4

},

function() {

});

</script>

<!-- End BlueKai Tag -->

0 Replies