내 커뮤니티 업적 표시줄을 확대합니다.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.
해결됨

Adobe Analytics Plugin Config - Web SDK Analytics

Avatar

Level 2

How do we handle the below config in Web SDK AA? Do we need to add our own custom logic to achieve the below part?
/* Search Term De-Duplication Config */
            s.successfulSearchEvent = 'eventX';
            s.nullSearchEvent = 'eventY';
            s.blockedSearchEvent = 'eventZ';
            s.intraResultsSearchEvent = 'eventA';
            s.searchTermVariable = 'eVarA';
            s._channelDomain = "Social Media Organic";
            s._channelPattern = ''Email|EM>Affiliates"

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

Hi @ajaxdinesh 

I assume you have set up dedicated events and custom Dimensions (prop/eVar) in Adobe Analytics for the above mentioned?

This would already not work on the classic AppMeasurement library without assigning the correct buckets to them e.g.

 

s.prop99 = "Social Media Organic";
s.events = "event11"; // assuming that e.g., the successfulSeachEvent is set up to be event11

// etc.

 

 

There are a couple of different approaches to handle this as explained here

  1. as part of the XDM schema, using the dedicated field group for adobe analytics
  2. using the data object (which will be the closest to what you see in above code snippet) e.g. data.__adobe.analytics.prop99 = "Social Media Organic".
    You may want to look at this video for a good step by step explanation
  3. as context data which will require manual mapping of data in Adobe Analytics processing rules (just don't do this!)

 

Given the way you phrase your question, I presume you are still quite new to Analytics, correct?

In that case, 1. and 2. are the recommended approaches, 3. is out of question the most cumbersome, error prone and 0-debuggable approach.

 

If you ask me, 2. is the most intuitive way (see video linked above) and creates less overhead through a crazy bloated XDM schema.

 

Hope that helps

Cheers from Switzerland!


원본 게시물의 솔루션 보기

1 답변 개

Avatar

정확한 답변 작성자:
Community Advisor

Hi @ajaxdinesh 

I assume you have set up dedicated events and custom Dimensions (prop/eVar) in Adobe Analytics for the above mentioned?

This would already not work on the classic AppMeasurement library without assigning the correct buckets to them e.g.

 

s.prop99 = "Social Media Organic";
s.events = "event11"; // assuming that e.g., the successfulSeachEvent is set up to be event11

// etc.

 

 

There are a couple of different approaches to handle this as explained here

  1. as part of the XDM schema, using the dedicated field group for adobe analytics
  2. using the data object (which will be the closest to what you see in above code snippet) e.g. data.__adobe.analytics.prop99 = "Social Media Organic".
    You may want to look at this video for a good step by step explanation
  3. as context data which will require manual mapping of data in Adobe Analytics processing rules (just don't do this!)

 

Given the way you phrase your question, I presume you are still quite new to Analytics, correct?

In that case, 1. and 2. are the recommended approaches, 3. is out of question the most cumbersome, error prone and 0-debuggable approach.

 

If you ask me, 2. is the most intuitive way (see video linked above) and creates less overhead through a crazy bloated XDM schema.

 

Hope that helps

Cheers from Switzerland!