evars and props are not populated on Adobe analytics | Community
Skip to main content
February 3, 2020
Solved

evars and props are not populated on Adobe analytics

  • February 3, 2020
  • 1 reply
  • 3130 views

Hi Team,

When I am sending the evars and props from the React Native code, the value and their counts are not reflecting on the portal.

While I send the events they are reflecting there but not getting their values. 

Reference links of which I have taken the help are:

https://docs.adobe.com/content/help/en/mobile-services/universal-windows/analytics-univ-win-plat/event-serialization.html

https://aep-sdks.gitbook.io/docs/using-mobile-extensions/mobile-core/mobile-core-api-reference#track-app-actions

 

My code for evars and props  which I tried is:

 

function trackActionFunc(action, payload) {
ACPCore.trackAction(action, payload);
}
 
trackActionFunc("Sign-in Status", { "&&evars": "eVar12:Splash" }); // function call for evars
trackActionFunc("Page Name", { "&&props": "prop1:Splash" });  //function call for props
trackActionFunc("Sign-in Status", { "&&events": "eVar12:Splash" }); //function call for events
 
Please suggest a solution with sample code.
 
 
 
 
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 Jennifer_Andrews

Hi,

 

The link to describe sending trackState and trackAction is found here

 

https://aep-sdks.gitbook.io/docs/using-mobile-extensions/mobile-core/mobile-core-api-reference#track-app-states-and-views

 

Data with the Mobile SDK is sent as contextData therefore processing rules in Analytics will need to be created based on what you are sending via the methods, to be captured in the Analytics reporting for specific, evars/props/events.

 

Jen

1 reply

Jennifer_Andrews
Adobe Employee
Jennifer_AndrewsAdobe EmployeeAccepted solution
Adobe Employee
February 3, 2020

Hi,

 

The link to describe sending trackState and trackAction is found here

 

https://aep-sdks.gitbook.io/docs/using-mobile-extensions/mobile-core/mobile-core-api-reference#track-app-states-and-views

 

Data with the Mobile SDK is sent as contextData therefore processing rules in Analytics will need to be created based on what you are sending via the methods, to be captured in the Analytics reporting for specific, evars/props/events.

 

Jen