Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I am using the batch file for reloading the application.
Now I want to execute the batch file based on condition. When My Date not equal to System date batch file should not fire.
and email should go to respective managers saying that Date is not updated in the system due to application not refreshed.
else reload should go smoothly
If I'm being honest, DTS/SSIS is the easiest way of doing this.
Whilst it may be possible in QV, I'm pretty sure it's not straight forward..
Hii,
"C:\Program Files\QlikView\QV.exe" /VvTriggerMacro=0 "C:\Export-Email-Automation\Dashboard.qvw"
vTriggerMacro is variable can be pass thorugh batch file
SET v = ActiveDocument.Variables("vTriggerMacro")
varTrigger = v.GetContent.STRING
IF varTrigger = 1 THEN
Reload your application.
hope this helps you.
Vikas