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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Step require to reload the data on demand from the dashboard in QlikView Server

Hello Friend,

I had developed the one simple dashboard where source data is text file. In these dashboard I had given the one Button where I click on that button the latest data in text file should get reloaded which is working fine in Client Desktop.

Now same dashbord when I upload & open in server and on clicking that button the data does'nt get reload.

But get reload when we schedule it in server.

I want to reload the data on clicking that button which I had provided in Dashboard which is upload in server.

Can I know the step please for doing the above functionalty.

I hope I had explained the scenario.

Thanks in Advance

SD

3 Replies
Anonymous
Not applicable
Author

Hi SD,

I would suggest looking into the EDX (Event Drive eXecution) in QVS allowing you to trigger tasks via an API.

There are multiple posts around the topic on these forums.

tresesco
MVP
MVP

QV doesn't allow reloading from web directly. You can try with EXD : Trigger EDX Qlikview 10 or macro.

amit_saini
Master III
Master III

Hi Shan,

This can be done with the help of EXD . Please follow the step:

1. Go to the script and declare this :

SET vEDXApplicationPath='Your Server name\QMSEDX_CommandLine2\qmsedx.exe';

SET vEDXTaskname='Here you have to mentioned Task name of your qvw ';

SET vEDXServer='Server name:4799/QMS/Service';

SET vEDXVerbosity=5;

SET vEDXpi=2;

SET vEDXTimeout=60;

SET vEDXPassword = 'Qlikview';

SET vEDXParameters=' -task="$(vEDXTaskname)" -qms=$(vEDXServer) -verbosity=$(vEDXVerbosity) -pi=$(vEDXpi) -timeout=$(vEDXTimeout) -password="$(vEDXPassword)"';

2. After setting all these values create a load button and write =vEDXApplicationPath (Under Application) and =vEDXParameters(Under parameters)

Thanks,

AS