Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!

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