We are trying to ingest Adobe Analytics report suite data into AEP via the Adobe Analytics source connector.
Using the custom mapping interface, it is for most cases fairly straight forward to map the "_experience" fields to the corresponding fields in our own "_tenant" custom fields collection.
Even for listprops it is fairly easy to create a calculated field, that creates a string of values to be used in CJA - for example this listprop:
join("|",_experience.analytics.customDimensions.listProps.prop34.values)
However for listvars this is not possible. First off, because there is no "values", there is only only the following available, which not permitted in the calculated field interface:
_experience.analytics.customDimensions.lists.list1.list[*].value
I have tried to just include the list:
join(",",_experience.analytics.customDimensions.lists.list1.list)
But that returns the full object in CJA, which is not ideal for reporting purposes - example:
{value=listvar-item1}
I even tried to use the "get" function not documented anywhere, but used in an example on the "Data Prep Mapping Functions" documentation page:
join("|",(_experience.analytics.customDimensions.lists.list1.list).get("value"))
But that does not work - it does not return any values.
If I had more array/object/string functions at my disposal I could work something out, but I rather stuck at the moment.
The standard mapping for the listvars (_experience.analytics.customDimensions.lists.list1.list => _experience.analytics.customDimensions.lists.list1.list), works just fine out of the box, and will return the individual elements as expected and shown in Adobe Analytics:
listvar-item1
Has anyone else successfully mapped the "_experience" listvars to custom fields only including the values, or perhaps someone from Adobe can assist? Or perhaps someone can share how the standard mapping works, and we can re-use that for the custom mapping?
Thank you in advance