DTM Ignoring report suites set in code. | Community
Skip to main content
daavq
Level 2
October 16, 2015
Solved

DTM Ignoring report suites set in code.

  • October 16, 2015
  • 7 replies
  • 3265 views

I have noticed a large number of calls reporting in our development report suite. Upon investigation it seems sometimes DTM is ignoring the report suites set in the code and instead leveraging the ones set in DTM itself. So in DTM I have default report suites set like this:

[img]https://omniture-help.custhelp.com/ci/fattach/get/877657/1433173821/filename/DTMissue.png[/img]

However in the code itself I am setting the s.account variable.  The ones set in the picture were required for DTM to allow me to save the changes.  Anyone have a similar issue?

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 ParitMittal

Hi Laura,

The problem is with the s.sa() function you are using.  It is not recommended to initialize a report suite using s.sa() function.The s.sa() function only lets you dynamically change a report suite at any time on the page, before or after an image request fires.

Hence please use the following code to in "customize page code" to properly initialize  the report suite id to be used for Page Load Rules and Event Based rules.

var r_suite = _satellite.getDataElement('reportingSuite') ; s_account=r_suite; s.account=s_account;

Thanks & Regards

Parit Mittal

7 replies

Rahsing
Level 9
October 16, 2015

Hi,

Could you please upload the picture again? I'm unable to view it.

Rahul

daavq
daavqAuthor
Level 2
October 16, 2015

Trying again....

As you can see the report suites are set, but I have the "Set report suites using the custom code below" because I have code in there that changes the report suites based on domain.

[img]DTMissue.png[/img]

Rahsing
Level 9
October 16, 2015

Hi there,

Could you please share the code where you're setting the s.account variable please?

Rahul

Rahsing
Level 9
October 16, 2015

Ah! it's usually suggested to let Adobe manage the library but I can understand why you'd need to use it.

Okay! could you share the code where you're setting the s.account variable please? (a snapshot like this would be good)

Rahsing
Level 9
October 16, 2015

Hi,

Have you bee able to resolve this problem?

If yes, could you please post the solution for the benefit of other users.

Regards

Rahul

laura_vl
Level 2
July 20, 2016

Hello, I am running into this same problem, was there any resolution? I am manually loading the AppMeasurement library but within "custom page code" I am dynamically setting the reporting suite. When I try to fire any event-based rule with Adobe Analytics variables defined, the reporting suite does not get set. 

ParitMittal
ParitMittalAccepted solution
Level 10
July 21, 2016

Hi Laura,

The problem is with the s.sa() function you are using.  It is not recommended to initialize a report suite using s.sa() function.The s.sa() function only lets you dynamically change a report suite at any time on the page, before or after an image request fires.

Hence please use the following code to in "customize page code" to properly initialize  the report suite id to be used for Page Load Rules and Event Based rules.

var r_suite = _satellite.getDataElement('reportingSuite') ; s_account=r_suite; s.account=s_account;

Thanks & Regards

Parit Mittal