Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
i am getting error while creating QVD file using with variable.
Script line error:
set 'vQvdpath= 'E:\QlickView\QVD's\'
store Customer into $(vQvdpath)\hydcustomer.qvd (qvd);
can you pl. help me out.
thanks.
sunil
Hi,
Please check the colon '
set 'vQvdpath= 'E:\QlickView\QVDs\'
Now it will works
Can you please share the error what you are getting?
May be try this
SET vQvdpath = 'E:\QlickView\QVD''s\'
Note that I have used 2 single quotes in red (Escape sequences)
Try this:
LET vQvdpath= 'E:\QlickView\QVD'&Chr(39)&'s\'; 'E:\QlickView\QVD's\'
store Customer into $(vQvdpath)hydcustomer.qvd (qvd);
Further to this it also looks like you're missing a semicolon after this instruction
SET vQvdpath = 'E:\QlickView\QVD''s\';
store Customer into $(vQvdpath)\hydcustomer.qvd (qvd);
Hello Sunil,
Try this ,
set vQvdPath= E:\QlickView\QVD's\;
store Customer into $(vQvdPath)hydcustomer.qvd (qvd);
Or
set vQvdpath= ..\QVD's\ ;
store Customer into $(vQvdpath)hydcustomer.qvd (qvd);
Hi All ,
Thanks for your quick response ,
Now its Working .Thanks a Lot
Regards
-S
Great, please close the thread by marking the correct response and any helpful responses...
Best,
Sunny