Expand my Community achievements bar.

Adobe Summit 2025: AEP & RTCDP Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

AEM ContextHub and dynamic dataLayer

Avatar

Level 2

Hello,

I'm using AEM ContextHub within DTM for the first time, and facing the following issue:

  • AEM ContextHub tool contains a full dataLayer schema
  • However, the dataLayer itself is dynamic, and certain objects do not populate right away
  • This causes multiple "SATELLITE: TypeError - Cannot read property 'xxx' of undefined" errors in the console.

Is there a way to prevent these errors and to, somehow, indicate in the AEM ContextHub tool that dataLayer loads dynamically?

Thank you!  

1 Accepted Solution

Avatar

Correct answer by
Level 3

use defensive coding in your data elements when referencing data layer object properties, to see if the data object properties exist before you try to reference them.

Also, dispatch a browser event when the object is added to the array and pass the data in an object with the event. Listen for this new event with DTM

View solution in original post

1 Reply

Avatar

Correct answer by
Level 3

use defensive coding in your data elements when referencing data layer object properties, to see if the data object properties exist before you try to reference them.

Also, dispatch a browser event when the object is added to the array and pass the data in an object with the event. Listen for this new event with DTM