Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need to reload the QlikView Document through access point

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

2 Replies
martinpohl
Partner - Master
Partner - Master

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

Miguel_Angel_Baeyens

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.