Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Could anyone let me know if its possible to make a Qlikview Reload fail by using the error modes , i tried setting it to 2 .
But i still find the reload successful
Why don't you just add EXIT SCRIPT at the very start of your unwanted qvws?
Something like this is a little cleaner, allows you to set/unset the variable to trigger the failure and allows a custom message which will be visible in the Log file.
Let vFailScript = 1;
IF $(vFailScript) = 1 THEN
Trace Custom Error Triggered;
SET [Error 1001 - My Custom Error is now Triggered];
END IF;