Discussion Board for collaboration related to QlikView App Development.
any ideas please how to set a Qlikview document to reload its data at a set time each day without manually opening the document and clicking on Reload?
Using windows scheduler you just need to create a .bat file containing:
CALL "C:\PROGRAM FILES\QLIKVIEW\QV.EXE" /R "C:\document path\document.QVW"
Regards,
Gordon
Hi ,
You can schedule it through the publisher or using macros and windows task scheduler
Using windows scheduler you just need to create a .bat file containing:
CALL "C:\PROGRAM FILES\QLIKVIEW\QV.EXE" /R "C:\document path\document.QVW"
Regards,
Gordon
Hi,
You can do this using windows scheduler also
1) just create a batch file having following command
"C:\Program Files\Qlikview\QV.exe" /r "D:\Upendra\test Data 5Apr.qvw"
This command will open the QV file, reload it, save it and close it automatically
Thank you for your reply...I looked through the Automation Interface Reference guide but couldn't find a straight forward solution using macros.
Thank you - just precisely what I was looking for!
Thank you - just what I needed.
If you have QlikView Server 9 or later then open the Management Console, select User Documents, choose your document and select the Reload option on the right. This will allow you to set reload options for the document.
If you don't have Server then use the batch file methods above.
One additional question on the subject... We have scheduled a reload of a document to occur every five minutes, but we only want this to occur within a 12 hour window during the day. Does anyone know how we would go about doing this?