Filtering Items by Item Type Name
Copy
The following example retrieves all the items in the database that are not Part wherethexPropertycost is equal to 100:
<AML>
<Item type="xPropertyContainerItem” action="get">
<xp-cost>100</xp-cost>
<itemtype condition="in” by="id">
<Item type="ItemType” select="id">
<name condition="ne">Part</name>
</Item>
</itemtype>
</Item>
</AML>