Expand my Community achievements bar.

SOLVED

PercentPageView as a integer

Avatar

Level 1

Hello Guys,

 

I have a question again. Is it possible to transform PercentPagedViewed (is a string) as an integer?

 

For info: PercentPagedViewed is a costum JavaScript code

 

.................

var previousPageName=s.getPreviousValue(s.pageName,'s_ppn');
_satellite.logger.log('previousPageName pageName s_ppn ' + previousPageName);
var ppv = s.getPercentPageViewed(previousPageName); //get array of data on prev page % viewed
_satellite.logger.log('ppv[0]: ' + ppv[0]);
_satellite.logger.log('ppv[1]: ' + ppv[1] + ' the maximum percentage viewed ');
//if( ppv && typeof ppv=='object' && ppv[0] == previousPageName) { // this is from doku, but does not work
if (ppv && typeof ppv=='object') {
s.linkTrackVars="prop32,prop33";
s.prop32= ppv[1]; //the maximum percentage viewed
s.prop33=previousPageName;
}

 

Thanks a lot in advance!

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

@marcel3 

You can try to send or set the PercentageViewed to an event as well 

copy your prop value to event and this event can be set as interger or numeric event

Below is the documentation on different types of event types in adobe analytics

https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/events/events-overvi...

 

This would turn the percentage viewed as metric in reporting

 

 

View solution in original post

2 Replies

Avatar

Correct answer by
Employee Advisor

@marcel3 

You can try to send or set the PercentageViewed to an event as well 

copy your prop value to event and this event can be set as interger or numeric event

Below is the documentation on different types of event types in adobe analytics

https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/events/events-overvi...

 

This would turn the percentage viewed as metric in reporting