How to do a WebService query for workitem where filters are based on username and workitem state?
book
Article ID: KB0094670
calendar_today
Updated On:
Products
Versions
TIBCO Collaborative Information Manager
-
Not Applicable
-
Description
Resolution: It can be achieved by passing USER and STATUS in the webservice request as follows: <Transaction> <Command type="Query"> <StartCount>1</StartCount> <MaxCount>10</MaxCount> <Workitem etype="Entity"> <ExternalKeys> <Key name="STATUS" type="string">OPEN</Key> <Key name="USER" type="string">admin</Key> </ExternalKeys> </Workitem> </Command> </Transaction>
Issue/Introduction
How to do a WebService query for workitem where filters are based on username and workitem state?