String[
] A list of fields that are to be searched. There are two different
methods for specifying the field name, depending on whether you are working
with standard task fields or indexed task fields. For more information about
indexed fields, see the
IBM webMethods BPM Task Development Help.
Working
with Standard Task Fields
You can search the following standard
task fields in TaskInfo using these names:
acceptedByList
assignedToList
auditContext
collaborationProcessID
collaborationStepID
createdBy
createdDate
customTaskID
description
expireDate
lastModifiedDate
lastModifiedBy
lastAcceptedBy
name
priority
taskID
taskTypeID
parentTaskID
processInstanceID
processModelID
processModelVersion
status
stepID
stepIteration
To search standard fields in TaskData
(the task business data), specify the field using a binding expression in this
format:
#{currentTask.taskData.pathToDataElement}
For example, this binding expression:
#{currentTask.taskData.travelReservation.reservationNo}
searches the "reservationNo" field within
the "travelReservation" document in TaskData.
If you specify multiple fields in this
parameter, the comparison evaluates to true if
any
of the specified fields match the query defined by
operator and
value (that is, the service
performs a logical "OR" when asked to evaluate multiple fields).
This API returns the values for the
specified data fields only.
|