‎28-06-2017 03:19 PM
Hello,
I list "System elements" from a "System Used" object. I need to process those objects in different ways considering their class (Application, Service or Feature).
The getClassId() method just get the "System Element" class ID.
Is it possible to get the "derived class" ?
Thank you
Yves-Marie LE SAUX
Solved! Go to Solution.
‎29-06-2017 03:52 PM
Many thanks
‎29-06-2017 12:25 PM
Hello Yves-Marie
From a collection based upon an abstract MetaClass, get a sub collection for a concrete MetaClass with GetType
Set cBE = GetCollection("~JW7j6VRt9H40[BPMN Element]") Print "Number of BPMN Element objects: " & cBE.count() Set cOP = cBE.GetType("~gsUiU9B5iiR0[Organizational Process]") Print "Number of Organizational Process objects: " & cOP.count()