Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
What is the Exit syntax for Trigger?
REquirement is:
If(a==True)
Exit(); --> it should exit the trigger without executing next block of code.
else
{
code_block
}
Are you talking about "break;" or anything more than that?
Any syntax which would say: exit the trigger if condition is true. else continue
Then this should work,
if(i == 400) break;
else ......
Are you talking about "break;" or anything more than that?
Any syntax which would say: exit the trigger if condition is true. else continue
Then this should work,
if(i == 400)
break;
else ......