Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
@Dear All,
i m facing this issue wherein i m unable to call the 2nd Qlikview Application
Please find the below code which i used to call the 2nd Qlikview Application
Code Script:-
Let vNextBatchFile = 'D:\Application\test_appln_2.bat';
execute cmd /c $(vNextBatchFile);
Above statement executes successfully but the Application doesn't reload.
Script under "test_appln_2" batch file
"C:\Program Files\QlikView\Qv.exe" /r "D:\Application\test_appln_2.qvw"
Could anyone please assist me.
Thank you,
Girish Chhatani
I had a similar issue and the " solved it
EXECUTE cmd.exe /c "$(vNextBatchFile)";
Try this one.
Hi,
Try this.
execute cmd.exe /c $(vNextBatchFile);
Regards,
Kaushik Solanki
Please check the below option checked or not in the Settings tab in the script.

and Try: EXECUTE cmd.exe /c $(vNextBatchFile);
Hi Kaushik,
Thnks a lot for ur prompt reply.
I added cmd.exe in the code script.
execute cmd.exe /c $(vNextBatchFile);
But still it didn't worked...
And also i have marked Can Execute External Program in the script settings window.
Thank You,
Girish Chhatani
I had a similar issue and the " solved it
EXECUTE cmd.exe /c "$(vNextBatchFile)";
Try this one.
Thnks Juan Pedro,
It worked!
Cheers!
Thanks & Regards,
Girish Chhatani