Custom Conversion Variable (eVar) not reflecting in omniture report
Hello,
We are using adobe analytics for our enterprise application. We are setting some custom values through custom conversion variable (eVar) programmatically by taking reference of Using s.linkTrackVars and s.linkTrackEvents .
Example :
return;
}
s.linkTrackVars = 'eVar211,eVar212,events';
s.linkTrackEvents = 'event20';
s.eVar211 = 'test1';
s.eVar212 = 'test2';
s.events = 'event20';
s.tl(true, 'o', 'custom link track');
Evars are getting reflected on omnibug plugin of chrome browser correctly whereas its not reflecting on omniture tool at path `Reports > custom conversion`. Please help to understand on following points -
- After what time interval `eVars` gets reflected on omniture tool once its set ? is it possible to reflect it at realtime ?
- Is there another way to set `eVars` to custom changing values ?