Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
QV doesn't allow reloading from web directly. You can try with EXD : Trigger EDX Qlikview 10 or macro.
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