Expand my Community achievements bar.

SOLVED

Specify report suite with a data element

Avatar

Level 5

Hi everyone!

 

We have two websites that are nearly identical. One is an internal facing version and the other is the public version.

 

We would like to deploy the same Launch code but have the reporting to go into separate report suites. Is it as simple as creating a data element defining the report suite name and then adding it into the Adobe Analytics tool configuration?

 

Also, is there any secret Adobe syntax I need to be aware of when setting up my data element or can I do something like the below:

 

var reportSuite = (window.location.hostname == "www.hostnameInternal.com") ? hostnameInternalProduction : hostnameExternalProduction;

return reportSuite;

 

Many thanks!

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 2

Yes, it is that simple! Instead of writing a lot of custom code, you can leverage the Adobe Analytics extension by setting the report suites for each environment using data elements. You reference the value (which should be a string) from the data element by wrapping the data element name in %'s. See below:

View solution in original post

4 Replies

Avatar

Correct answer by
Level 2

Yes, it is that simple! Instead of writing a lot of custom code, you can leverage the Adobe Analytics extension by setting the report suites for each environment using data elements. You reference the value (which should be a string) from the data element by wrapping the data element name in %'s. See below:

Avatar

Level 5
Excellent! Many thanks for the reply. That's nice and easy.

Avatar

Level 4

This is exactly what I do for my implementations. Using a data element is also nice so you only have one place to change everything.

 

How you have your data element is good. 

 

You can even shorten in by:

return window.location.hostname == "www.hostnameInternal.com" ? hostnameInternalProduction : hostnameExternalProduction;

Avatar

Level 5
Thanks for the tip. I can confirm that this is working nicely.