Multidomain MDM
- Multidomain MDM 10.4 HotFix 3
- All Products
Field
| Description
|
---|---|
TaskRecord
| A link to a data record associated with a task.
|
Comment
| An optional task comment.
|
TaskType
| The task type.
|
SubjectAreaUID
| The UID of the task subject area.
|
Title
| The task title.
|
TaskID
| The ROWID of the task. Cannot be set by user.
|
DueDate
| The date when the task is due.
|
Priority
| The priority of the task.
1 : High priority.
0 : Normal priority. The default is
0 .
-1 : Low priority.
|
StatusEnum
| The workflow status. The default is
TaskStatusEnum.OPEN .
|
OwnerUID
| The user or role ID to whom the task is assigned.
|
InteractionID
| The Interaction ID.
|
WorkflowProcessID
| The ID of the workflow process that contains the task. Cannot be set by user.
|
CreateDate
| The date when the task was created. Cannot be set by user.
|
Creator
| The name of the user who created the task. Cannot be set by user.
|
LastUpdateDate
| The date when the task was updated. Cannot be set by user.
|
LastUpdatedBy
| The name of the user who updated the task. Cannot be set by user.
|
PreviousOwner
| The name of the user or role to whom the task was previously assigned. The value is Null if the task is new or has not been assigned. Cannot be set by user.
|
Field
| Description
|
---|---|
SiperianObjectUID
| An identifier for an object in Informatica MDM Hub.
|
RecordKey
| An identifier for a record in Informatica MDM Hub.
|
MatchRuleUID
| An identifier for a match rule in Informatica MDM Hub. Only merge tasks require a MatchRuleUID.
|
Parameter
| Description
|
---|---|
TaskData
| Specifies the task to update.
|
Parameter
| Description
|
---|---|
Message
| Contains a message indicating if the
UpdateTask request was processed successfully.
|
InteractionID
| The interaction ID.
|
UpdateTaskRequest request = new UpdateTaskRequest(); TaskData task = new TaskData(); request.setTaskData(task); task.setTaskId("1234"); task.setTitle("Research and resolve item"); task.setComment("This task has been updated."); task.setDueDate(new Date()); task.setSubjectAreaUid("SUBJECT_AREA.test|Person"); task.setTaskType("ReviewNoApprove"); UpdateTaskResponse response = (UpdateTaskResponse) sipClient.process(request);