Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have my MainApp, which contains full clean data made of dozens of tables. It is stores in QS Server.
I created a SecondApp for local purposes, where I want to load only certain tables and fields from the MainApp.
How do I do this, given I don't have physical qvd or qvf, which can be referenced in the script.
Thank you!
u can do binary load
after doing binary load delete unwanted tables in your local model
try
You cannot use binary to load data from an app on the same Qlik Sense Enterprise deployment by referring to the app ID. You can only load from a .qvf file
It seems not posible to me unfortunately..
i cant refer to an app
Here is a script loop you can add to the end of your master app to store all tables to QVD.
FOR i = NoOfTables()-1 to 0 step -1
LET vTableName = TableName($(i));
LET vOutfile = '$(vTableName).qvd';
STORE [$(vTableName)] INTO lib://qvd/[$(vOutfile)] (qvd);
NEXT i
-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com