aras.getIdentityList(). You can then run an AML query like below in order to get all of the Teams that have a member in that list.
<AML>
<Item type='Team' action='get'>
<Relationships>
<Item type='Team Identity' action='get'>
<related_id condition='in'>PASS_IDENTITY_LIST_IN_HERE</related_id>
</Item>
</Relationships>
</Item>
</AML>
You can call this AML query using aras.applyAML(aml) or aras.IomInnovator.applyAML(aml) and use the results to populate your list of Teams.
Chris
aras.getIdentityList(). You can then run an AML query like below in order to get all of the Teams that have a member in that list.
<AML>
<Item type='Team' action='get'>
<Relationships>
<Item type='Team Identity' action='get'>
<related_id condition='in'>PASS_IDENTITY_LIST_IN_HERE</related_id>
</Item>
</Relationships>
</Item>
</AML>
You can call this AML query using aras.applyAML(aml) or aras.IomInnovator.applyAML(aml) and use the results to populate your list of Teams.
Chris
Copyright © 2025 Aras. All rights reserved.