Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can you please suggest how to pas QS app id into variable in binary load. I am moving the app from one environment to another.
Can you please suggest.
Thanks
Hi @deep2021
Im not sure if i got this right
You want to retrieve the ID of the application from which you are doing the binary load from, correct?
if this is so, the variables will not help you because in the binary load it seems to me that they are loaded, so you will have to retrieve the ID in the original app and put it into a table
TMP_TABLE:
load
DocumentName() as OriginAppID
autogenerate(1);
and in the application where you are doing the binary load you can retrieve it from the previous table
let vRecoverOriginAppID = peek('OriginAppID',0,'TMP_TABLE');
The reason why I doubt it is because you have to keep in mind that the call to the binary load must always be the first line of execution and by that time you should already know the ID.
Hope it helps.
Best,
Hi,
What if I can use the include file (.qvs) and use that in the script?
Thanks