Focal Point
Parameter How to check when not passed

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3031068331

May 26, 2005, 02:26 PM
<Nathan>
Parameter How to check when not passed
Is there a way I can check in dialogue manager
that if a parameter '&PARAM01' is passed
from URL then assign the relevant value.
But when it is absent then set the value to something else.

Since this is passed from URL I do not want it
to set using
-DEFUALT &PARAM01 = 0;
( Otherwise it will popup in front end screen )

Thanks
May 26, 2005, 02:46 PM
<JG>
Try something like

-IF (&VAR.EXISTS) GOTO SKIP;
-SET &VAR='VALUE';
-SKIP
May 26, 2005, 11:16 PM
<Nathan>
Thanks JG