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

No values in data feed for eVar column

Avatar

Level 2

Hello,

Does anyone have an explanation as to why an eVar column in a data feed would be empty of data while the post eVar column for that same eVar is being populated?

Thanks

James

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

It is correct SDK 4.x of Android and IOS both rely on contextData to send data to Adobe Analytics, there is no evar or props variables in the SDK

ContextData won't populate any report unless you set processing rules to map the contextData to a specific evar, prop or event etc...

As processing rules are post processing, it only populates post_column.

I would advise you to always use post_column in your data feed. To see when a post_evar was set check post_event_list and check if the id for the evar is present on the hit. If it is then it means it was set on this specific hit and did not persist.

Check this doc for processing rules:

How Processing Rules Work

Processing Order

Copy a Context Data Variable to an eVar

View solution in original post

6 Replies

Avatar

Level 3

The below example would help:

Imagine a evar with settings as : Expire After: Visit, Allocation: Most recent

Now in tag management/page source code, it is coded as evar1= "xyz" on Home page  and that's it! (keeping it simple)

Here is user journey  in a visit for may be e-commerce site, visited Home Page-->> Offers Page -->> CheckOut Page--> Cart Page.

Now over here, evar 1 for Home Page would be "xyz" and post_evar1 would also be "xyz" (The coded value)

Next page, offers page , evar1= "" (no value was set from code) thus blank but post_evar="xyz" (Persisted value as expiration if evar was visit). Similar case goes for checkout and Cart page where evar1 would be blank but post_evar1 would have persisted value.

The post_evar would also have values in case of processing rules/VISTA rules changing data.

As a thumb rule, always consider post values from clickstream whenever applying alogorithms for data validation, exporting data to SAS/R/DB, etc

Avatar

Level 2

Thank you pankajb58197403,

Your details match my understanding and it is really good to get validation. Thank you. I am afraid that may question is still outstanding though. At least in the case of a data feed, I am seeing no "xyz" at all for evar1. Does that make sense? In other words, I am seeing cases in which there is a post_evar value and not an evar value. This is data collected via mobile app but I cannot imagine the processing is different. We are simply grabbing the data and pivoting it in PowerBI.

Thank you

James

Avatar

Employee

Hi jamesw34595639​,

In case of mobile apps the variables are mostly populated using processing rules using the values in Context Data Variables. Hence, in your scenario, in the hit there will be no value passed in eVar1. But, as per the processing rule, a value will be passed which will directly populate the post column.

The same processing concept applies for VISTA rules.

Avatar

Correct answer by
Community Advisor

It is correct SDK 4.x of Android and IOS both rely on contextData to send data to Adobe Analytics, there is no evar or props variables in the SDK

ContextData won't populate any report unless you set processing rules to map the contextData to a specific evar, prop or event etc...

As processing rules are post processing, it only populates post_column.

I would advise you to always use post_column in your data feed. To see when a post_evar was set check post_event_list and check if the id for the evar is present on the hit. If it is then it means it was set on this specific hit and did not persist.

Check this doc for processing rules:

How Processing Rules Work

Processing Order

Copy a Context Data Variable to an eVar

Avatar

Level 2

Thank you Kaushalendra. That helps a lot an explains it perfectly.

Avatar

Level 2

Thank you Alexis. That level of detail is great!