Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If I Write in the Script
Set Errormode = 0
what would be the result ?
Thanks
Madhu
" By setting ErrorMode =0 QlikView will simply ignore the failure and continue script execution at the next script statement"....
This variable determines what action is to be taken by QlikView when an error is encountered during script execution. By default (ErrorMode=1) the script execution will halt and the user will be prompted for action (non-batch mode). By setting ErrorMode =0 QlikView will simply ignore the failure and continue script execution at the next script statement. By setting ErrorMode =2 QlikView will trigger an "Execution of script failed..." error message immediately on failure, without prompting the user for action beforehand.
Example:
set ErrorMode=0;
No result by itself. It supresses error messages(if any) during load and fail silently. See Error Handling in Qlikview for more in details.