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: 
ali_hijazi
Partner - Master II
Partner - Master II

connect to other container

hello I got the below code:

// InitLink.qvs Initiating Qlik Deployment Framework
SET vG.BasePath=; //Clear cache
SET vG.SharedBasePath=; //Clear cache
SET vG.RootContainer='TECHNICAL STORE QVDS\QDF';
SET vG.HomeContainer='10.Finance_Rebuild';
$(Must_Include=lib://$(vG.RootContainer)/$(vG.HomeContainer)/InitLink.qvs);


/*
IN THIS APP WE'LL BE READING FROM THE TRANSFROM FOLDER OF THE QVDGEN APP
AND SAVE RESULTS IN THE LOAD FOLDER OF THIS APP
*/
let vL.SourceQvdPath = '$(vG.TransformPath)';
let vL.QVDPath= '$(vG.LoadPath)';
let vL.ImportPath = '$(vG.ImportPath)';
/*****************************************************************/

/*
IN THE SCRIPT WE'LL BE USING MUREX CUSTOM FUNCTIONS
THESE ARE STORED IN THE CUSTOM PATH IN SHARED CONTAINER
*/
call LCGV('Shared','Custom')
$(Include=$(vG.SharedCustomPath)/1.MUREX_LIB.qvs);
/*****************************************************************/

 

/*
COMMON CONDITION USED IN ALMOST ALL TABLES
*/
SET vL.Condition = MONTH_NUM >= 201410;
/*****************************************************************/

/*
we need to connect to the application that generates QVDs for
the business units of the projects
*/
call LCGV('QVDGEN','Transform')

 

I want to connect to a container called QVDGEN -> transform folder of QVDs
the script runs successfully but the the resulting variable points to the transform folder of the Shared container not the QVDGEN

kindly advise

I can walk on water when it freezes
1 Solution

Accepted Solutions
ali_hijazi
Partner - Master II
Partner - Master II
Author

Issue resolved
I only had to run the deployment tool and update containers

 

I can walk on water when it freezes

View solution in original post

1 Reply
ali_hijazi
Partner - Master II
Partner - Master II
Author

Issue resolved
I only had to run the deployment tool and update containers

 

I can walk on water when it freezes