Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QV Deployment Framework

Hi!

Implementing QV Deployment Framework.

Created a container for QVD repository so only using 2.QVD in that container.

Structured the 2.QVD with some subfolders and now I need to know how to create a variable path to each subfolder.

call LoadContainerGlobalVariables('Qvd_Storage','QVD'); creates $(vG.Qvd_StorageQVDPath) and points to 1.QVD_Storage\2.QVD

In this case I have a subfolder 1.Mappings

Now I do this Store table into $(vG.Qvd_StorageQVDPath)\1.Mappings\SomeQvd.qvd (qvd);

Now I would like to have variables for each subfolder in 1.QVD_Storage\2.QVD

$(vG.Qvd_StorageMappingPath) sort of...

Kind regards

1 Reply
Magnus_Berg
Employee
Employee

Hi Thomas, the idea is to use the $(vG.Qvd_StorageQVDPath)\1.Mappings\ as you do today.
The reason being to keep amount of variables down.
There is a function called CreateFolder that can be used in the application to recreate sub folders when moving application between containers/environments so that the application wont fail:
Call CreateFolder('$(vG.Qvd_StorageQVDPath)\1.Mappings\')

Hope that this will help you.

Cheers