Expand my Community achievements bar.

SOLVED

evars and props are not populated on Adobe analytics

Avatar

Level 1

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/eve...

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

 

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.
 
 
 
 
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee

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...

 

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

View solution in original post

1 Reply

Avatar

Correct answer by
Employee

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...

 

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