Implementing Activity Map through Websdk | Community
Skip to main content
Level 3
June 10, 2024
Solved

Implementing Activity Map through Websdk

  • June 10, 2024
  • 1 reply
  • 1378 views

Hi Team,

I am implementing activity map through websdk, I have followed the steps given in below document, but unable to see the data under web interaction.

https://experienceleague.adobe.com/en/docs/analytics/analyze/activity-map/getting-started/activitymap-enable

Is there any additional settings, which I am missing?

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Ankit_Chaudhary

Hi @bindukumari90 

By Enabling click data collection in web SDK extension will trigger a separate link click call every time you on any element on the page along with exit and download links.

There is no additional steps required for this process however make sure you are not changing "on before link click event send callback code" in the code editor which is available after checking the "enable data collection".

 

Although it depends on your case but I would not recommend tracking all the clicks on the page(some of it might be meaningless for your business) to prevent this use this code in the "on before link click event send callback" code editor

if (content.xdm.web.webInteraction.type === "other") { return false; }

you can refer to this blog to better optimize your click implementation and some more best practices by @andrew_wathen_ 

1 reply

Ankit_Chaudhary
Community Advisor
Ankit_ChaudharyCommunity AdvisorAccepted solution
Community Advisor
June 13, 2024

Hi @bindukumari90 

By Enabling click data collection in web SDK extension will trigger a separate link click call every time you on any element on the page along with exit and download links.

There is no additional steps required for this process however make sure you are not changing "on before link click event send callback code" in the code editor which is available after checking the "enable data collection".

 

Although it depends on your case but I would not recommend tracking all the clicks on the page(some of it might be meaningless for your business) to prevent this use this code in the "on before link click event send callback" code editor

if (content.xdm.web.webInteraction.type === "other") { return false; }

you can refer to this blog to better optimize your click implementation and some more best practices by @andrew_wathen_