Expand my Community achievements bar.

SOLVED

DTM passing Data Element names into reporting

Avatar

Level 3

Hello,

I have create numerous data elements based on JS objects on our pages.  When these objects are set with the value "null", DTM passed in the Data Element name into SiteCatalyst.  How do I stop this?  If the value is "null", I'd like DTM to not do anything with that object.  But there is no easy "condition" setup to use.  I am no developer so I can't create a custom script to do it.  That's what DTM is for. :)  Any help is appreciated.

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 4

You can use a custom script to get around this.

Replace obj.element with the value in the data element "path" input for the js object.

Replace %dataElement.name% with the actuall name of the data element.

return (obj.element && obj.element != "%dataElement.name%") ? obj.element : '';

I tested this on my server and seems to work as intended.

Brett

View solution in original post

2 Replies

Avatar

Level 3

Anyone with an idea on how to fix?

Avatar

Correct answer by
Level 4

You can use a custom script to get around this.

Replace obj.element with the value in the data element "path" input for the js object.

Replace %dataElement.name% with the actuall name of the data element.

return (obj.element && obj.element != "%dataElement.name%") ? obj.element : '';

I tested this on my server and seems to work as intended.

Brett