コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Scroll Rate for Page Dimension in Report

Avatar

Level 4

Here I need have metric i.e.scroll rate, so I have created numeric event for scroll rate. 

bindukumari1990_0-1616961555270.png

So, for this I have used below plugin code and assigned it to prop and event8. 

 

bindukumari1990_1-1616961675489.png

When I checked in debugger tool, the event is coming properly with the value, but no data is shown in the AA reports. Please suggest the any solution. As I am beginner and new to tool.

 

Thanks!!

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

I re-read your s.events line in your original post's screenshot, and realised that there's another error: the "event8" isn't within the string itself.

Your s.events string should be like this:

s.events = "event8=" + s._ppvHighestPercentViewed;

 

元の投稿で解決策を見る

12 返信

Avatar

Community Advisor

In your event8, you should be tracking the number only. You should not include the "highestPercentViewed=" string.

Avatar

Level 4
@yuhuisg I have done it, but still it is showing no data in AA reports.

Avatar

Community Advisor
Are you tracking these as Custom Links, i.e. with s.tl() ? If so, have you set s.linkTrackVars and s.linkTrackEvents before firing s.tl() ?

Avatar

Level 4
No, @yuhuisg.

Avatar

Community Advisor
Well, there's your problem. You need to set s.linkTrackVars and s.linkTrackEvents with Custom Links if you're using custom code to set any props, eVars and/or events.

Avatar

Level 4
@yuhuisg, I am not tracking this as custom link, I have created the event and added the above code which is shown in screenshot in the adobe analytics extension.

Avatar

Community Advisor
Can you show a screenshot from your debugger tool that shows the event being sent to AA?

Avatar

Level 4

@yuhuisgplease find the screenshot

 

bindukumari1990_0-1617291972364.png

 

Avatar

Community Advisor
Thanks. Ok, looks like the problem is with how you've constructed your s.events string, otherwise the debugger won't show the Events value starting with "22".

Avatar

正解者
Community Advisor

I re-read your s.events line in your original post's screenshot, and realised that there's another error: the "event8" isn't within the string itself.

Your s.events string should be like this:

s.events = "event8=" + s._ppvHighestPercentViewed;

 

Avatar

Level 4
Thanks @yuhuisg. It worked.

Avatar

Community Advisor