Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Save QVD with relative path

Hi,

Could you please help me in saving the QVD with the relative path.

My path to store the QVD is: \\wwhsbin\QlikView_Data\SalesQVDFiles

with in this in need to store SalesQVD


i am trying like ..\..\QlikViewDataFiles\QVDFiles\SalesQVD.qvd(qvd); 

but it is throwing error.


Dashboard file is: \\wwhsbin\QlikView_WorkBooks\Sales\Salesworkbook.qvw


Note: i dont need any variable to hold the path i just need the relatvie path to create QVD.


Please help me

18 Replies
tamilarasu
Champion
Champion

Try this,

STORE TableName Into ..\..\QlikView_Data\SalesQVDFiles\SalesQVD.qvd(qvd);

Anonymous
Not applicable
Author

thnaks for the reply

the reloading is getting falied

tamilarasu
Champion
Champion

John,

Make sure the relative path option box is enabled in edit script window.

Anonymous
Not applicable
Author

Yes, but still the same error, dashboard failed to relaod

tamilarasu
Champion
Champion

You can check the log file to find where it goes wrong. The above syntax goes two folders back and store the table inn the folders path QlikView_Data\SalesQvdFiles.. If you still get the error, try this,

Store TableName into Test.qvd (qvd);

This will store the qvd where the dashboard is placed.

ajsjoshua
Specialist
Specialist

Hi,

Try like this

SET vPath = D:\Qlikview_project\Live Project\Qlikview Report\2.QVD\;

and load the tables using

From

[$(vPath)Product.qvd]

Anonymous
Not applicable
Author

Hi , thanks for the reply but i dont want these path to be set using variable

Kushal_Chawda

try this

\\..\QlikView_Data\SalesQVDFiles


or


\\..\..\QlikView_Data\SalesQVDFiles


Anonymous
Not applicable
Author

thanks for the reply

but the same issue dashboard failing to reload