Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nancy_sbeity
Partner - Contributor III
Partner - Contributor III

On Open Reload in QlikView

Hello,

My Target is to reload my qlikview application On open.

I am using QlikView server. I have created a run macro script on open from the document settings. My code:

Sub ReloadOnOpen

     ActiveDocument.Reload

End Sub

Then I have added this document to my source documents on the server, so each user will be able to access it from its own QlikView desktop. But the problem is that the reload code didnt work at the level of the user and even at the level of the server.

I tried all the suggestions on Community.  Can anyone provide me with the right answer?

Thank you in advance

Best Regards,

Nancy Sbeity

 

 

Labels (3)
25 Replies
marcus_sommer

I'm not sure if I could give useful suggestions because we don't use open on server with the desktop client and therefore I have no real experience with it. Further I don't see much benefit in using it as a regular client for the users else we only allow the access over the access point (mainly per AJAX client and in a few exceptions also with the IE plugin) for the normal users. Our (just a few) power users use the desktop client with a leased licence.

Beside this I'm not sure if macro-reloads are in generally possible for the open on server approach or if it needs an EDX approach. This means also that the reload always happens within a server-context and not within a user-context which might be critically in regard to performance, stability and security because there might be multiple reloads executed at the same time (which might compete for resources, block files, conflicting with server settings like allow only one copy on the server and probably some more potential issues), the users might not have appropriate access rights to the storages and databases and reloads would also disable section access (is only executed by opening an application and a reload will load all data).

I assume that there are further things which needs to be considered and I suggest to rethink your whole concept of accessing data through the users.

- Marcus

nancy_sbeity
Partner - Contributor III
Partner - Contributor III
Author

Thank you for your reply.

Actually, what I am thinking of is that users might have new data in the database and need to access them directly using QlikView (near to live data). In this case, they are always contacting the admin in order to reload the application.

Accordingly, I have suggested to run macros on open, so when the user opens the application, it will be up to date and no need for Admin intervention. So once new records were added to the db, they have the possibility to close and reopen the document in order to refresh their app.

Any solution that might help me in this?

Thank you in advance and best regards,

Nancy

pradosh_thakur
Master II
Master II

Hi Nancy,

I was in the impression that you re opening it with Qlik desktop. For reloading you might cretae a reload button on the app itself and use EDX to trigger it as Marcus has told. I have mentioned previously as well that macros may not work on access point. You can definitely reload it using QV desktop as you have already done. For server and accesspoint purposes i would suggest you use edx to trigger it.
Learning never stops.
nancy_sbeity
Partner - Contributor III
Partner - Contributor III
Author

Ok so in brief, no way to create reload on open using Macros when opening a qvw from server. Do you agree?

pradosh_thakur
Master II
Master II

On Acess point in ajax in Qlikview , NO. I guess only EDX can do it. May be some extension will be able to but i don't know any.

Learning never stops.
marcus_sommer

IMO your described scenario could be (better) covered with a server-task which refreshed the application. This task might run every n minutes - maybe by checking if new data exists - or maybe triggered directly from the db.

Another alternatively could be to use direct queries: direct-query.

- Marcus