Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Binary $(vRAWPath)"000_qvd_v11.qvw"; get error msg

Hi All

My org script is below is working fine :-

Binary "c:\users\paul yeo\dropbox\5 qv_final\0 qv production\000_qvd_v11.qvw";

I like to change to below script , to make the directory dynamic :-

Binary $(vRAWPath)"000_qvd_v11.qvw";

SET vDevelopment = 1; //16 sec (2 min 17 s with supplier = source) local        QVD_PY      10% of Sample data.

elseif $(vDevelopment) = 1 then   

  SET vRAWPath = 'c:\users\paul yeo\dropbox\5 qv_final\0 qv production\'; //local folder

else

  SET vRAWPath = 'C:\0QlikView\0 QV\DataSource\RAW\'; //local folder

END IF

I get error msg. where i go wrong ?

Paul

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     Try this.

     Binary $(vRAWPath)&'000_qvd_v11.qvw';

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     Try this.

     Binary $(vRAWPath)&'000_qvd_v11.qvw';

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi Sir

I base on your script I still get error  :-

Cannot open file 'D:\TEST\&'000_qvd_v11.qvw'

Binary D:\TEST\&'000_qvd_v11.qvw'

I modify your script a bit :-

Binary $(vRAWPath)000_qvd_v11.qvw;

and it work fine.

Thank you very much.

Paul