Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am curious to know that, is it possible to enable reload button from access point(browser), so that users can reload the latest data anytime they want.
Also is it possible to enable some design options so that users can create Ad-hoc report from access point.
Regards,
Suraj
Hi Suraj,
This can be possible 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
thanks for your answer. It seems like a relatively easy solution compared to other solutions I've found. However I get the following error: I get an error Failed to Launch our servername\QMSEDX_CommandLine2\qmdsedx.exe
I am only working with QV server and not with the publisher.
My goal is to let end-users manually reload the data via a button in through the browser (access point)
Hello Suraj,
It is possible by button click you able to relaod a Qvw application from Access Point.
By the help of Macro you able to reload a application by putting this code in moacro window
sub reload
activeDocument.reload
end sub
And give this finction to button which calls this macro.
See the sample file, Hope this helps you.
Hi Vishal,
Thanks for the information.
The app which you have given is reloading from qlikview, but when I place the same app in qlikview server and from access point(IE Browser) when I click on the reload button, there is no action.
had u got any solution for this..?
Hello,
Which user should I use to run the EDX triggered task?
I added my user to Qlikview admin group and QlikviewEDX but its stils complaining:
Which user should I use?
Would it be latter possible to reload it from access point?
Thanks.