Table of Contents

Search

  1. Preface
  2. Introduction
  3. Configuring the Data Director Application
  4. Establishing a Root Node
  5. Defining the Business Entity Model
  6. Configuring Business Entity Properties
  7. Configuring Reference Entity Properties
  8. Transforming Business Entities and Views
  9. Managing Many-to-Many Relationships
  10. Configuring Search
  11. Configuring Workflow Tasks and Triggers
  12. Configuring Security and Data Filters for Business Entities
  13. Integrating Data as a Service
  14. Configuring External Calls
  15. Designing the Data Director User Interface
  16. Localizing Data Director
  17. Provisioning Tool Frequently Asked Questions

XML Code to Configure a Task Inbox

XML Code to Configure a Task Inbox

On the
Advanced
tab of the task inbox configuration page, use the XML code to configure the task inbox.
The following table lists the elements that you can use in the XML code to configure the task inbox:
Element
Description
displayFields
Name of the field that you want to display in the task inbox.
Use one of the following fields:
  • TASK_TITLE
    . A short description of the review task.
  • TYPE
    . Name of a people activity within the process.
  • PRIORITY
    . Priority of the task.
  • DUE_DATE
    . Date the task is due.
  • OWNER
    . Name of the signed-in user.
  • TASK_ID
    . Instance ID of the review process that generated the task.
  • STATUS
    . Status of the task.
  • CREATOR
    . Name of the user who created the task.
  • CREATION_DATE
    . Date on which the user created the task.
displayFilters
Filter that you want to display in the task inbox.
Use one of the following filters:
  • MY_OPEN_TASKS
    . Shows your open tasks.
  • MY_CLOSED_TASKS
    . Shows the tasks that you closed.
  • ALL_TASKS
    . Shows all the closed, claimed, and unclaimed tasks that are assigned to your user group.
  • ALL_UNCLAIMED_TASKS
    . Shows all the unclaimed tasks that are assigned to your user group.
  • ALL_CLOSED_TASKS
    . Shows all the tasks that the users in your user group closed.
  • ALL_CLAIMED_TASKS
    . Shows all the tasks that the users in your user group claimed.
excludeTaskTypes
Task type that you do not want to view in the task inbox.
The following sample XML code includes all the fields and filters and excludes the draft and merge tasks in the task inbox:
<dataViewLayout xmlns="http://www.informatica.com/mdm/TaskInbox"> <taskInboxConfig> <displayFields>TASK_TITLE</displayFields> <displayFields>TYPE</displayFields> <displayFields>PRIORITY</displayFields> <displayFields>DUE_DATE</displayFields> <displayFields>OWNER</displayFields> <displayFields>TASK_ID</displayFields> <displayFields>STATUS</displayFields> <displayFields>CREATOR</displayFields> <displayFields>CREATION_DATE</displayFields> <displayFilters>MY_OPEN_TASKS</displayFilters> <displayFilters>MY_CLOSED_TASKS</displayFilters> <displayFilters>ALL_TASKS</displayFilters> <displayFilters>ALL_UNCLAIMED_TASKS</displayFilters> <displayFilters>ALL_CLOSED_TASKS</displayFilters> <displayFilters>ALL_CLAIMED_TASKS</displayFilters> <excludeTaskTypes>AVOSBeDraftState</excludeTaskTypes> <excludeTaskTypes>AVOSBeMerge</excludeTaskTypes> </taskInboxConfig> </dataViewLayout>

0 COMMENTS

We’d like to hear from you!