Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.

javascript conditions in DTM custom code

Avatar

Level 2

Hi,

I am trying to set values in some evars, props and events based on keywords present in the URL in the custom code of a direct call rule. so IF the URL contains xyz or abc, set

if (s.pageURL.indexOf("/xyz")>-1 || s.pageURL.indexOf("/abc")>-1)

{

s.event="event1";

s.prop5=s.eVar5=_satellite.getVar('test');

}

any idea on how to make these conditions work?

15 Replies

Avatar

Community Advisor

What are you trying to understand from a user behaviour perspective for the 2 types of URLs? Can you explain in more detail your desired categorization reporting output?

Avatar

Level 4

Hi, your sudo code looks like you are on the right path - are you having issues, if so what are they?

I'll use document.location instead of s.* though.

Avatar

Level 2

i am getting data for evar and prop but not for the event. is it required to pass values into event after the evar  and prop?

Avatar

Employee

Hi,

Looks like your event script has syntax error.

You currently have it implemented as s.event="event1", where-as it should be using s.events.

Your script should be s.events="event1".

Avatar

Level 2

my bad. it is s.events="event1"

so evar5 and prop5 getting triggered but event1 not getting triggered.

Avatar

Employee

If the syntax is correct, another factor which could prevent the event from being triggered completely is that your Direct Call Rule is setup to fire an "s.tl()" and your custom code is missing 'linktrackevents'.

Avatar

Employee

Can you IM me the Site URL, you currently have it implemented on? I'd further like to debug the implementation and server calls.

Thanks.

Avatar

Community Advisor

Because the syntax is not correct.

s.events="event1"; and not s.event="event1"; 's' is missing. Kindly change.

No need to pass the value into the event.

Avatar

Community Advisor

Can you use this instead?

s.events = s.apl(s.events, "event1", ",", 2);

Avatar

Level 2

will this have an impact on other events in the same rule?

Avatar

Community Advisor

Wherever you have events, rather than assigning the variable directly, use the below syntax.

s.event = "event1"

to

s.events = s.apl(s.events, "event1", ",", 2);

s.event = "event2"

to

s.events = s.apl(s.events, "event2", ",", 2);

Etc.

Avatar

Level 10

Hi!

I had the same problem! In my Direct Call Rule, I set up an s.tl() call in the Adobe Analytics section of the rule. I have eVars and props set in the the Global Variables section and I have eVars, props, and events being set in the Custom Code. Yet none of my events in the Custom Code were being included in the analytics call, even though the s.events variable was being correctly valued.

This is how I fixed it

1) in the Custom Code, you can set your s.event in any fashion (either with your s.events=event2 or by using the append function of s.apl()).

2) add this line of code as the last line in your Custom Code --> s.linkTrackEvents=s.events;

And that is it! Save your rule, refresh the web page, go through the steps to trigger the Direct Call Rule, and you should see the events included in your analytics call

HAve a good day -

Sarah

Avatar

Level 2

update:

replaced s.pageURL with window.document.URL and the rule seems to work fine. however only the first part of the condition is being considered i.e. rules fires when URL contains /xyz but not when it contains /abc.

if (window.document.URL.indexOf("/xyz")>-1 || window.document.URL.indexOf("/abc")>-1)

is there any other way to implement an OR condition?

Avatar

Level 4

Could you send sample url's where these condition fail?