Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
My end user wants reload the qlikview application through access point. I published the application and its scheduling through publisher every night but he want to do when ever he require.
So for that please provide me a macro so that he can able to reload the application.
Regards,
Veman Reddy
Never tested it on the server but try this:
Sub Reload
set App = ActiveDocument.GetApplication
set doc1 = App.OpenDoc ("YourApplikation.qvw","","")
doc1.reload
doc1.save
doc1.closedoc
End sub
For the applikation name you should use the complete file name (including server).
This macro should integrated in a seperate applikation wich only starts the reload.
Hope you can tell me if it works.
Regards
Hello Verman,
Reloading using a macro in your application will not work. Documents accessed via server (plugin, open in server, etc) have some macro limitation. You better create a task for reloading following Qvs Reference Manual pp.68 (several steps worth reading there).
Hope that helps.