Expand my Community achievements bar.

Adobe Campaign User Groups are live now. Join our Adobe Campaign User Groups and connect with your local leaders!

Check if delivery is in preview for typology control rule

Avatar

Level 2

Hi,

 

I have a typology rule to fail a delivery if a variable is not set. But for proof and preivew I don't want it to fail. I have fixed it for proof but haven't find any flag for preivew.

Do anyone know if there is a flag that I can check if it's in preview or if I can skip the typology rule.

The typology rule is a controll type and is executed at start of targeting.

 

current code:

if(delivery.FCP == 1) { //Skip proof
  return true;
}

if(variables.var1 == 1){
  return true;
}

return false;

 

 

0 Replies