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 :
My assumption is it is happening bcs we have two interact calls, can someone please confirm my understanding?
Thank you.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
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 ...
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
Views
Like
Replies
Views
Likes
Replies
Views
Likes
Replies