Hi folks,
My teammate and myself are building a XS App-based PoC on HCP and we are both owner of trial accounts (He has one, and I have a different one).
The source files are located within the following package:
/myTrialAccount/myInstance/ourPackage
So, I have the following files:
/myTrialAccount/myInstance/ourPackage/services.xsjs
/myTrialAccount/myInstance/ourPackage/framework.xsjslib.
So, my code in services.xsjs file refers to an object located in the library file with the following statement:
var framework = $.import("myTrialAccount.myInstance.ourPackage","framework");
Now, if I want to share my code with my teammate, the above code does not work anymore as he has to change to something similar to:
var framework = $.import("hisTrialAccount.hisInstance.ourPackage","framework");
We can agree on the HANA instance, but we cannot circumvent the account name.
Am I missing some best practices ? Any help / suggestions are welcomed.
Regards,