Hi, I received the following question of the Adobe support:Hi Robin, Thanks a lot for your patience. I was out-of-office yesterday, hence couldn't provide an update sooner. I reviewed multiple user journeys to identify the reason for Marketing Channel Instance not being set, even when the Query Stri...
The link tracking here is a prop (prop60 used in the datastream mapping), so there is no persistency on prop.So I would have expect that yellow and pink will be aligned.Does my assumption make sense ? Could it be that if the url contains specific character (like %20), the function used in the datas...
Hi Josh,You are right: I took the wrong period.I first forgot to add this mapping in my datastream:So the marketing processing rules was checking the hit attribute 'Query string parameter' that was empty and jump to the 2nd rule that doesn't check that field.But after fixing this by updating the map...
Hi,We are feeding Adobe Analytics from a datastream in AEP. This datastream is not fed by Adobe SDK but by a homemade API.I want to understand which destination field should be mapped in this datastream to populate the hit attribute 'Query string parameter'.This one is used in the marketing channel ...
Hi,I tried this but it still doesn't work.No idea of the reason but the function aa_get_product_names is causing side effect (call incomplete).To test this, I removed if from the mapping datastream and all was back to normal.So I tried also to manage the product mapping using context data, like this...
Thanks both for helping on this.The iif function is working as expected, I was wrong.The issue is coming from a different calculated field in the mapping of my datastream. This one: aa_get_product_names(data.products) data.products is not always present and/or populated in the input json file, and...
I did an extra test with the following condition:iif(${xdm.eventType}.equals("web.webPageDetails.pageViews"),"true","false")The target field is the prop5 of Adobe analytics.As result in Adobe Analytics I have this:So the condition is working when it's true but nothing about the false ....Is the IIF ...
Hi all, in this interface in AEPabout datastream mapping: I'm trying to have a IF THEN ELSE condition. My goal is to have the value of data.pageUrl mapped to prop5 only if xdm.eventType = web.webPageDetails.pageViewsSo I created a calculated field with the condition iif(${xdm.eventType}.equals("web....
Thanks a lot for your help. It works. Id did it this way using your logic: get_url_query_str(get_url_decoded("https://example.com?test=1&account=bitmap&step=abc"),"append")["account"]Thanks again Robin