Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I Would like to reload the qvw with any command line argument in my windows machine instead of going into Qlikview app and doing reload(ctrl+R) or clicking reload button on QMC.
Appreciate the quick and effective responce.Thanks!.
Regards,
Mahi..
Finally I found solution for my query, we can reload and save Qlikview (qvw) file with in command line prompt as below,
1) Create one batch file with below information and save the file with .bat extension
Ex1: for reload and save the Qvw
"C:\Program Files\QlikView\qv.exe" /r D:\QlikDocs\QlikAccessPoint\Sentry 5.0 reports.qvw
Ex2: for reload and save the Qvw along with running the Nprinting(.NQS) report/Job in a single batch file
"C:\Program Files\QlikView\qv.exe" /r D:\QlikDocs\QlikAccessPoint\Sentry 5.0 reports.qvw
"C:\Program Files (x86)\NPrinting\Client\NPrinting.exe" /NprintingFile "D:\Nprinting\Nprinting Files\Sentry_Report.nsq" /Job "Cash And Accrual job"
"C:\Program Files (x86)\NPrinting\Client\NPrinting.exe" /NprintingFile "D:\Nprinting\Nprinting Files\Sentry_Report.nsq" /Job "EOD Collateral Summary Job"
2) double click on the batch file to execute.
Thanks,
Mahesh
First make sure command line reloading is enabled.
To do so, edit your "QlikViewDestributionService.exe.config" and make sure this statement is set to true:
<add key="EnableBatchMode" value="true"/>
By default that thing is set to "false".
Now go find the command line program used for reloading and check out its options:
QVDestributionService.exe
You will this in the Destribution Service folder.
Finally I found solution for my query, we can reload and save Qlikview (qvw) file with in command line prompt as below,
1) Create one batch file with below information and save the file with .bat extension
Ex1: for reload and save the Qvw
"C:\Program Files\QlikView\qv.exe" /r D:\QlikDocs\QlikAccessPoint\Sentry 5.0 reports.qvw
Ex2: for reload and save the Qvw along with running the Nprinting(.NQS) report/Job in a single batch file
"C:\Program Files\QlikView\qv.exe" /r D:\QlikDocs\QlikAccessPoint\Sentry 5.0 reports.qvw
"C:\Program Files (x86)\NPrinting\Client\NPrinting.exe" /NprintingFile "D:\Nprinting\Nprinting Files\Sentry_Report.nsq" /Job "Cash And Accrual job"
"C:\Program Files (x86)\NPrinting\Client\NPrinting.exe" /NprintingFile "D:\Nprinting\Nprinting Files\Sentry_Report.nsq" /Job "EOD Collateral Summary Job"
2) double click on the batch file to execute.
Thanks,
Mahesh