Expand my Community achievements bar.

Get ready! An upgraded Experience League Community experience is coming in January.
Submissions are now open for the 2026 Adobe Experience Maker Awards

Adobe Target Implemented through AEP Websdk

Avatar

Community Advisor

Hi Everyone,

 

Adobe Target is implemented through AEP websdk so we have two interact calls on every page load. One is forweb.webpagedetails.pageViews and another is for decisioning.propositionDisplay

 

We have written below profile script to get the visitNumber : 

 

var count = parseInt(user.get("suppression_logic"), 10);

if (isNaN(count)) {
count = 0;
}

count = (count + 1) % 16;

return count;

 

I am printing the profile script value in console to see if this is working fine , however it seems it is not working fine : 

 

ambikaTewari_ATCI_0-1765268406690.png



My assumption is it is happening bcs we have two interact calls, can someone please confirm my understanding?

 

Thank you.

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

3 Replies

Avatar

Community Advisor and Adobe Champion

Hi @ambikaTewari_ATCI 

are you sending your "suppression_logic" field in both calls, page view and proposition display? 

You could try to activate guided events on your page view call to only send Analytics fields and hide Target fields.

 

Your code above does not seem to print out "Target" at any time. So no idea where this sould come from.

Cheers from Switzerland!


Avatar

Community Advisor

Hi @bjoern__koth I have written this profile script in the Adobe Target console so I'm expecting this script to be passed in decisioning.propositionDisplay only ...

Avatar

Community Advisor and Adobe Champion

Hi @ambikaTewari_ATCI 

 

Can you maybe paste the request payload of your page view event? Something in there seems to make the request end up on Target side.

 

Have you tried using guided events? They are meant to fix this type of issues.

Cheers from Switzerland!