Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
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.
Os tópicos ajudam a categorizar o conteúdo da comunidade e aumentam sua capacidade de descobrir conteúdo relevante.
Visualizações
respostas
Total de curtidas
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.
Visualizações
respostas
Total de curtidas
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 ...
Visualizações
respostas
Total de curtidas
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.
Visualizações
respostas
Total de curtidas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas