How to set s.events of Adobe Analytics

Silver Contributor
Silver Contributor

Hi,

I read this article but I am not sure exactly how to set s.events of Adobe Analytics.

Adobe Analytics (SiteCatalyst) Tag

Could anyone tell me the step ?

What I am thinking is the following simple case,

when a page of its location.pathname is /products/detail/
then set s.events = "prodView";

Thanks,

4 REPLIES 4

How to set s.events of Adobe Analytics

Employee Emeritus
Naoki
Yes this is possible and is very easy to do. In the mappings toolbox for SiteCatalyst, select pathname as the Data Source. Then after you click Select Destination, you will want to click on the Events Tab. Finally the value will be /products/detail/ and the Trigger will be prodView.

This translates to the following:
if pathname = '/products/detail/' then add prodView to events

You could also accomplish the same task using an extension. For this example you could use a Set Data Value extension with JS Code to u.addEvent('prodView')

I can follow this up with a screenshot of both as well.

Let us know if this helps.
Thanks
Brian

How to set s.events of Adobe Analytics

Employee Emeritus

tmp-sitecat-20151005T102225.png

How to set s.events of Adobe Analytics

Silver Contributor
Silver Contributor

Hi Brain

It really is helpful!
I tried both way and they work perfectly.
Seems like extension is much flexible.

Thanks,

How to set s.events of Adobe Analytics

Employee Emeritus

Great, glad you got it working.

Brian

Public