EB
Hi,
I am new to ARIS and I have to get knowledge on ARIS scripting part.
I would like to ask, if exist special function to get all object database in Aris.
Thank tou for your help
Erika
Hello Erika, welcome to our community!
Do you want to get all Aris-Object-Definitions (ObjDefs) ?
if so, you can use the Find function:
Report class Database - Method Find
Find ( int SearchKind )
usage:
db = ArisData.getActiveDatabase();
aObjDefs= db.Find(Constants.SEARCH_OBJDEF) //-- other possible arguments: SEARCH_MODEL, SEARCH_CXNDEF, SEARCH_GROUP. --//
Best Regards,
Almog.