목차

Search

  1. 서문
  2. 소개
  3. IDD 개념
  4. 구현 프로세스
  5. IDD 구성 관리자
  6. 수동 IDD 구성
  7. IDD 글로벌 속성
  8. 크기 조정 및 플랫폼 요구 사항
  9. 응용 프로그램 구성 요소
  10. IDD 보안 구성
  11. 데이터 보안
  12. 예제 역할 기반 보안 구성
  13. 데이터 마스킹
  14. Siperian BPM 워크플로우 엔진
  15. 로캘 코드
  16. 문제 해결
  17. 용어

Data Director 구현 가이드

Data Director 구현 가이드

태스크 유형 - 샘플 XML

태스크 유형 - 샘플 XML

다음 IDD 구성 파일의 샘플 발췌는 태스크 유형과 관련되어 있습니다(이 하위 섹션의 뒷부분에서 참조됨).
<!-- Task Definitions --> <taskType name="UpdateWithApproval" displayName="Update With Approval" creationType="create"> <description>Update a record and require the user to go through an approval process before completing the task. </description> <action name="SubmitForApproval"> <targetTask>ReviewNoApprove</targetTask> </action> <action name="Augment"> <targetTask>UpdateWithApproval</targetTask> </action> <action name="CancelTask"/> </taskType> <taskType name="UpdateWithOptionalApproval" displayName="Update With Optional Approval" 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> <action name="CompleteUpdate"/> <action name="SubmitForApproval"> <targetTask>ReviewNoApprove</targetTask> </action> <action name="Augment"> <targetTask>UpdateWithOptionalApproval</targetTask> </action> <action name="CancelTask"/> </taskType> <taskType name="ReviewNoApprove" displayName="Review" defaultApproval="true" creationType="none" pendingBVT="true"> <description>Review a change and either escalate or reject it. This task does not provide an Approve option and requires at least one other person to review the changes as well. </description> <action name="Reject"> <targetTask>UpdateWithApproval</targetTask> </action> <action name="Escalate"> <targetTask>FinalReview</targetTask> </action> <action name="Reassign"> <targetTask>ReviewNoApprove</targetTask> </action> <action name="CancelTask"/> </taskType> <taskType name="FinalReview" displayName="Final Review" creationType="none" pendingBVT="true"> <description>Review a change and approve, reject or escalate it.</description> <action name="Approve"/> <action name="Reject"> <targetTask>UpdateWithApproval</targetTask> </action> <action name="Escalate"> <targetTask>FinalReview</targetTask> </action> <action name="Reassign"> <targetTask>FinalReview</targetTask> </action> <action name="CancelTask"/> </taskType> <taskType name="Merge" displayName="Merge" creationType="merge" displayType=”merge”> <description>Merge two records together.</description> <action name="Reassign"> <targetTask>Merge</targetTask> </action> <action name="CancelTask"/> </taskType> <taskType name="Unmerge" displayName="Unmerge" creationType="unmerge" displayType=”unmerge”> <description>Unmerge an XREF record from a Base Object record.</description> <action name="Unmerge"/> <action name="Reassign"> <targetTask>Unmerge</targetTask> </action> <action name="CancelTask"/> </taskType>
태스크 유형 속성을 변경하여 워크플로우 및 태스크를 사용자 지정할 수 있습니다. 태스크 정의를 수정할 때는 항상 주의해야 합니다. 여기서 발생한 오류로 인해 IDD 응용 프로그램에서 태스크를 사용할 수 없게 될 수 있기 때문입니다. 태스크 정의에는 다음 속성이 포함됩니다.