I have a very basic AML script I want to use to change email addresses of multiple users. Currently, I can't even get it to change one. Can someone help me determine what's wrong? I'm running AML Studio 2.0 on ARAS Innovator 9.3 SP7
My script is as follows:
<AML>
<Item here="[User].login_name like '%1'" action="edit" type="User">
<email>bkolb@yahoo.com</email>
</Item>
</AML>
and the error I am getting is this:
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SOAP-ENV:Fault
xmlns:af="http://www.aras.com/InnovatorFault">
<faultcode>SOAP-ENV:Server.MissingCriteriaException</faultcode>
<faultstring>
<![CDATA[Aras.Server.Core.MissingCriteriaException]]>
</faultstring>
<detail>
<af:legacy_detail>
<![CDATA[Aras.Server.Core.MissingCriteriaException]]>
</af:legacy_detail>
<af:exception message="Aras.Server.Core.MissingCriteriaException" type="Aras.Server.Core.MissingCriteriaException"/>
</detail>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>