Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

asheth2295
asheth2295
Online

Badges

Badges
12

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
4

Posts

Posts
44

Discussions

Discussions
2

Questions

Questions
42

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by asheth2295
Customize the badges you want to showcase on your profile
Re: Implementing custom code using Adobe Launch - Part 2 - Adobe Analytics 08-06-2022
Thanks for the insights and explanation. And, that is super helpful in understanding. I tried above but it says " illegal return statement" Also, when I use the below code in the console which I have put as a custom code in the "ITEM" data element, I get the values printed in the console. Attached is the screenshot. But, when I call that value using _satellite.getvar("ITEM") . It does not print any value(function(){ var products = ""; i=1; items = JSON.parse(JSON.stringify(bt.order.items)); item...

Views

134

Likes

0

Replies

2
campaign cid - Adobe Analytics 06-06-2022
I have a sample url with cid . The cid is configured in Adobe Launch.https://www.xyz.com/contact-us?cid=2022-spring|speed-flexibility|end2end|california|usa|google|ads|bluebutton 2|bluebutton|test I have created below for the agency to populate the data. How do, I classify the above data and report it in Adobe Analysis Workspace. Do I have to use a classification importer to import the data when they fill out below? Is there other ways to do it? Destination URLutm_campaign(utm_campaignchild)Spec...

Views

147

Likes

0

Replies

3
Re: How to trigger custom event in adobe launch rules - Adobe Experience Platform Data Collection 30-05-2022
What about "window".? Does it work on listening to custom events? Below is an examplewindow.dispatchEvent(new CustomEvent("email_submit"));

Views

736

Likes

0

Replies

1
Re: How to trigger custom event in adobe launch rules - Adobe Experience Platform Data Collection 30-05-2022
Thank you for the confirmation. I will let my developers know to pass the native custom event and then configure the rule in Launch to listen to it.

Views

739

Likes

0

Replies

0
Re: utm tracking through Adobe Launch custom code - Adobe Analytics 27-05-2022
Thank you. That's very helpful to use without s object.

Views

181

Likes

0

Replies

0
Re: utm tracking through Adobe Launch custom code - Adobe Analytics 27-05-2022
Thank you so much!! This is super helpful to use "Query String Parameter" data element. And, creating data element for each.

Views

182

Likes

0

Replies

1
Re: How to trigger custom event in adobe launch rules - Adobe Experience Platform Data Collection 26-05-2022
Curious to know where do you add this? As we are also migrating from signal to launch?

Views

768

Likes

0

Replies

0
Triggering Rules with a CustomEvent - on window - Adobe Experience Platform Data Collection 26-05-2022
Based, on this post, https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289538/highlight/true#M1552 can I trigger the window on the custom event type? Does listening on window work now in Adobe Launch? Do you have to dispatch the event from window to body or document ? 

Views

133

Likes

0

Replies

1
Implementing custom code using Adobe Launch - Part 2 - Adobe Analytics 25-05-2022
document.addEventListener('DOMContentLoaded', function(event) { try { var img = document.createElement('img'), cjcid = '855555', cjactionid = (document.location.hostname.indexOf('mobile.') > -1) ? '360841' : '348384', products = "", oid = (typeof digitalData !== 'undefined' && typeof digitalData.order !== 'undefined') ? digitalData.order.id : 'no order id', i = 1, items = (typeof digitalData !== 'undefined' && typeof digitalData.order !== 'undefined') ? JSON.parse(JSON.stringify(bt.order.items)) : [], eid = digitalData_cookie('cjevent'), cjevent = (eid) ? "&CJEVENT=" + eid : "", src="https://www.emjcd.com/u?" + "TYPE=" + cjactionid + "&CID=" + cjcid + "&CURRENCY=USD" + "&OID=" + oid + "&METHOD=IMG" + cjevent; items.forEach(function(product) { var param = []; param.push("ITEM" + i + "=" + product.valuespecificsku); param.push("AMT" + i + "=" + product.price*.965); param.push("QTY" + i + "=" + product.quantity); products += "&" + param.join("&"); i += 1; }); img.width = "20"; img.height = "1"; img.src=src + products; document.body.appendChild(img); } catch (ex) {console.log('error: cj: ' + ex.message);} }); I have implemented below based on this Re: Implementing custom code using Adobe Launch Now, My question is how do I implement a for loop like below "ITEM", "AMT", and "PRODUCT" using the custom code. Will it be something like this?

Views

196

Likes

0

Replies

5
utm tracking through Adobe Launch custom code - Adobe Analytics 25-05-2022
I am trying to implement UTM tracking through the Adobe Launch custom code section in the extensions configure tracker custom code. I was curious to know what other ways I can capture the utm_campaign,utm_source, and utm_medium through Adobe Launch Below is my code /* set s.campaign */ if(!s.campaign){ s._utm_campaign=s.getQueryParam('utm_campaign'); s._utm_source=s.getQueryParam('utm_source'); s._utm_medium=s.getQueryParam('utm_medium'); s._utm_term=s.getQueryParam('utm_term'); s._utm_content=s...

Views

217

Likes

0

Replies

5
Likes given to