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

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

Where have I to set the QvWorkPath or the QvPath

When i debug my Script I see each time a other QvWorkPath or the QvPath as I need.

Where have I to set the QvWorkPath or the QvPath?

"

WinRoot    "C:"

vLastExecTime    10.11.2011 11:01:25

QvWorkRoot    "C:"

1    1

vFilterDate    "to_date(substr('20090101', 1, 8),'yyyymmdd')"

OpenUrlTimeout    86400

WinPath    "C:\Windows"

0    0

QvWorkPath    "C:\D\QVSHARE\SOURCEDOCS\STSBI_ABAS"

QvRoot    "C:"

QvPath    "C:\D\qvserver\Distribution Service"

CD    "E:"

FLOPPY    "A:"

"

11 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

You mean to say that in special cases, some path variables should be overruled? Then add the following.

To your script, add this line after the last path SET/LET statement:

$(Include=$(QvWorkPath)\LastMinuteChanges.qvs)

To the new local script file called LastMinuteChanges.qvs (only in your debug folder), add whatever LET/SET statements you need to modify the setup. For example and if I'm not mistaken, set the vDir_scripts variable to your local debug scripts folder.

And so on.

Because your orginal document path does not contain a LastMinteChanges.qvs file, no harm will be done overthere and the script engine won't complain about the missing include file at all.

Best,

Peter

Not applicable
Author

It's a good tip, thanks for it. I test it on my script an d it also fine.