NE
Hi all, I have a problem I want to show the name of connected application system type in all function in EPC but I faced this error "TypeError: Cannot find function ObjDef in object . (Listing Attributes of process and activities #75)"
when I add ObjDef().Name(nLocale) to line 75 as appeared in attached picture and without add it I get something like ID ex: 'Lcom.aris.modeling.co mmon.serverremoteapi. cscommon.webreportba se.reportobjects.IObjDef ;@530d5895'
Yes well, you could have some functions without connected system etc.
oObjDefList_System = ObjDef().getConnectedObjs([Constants.OT_APPL_SYS_TYPE]);
if (oObjDefList_System.length > 0){
oObjDef_System = oObjDefList_System[0] // or iterate through all found systems ?
...
}