Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I am currently using the ErrorCode to handle any reload errors in my document. I use:
set ErrorMode=0
IF ErrorMode>0 THEN
Exit Script;
END IF
If an error is found how do you rollback the document before the script was executed?
Or how do you exit without saving?
Man thanks
Hi,
If you use ErrorMode =1 instead of =0, QlikView will have its default behavior and when the error is found, the execution is stopped and any changes ( except store statements) will rollback to previous state
Exit script will just finish script and changes will be saved
Hope it helps,
Erich
Hi,
If you use ErrorMode =1 instead of =0, QlikView will have its default behavior and when the error is found, the execution is stopped and any changes ( except store statements) will rollback to previous state
Exit script will just finish script and changes will be saved
Hope it helps,
Erich
Many thanks Erich.
I used ErrorMode=2 instead, but you certainly pointed me in the right direction.
![]()
Robbie