LIKE operator within my SOAP request
Hi,
Is is possible to have a "LIKE" or "CONTAINS" operator similar to SQL within my SOAP request so that it searches within the item value for a particular set of characters?
For example: I can have something like :
<typ1:item>
<typ1:conjunction>And</typ1:conjunction>
<typ1:attribute>AccountPartyId</typ1:attribute>
<typ1:operator>=</typ1:operator>
<typ1:value>3212006941687575</typ1:value>
</typ1:item>
But I want to know if I can have something like :
<typ1:item>
<typ1:conjunction>And</typ1:conjunction>
<typ1:attribute>AccountPartyId</typ1:attribute>
<typ1:operator>CONTAINS</typ1:operator>
<typ1:value>12345</typ1:value>
</typ1:item>
and it returns all the records which contain "12345" within the accountpartyid.
Is that possible?
Thanks for your assistance.
Vignesh