Hi all,
I am trying to get all relations of any object and display it using Javascript. Is there an API for this?
Is this doable in ARIS??
Thanks
Hi all,
I am trying to get all relations of any object and display it using Javascript. Is there an API for this?
Is this doable in ARIS??
Thanks
Hello Sebouh,
What i understand is "You want all IN and Out connection for any object?" in ARIS JAVA Script Right?
Yes it is possible, in two ways, Selection of that is as per your requirement
1. Database Level
For this purpose you need to use Object Defination
- CxnList()
- CxnListFilter()
2. Occurrence Level
For this purpose you need to use Object Occ
- CxnOccList()
- Cxns()
Hope this will help you
Milind
Hi I guess, you're actually meaning to find out if an model is linked (assigned) to an object.
In reports, you can use
ObjDef.AssignedModels() or variations of this method for this purpose . It'll return Model[]
~AB
Hi there,
Is there a reverse function for AssignedModels() ???
Since I need to know the parent of the object instead of the assgiend models.
Any Help?
Hi Sebouh
I hope I understand your question correctly, you can get the Superior-Objects with this method:
SuperiorObjDefs() //Returns a list of objects to which the model is assigned.
Read more in this post.
Regards
Eva