Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!

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