Hi All,
I have one situation where I have one condition if that will be true then I want to terminate the execution.
exactly same as we can do in java using "System.exit(0);"
Thanks in advance for any help.
Regards,
Ankit
Hi All,
I have one situation where I have one condition if that will be true then I want to terminate the execution.
exactly same as we can do in java using "System.exit(0);"
Thanks in advance for any help.
Regards,
Ankit
Dear Ankit,
Please try below code.
if( check the condition){
var scripterror = Constants.ERR_CANCEL;
return;
}
Thanks
Shashi
Shashi Pal on
Dear Ankit,
Please try below code.
if( check the condition){
var scripterror = Constants.ERR_CANCEL;
return;
}
Thanks
Shashi