Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Create a property and get the snippet to implement to GTM

Avatar

Level 1

Hello,

I'm a new in Adobe analytics (we are migrating our GA data collect to Adobe Analytics).

I would like to create a property to our website and set up the Adobe Tag with GTM.

 

Are there any documentation (or videos) where I can see step by step how can I do it (create the property and get the snippet to install in GTM) ?

 

Thanks

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Honestly, most people don't really add Adobe Analytics that way.... I can't think of any step by step guides for this... Adobe's tag manager (Adobe Launch, or Adobe Experience Platform Data Collection) is a more powerful tool than GTM, and lighter weight... plus it will manage the Adobe JS files for you, which GTM won't....

 

But, if you are really adamant about using GTM for this purpose, you will need to look at how Adobe is implemented "locally" as the same sort of code would need to be use.

 

https://experienceleague.adobe.com/docs/analytics/implementation/js/overview.html?lang=en 

 

 

You will need to download and make all the necessary changes to the AppMeasurement.js file and get that added to the site. Then you will need to review the code syntax of setting all your dimensions and metrics

 

Example:

s.pageName = "Example page";
s.eVar1 = "Example eVar";
s.events = "event1";

Then you will need to manually trigger the Page View tracking call

s.t();

Or the "Action" tracking call

s.tl();

However, most of this documentation is high level now, as using JS to implement your sites isn't really the preferred method... I don't see any documentation here outlining the differences required for setting up action tracking.... 

 

 

Honestly, I believe this direction for implementation, particularly since you are new to Adobe, is going to cause you a lot of grief.... There isn't a lot of documentation around for this type of implementation, and its a more complicated route....

 

I highly encourage you to re-consider the use of GTM, and implement Adobe Launch to save yourself a lot of effort and headaches.....

 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Honestly, most people don't really add Adobe Analytics that way.... I can't think of any step by step guides for this... Adobe's tag manager (Adobe Launch, or Adobe Experience Platform Data Collection) is a more powerful tool than GTM, and lighter weight... plus it will manage the Adobe JS files for you, which GTM won't....

 

But, if you are really adamant about using GTM for this purpose, you will need to look at how Adobe is implemented "locally" as the same sort of code would need to be use.

 

https://experienceleague.adobe.com/docs/analytics/implementation/js/overview.html?lang=en 

 

 

You will need to download and make all the necessary changes to the AppMeasurement.js file and get that added to the site. Then you will need to review the code syntax of setting all your dimensions and metrics

 

Example:

s.pageName = "Example page";
s.eVar1 = "Example eVar";
s.events = "event1";

Then you will need to manually trigger the Page View tracking call

s.t();

Or the "Action" tracking call

s.tl();

However, most of this documentation is high level now, as using JS to implement your sites isn't really the preferred method... I don't see any documentation here outlining the differences required for setting up action tracking.... 

 

 

Honestly, I believe this direction for implementation, particularly since you are new to Adobe, is going to cause you a lot of grief.... There isn't a lot of documentation around for this type of implementation, and its a more complicated route....

 

I highly encourage you to re-consider the use of GTM, and implement Adobe Launch to save yourself a lot of effort and headaches.....