I asked this related question and could solve it already:
https://community.tealiumiq.com/questions/141703
But now I am facing the opposite challenge:
I have a page where user click on filter causes an event where Webtrends parameter "eventPar1" gets set to value "clicked" (set via utag.link UDO variable) .
Now on the same page, another event is triggered; also via utag.link, but with a different parameter (eventPar1 is not used, instead it is eventPar2).
However, Webtrends now always sets eventPar1 = "clicked" with this second event as well.
In a traditional WT implementation, I would do something like this:
Webtrends.multiTrack({
argsa: ["DCS.dcsuri", "/home/help", "WT.i_custom", "12345"],
finish: function (dcsObject, mtrackObject) {
dcsObject.WT.i_custom = "";
}
});
The part after "finish" resets the Variables used for Event Tracking. But setting the eventPar1 UDO variable to "" on the second Event Call does not help unfortunately.
Can someone help here?