sruthy.ak - Tuesday, January 4, 2011 8:01 AM:
I want to create a report on Pending ECRs(status pending in My Inbasket). For that i have to access this status from report ECR Log Report. How can i do that?
Ronan - Wednesday, January 5, 2011 9:51 AM:
The AML query definition of the report will enable you to setup the filter you want. Example:
<AML>
<Item type="Document" action="get" select="document_number, title, state">
<state condition="eq">Pending</state>
</Item>
</AML>
If you need ANDs and ORs to include or exclude certain statuses this can also be done in AML. See the documentation.
sruthy.ak - Thursday, January 6, 2011 12:59 AM:
Thank you Ronan Jouchet
But my requirement is to select ECR no, title, priority,date requested,and hierarchy of ECRs. The status of these ECRs should be Pending in My Inbasket.
suresh_v - Friday, January 21, 2011 1:33 AM:
<p>