Sumário

Search

  1. Versão 10.3
  2. Versão 10.2
  3. Versão 10.1
  4. Versão 10.0.0

Configuração de Tarefas no Arquivo de Configuração do Informatica Data Director

Configuração de Tarefas no Arquivo de Configuração do Informatica Data Director

Em vigor na versão 10.0.0 HotFix 2, a função dos parâmetros de configuração de tarefas no arquivo de configuração do Informatica Data Director mudou. Se você usar o adaptador de fluxo de trabalho do ActiveVOS, atualize o arquivo de configuração do IDD após a atualização.
É possível configurar os seguintes parâmetros de tarefas no arquivo de configuração do Informatica Data Director:
taskType
Descreve o tipo de tarefa.
taskTypeID
O nome do processo.
name
O nome de taskType. O nome deve ser igual ao nome da tarefa na configuração do fluxo de trabalho do ActiveVOS.
É possível usar o seguinte código para configurar as tarefas para o adaptador do ActiveVOS baseado em áreas de assunto no arquivo de configuração do Informatica Data Director:
<tasks includeUnassignedTasks="true"> <!-- Task Definitions --> <taskType taskTypeId="IDDMergeTask" name="AVOSMerge" displayName="Merge" creationType="MERGE"> <description>Merge two records together.</description> </taskType> <taskType taskTypeId="IDDUnmergeTask" name="AVOSUnmerge" displayName="Unmerge" creationType="UNMERGE"> <description>Unmerge an XREF record from a Base Object record.</description> </taskType> <taskType taskTypeId="IDDOneStepApprovalTask" name="AVOSFinalReview" displayName="Final review" creationType="NONE"> <description>Update a record and require the user to go through an approval process before completing the task. </description> </taskType> <taskType name="Notification" displayName="Notification" creationType="NONE"> <description>Notification step in the workflow</description> </taskType> <taskType taskTypeId="IDDTwoStepApprovalTask" name="AVOSReviewNoApprove" displayName="Review no approve" creationType="NONE" defaultApproval="true"> <description>Update a record and require the user to go through an approval process before completing the task. </description> </taskType> <taskType taskTypeId="IDDUpdateWithApprovalTask" name="Update" displayName="Update" creationType="CREATE"> <description>Update a record and do not require the user to go through an approval process before completing the task. The approval step is optional. </description> </taskType> </tasks>
É possível usar o seguinte código para configurar tarefas do ActiveVOS baseadas em objetos de composição no arquivo de configuração do Informatica Data Director:
<tasks includeUnassignedTasks="true"> <!-- Task Definitions --> <taskType taskTypeId="BeMergeTask" name="AVOSBeMerge" displayName="Merge" creationType="MERGE"> <description>Merge two records together.</description> </taskType> <taskType taskTypeId="BeUnmergeTask" name="AVOSBeUnmerge" displayName="Unmerge" creationType="UNMERGE"> <description>Unmerge an XREF record from a Base Object record. </description> </taskType> <taskType taskTypeId="BeOneStepApprovalTask" name="AVOSBeFinalReview" displayName="Final review" creationType="NONE"> <description>Update a record and require the user to go through an approval process before completing the task. </description> </taskType> <taskType name="AVOSBeNotification" displayName="Notification" creationType="NONE"> <description>Notification step in the workflow</description> </taskType> <taskType taskTypeId="BeTwoStepApprovalTask" name="AVOSBeReviewNoApprove" displayName="Review no approve" creationType="NONE" defaultApproval="true"> <description>Update a record and require the user to go through an approval process before completing the task. </description> </taskType> <taskType taskTypeId="BeUpdateWithApprovalTask" name="AVOSBeUpdate" displayName="Update" creationType="CREATE"> <description>Update a record and do not require the user to go through an approval process before completing the task. The approval step is optional. </description> </taskType> </tasks>
Anteriormente, você podia usar o seguinte código para configurar tarefas do ActiveVOS baseadas em áreas de assunto no arquivo de configuração do Informatica Data Director:
<tasks includeUnassignedTasks="true"> <taskType creationType="MERGE" dataUpdateType="ACTIVE" defaultApproval="false" displayName="Merge Workflow" displayType="NORMAL" name="MergeWorkflow" pendingBVT="false" taskTypeId="IDDMergeTask"> <description>Merge two records together.</description> </taskType> <taskType creationType="UNMERGE" dataUpdateType="ACTIVE" defaultApproval="false" displayName="Unmerge Workflow" displayType="NORMAL" name="UnmergeWorkflow" pendingBVT="false" taskTypeId="IDDUnmergeTask"> <description>Unmerge an XREF record from a Base Object record.</description> </taskType> </tasks> <taskType creationType="NONE" dataUpdateType="ACTIVE" defaultApproval="false" displayName="One Step Approval Workflow" displayType="NORMAL" name="OneStepApprovalWorkflow" pendingBVT="false" taskTypeId="IDDOneStepApprovalTask"> <description>Update a record and require the user to go through an approval process before completing the task.</description> </taskType> <taskType creationType="NONE" dataUpdateType="ACTIVE" defaultApproval="false" displayName="Two Step Approval Workflow" displayType="NORMAL" name="TwoStepApprovalWorkflow" pendingBVT="false" taskTypeId="IDDTwoStepApprovalTask"> <description>Update a record and require the user to go through an approval process before completing the task.</description> </taskType> <taskType creationType="CREATE" dataUpdateType="ACTIVE" defaultApproval="true" displayName="Update With Approval Workflow" displayType="NORMAL" name="UpdateWithApprovalWorkflow" pendingBVT="false" taskTypeId="IDDUpdateWithApprovalTask"> <description>Update a record and do not require the user to go through an approval process before completing the task. The approval step is optional.</description> </taskType>