Reterive Value from Custom Code | Community
Skip to main content
MktgCloudUser
Level 4
October 10, 2018
Solved

Reterive Value from Custom Code

  • October 10, 2018
  • 4 replies
  • 6105 views

Hello,

I'm using the Adobe Analytics "Set Variables" action and I have a variable in the Custom Code section.   How do I get the variable from the Custom Code and assign it to any of the evars, props, etc. in the UI? So if I have this:

var loc = 'florida';

what is the code I use to assign the value in the UI (not via code)?  %this.loc% doesn't work.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Gigazelle

As Andrey Osadchuk​ mentioned, custom code is run after the UI.

A way around this would be to have multiple "Analytics - Set Variables" in a rule. have the first one execute the custom code, then the second rule use the UI to set the variables.

4 replies

Level 2
October 10, 2018

You could set the element inside your custom code like this:

_satellite.setVar("user_location","florida");

to retrieve it to set the analytics call you can reference it like this %user_location%

MktgCloudUser
Level 4
October 11, 2018

Doesn't seem to work - the string literal %user_location% is passed.  Also tried %this.user_location%.

Andrey_Osadchuk
Level 10
October 11, 2018

MktgCloudUser, I have not checked this but it may not work just because the custom code is executed after the UI. If it's possible in your scenario, move your code from the "Custom code" to "Conditions" that have precedence. Let me know if that helped.

Gigazelle
Adobe Employee
GigazelleAdobe EmployeeAccepted solution
Adobe Employee
October 19, 2018

As Andrey Osadchuk​ mentioned, custom code is run after the UI.

A way around this would be to have multiple "Analytics - Set Variables" in a rule. have the first one execute the custom code, then the second rule use the UI to set the variables.