Create Task Workflow Action Set

The following table describes the elements and sections in the Create Task workflow action set XML output file.

Table Elements and Sections in the Create Task Workflow Action Set XML File

Description Element or Section

<WorkflowName> contains the name of the workflow rule with which this action is associated. When performing an Upsert or InsertOrUpdate operation for workflow actions, this name is used to find a matching workflow rule.

<data:WorkflowName>Opportunity Approval
</data:WorkflowName>

The <WorkflowAction> section contains the details of the workflow action.

<data:WorkflowAction> 
. . .
</data:WorkflowAction>

<Name> is the name of the workflow action.

<data:WorkflowAction> 
  <data:Name>CreateTaskTest</data:Name> 
. . .
</data:WorkflowAction>

<Active> specifies whether the workflow action is active (true) or is inactive (false).

<data:WorkflowAction> 
. . .
  <data:Active>false</data:Active> 
. . .
</data:WorkflowAction>

<Order> is the order number for the workflow action within the set of actions on the workflow rule. It determines the order in which Oracle CRM On Demand invokes the sequence of workflow actions on the workflow rule.

<data:WorkflowAction> 
. . .
  <data:Order>3</data:Order>
. . .
</data:WorkflowAction>

The <WorkflowCreateTaskAction> section contains the details of the Create Task workflow action.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Owner> specifies the owner for the task. The <Owner> element's value depends on the <OwnerType> element, as follows:

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
    <data:Owner>O_Primary Owner Id
    </data:Owner>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<OwnerType> corresponds to the Owner field in the user interface. The valid values are:

  • R. Corresponds to the Relative User On Record option in the user interface.

  • U. Corresponds to the Specific User option in the user interface.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:OwnerType>R</data:OwnerType>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Type> is the activity type.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:Type>Approval</data:Type>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<SubType> is the activity subtype.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:SubType>Callback</data:SubType>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<DueDate> contains an expression that evaluates to the due date for the task.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:DueDate>Today()+2</data:DueDate>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Priority> specifies the priority of the task.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:Priority>2-Medium</data:Priority>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Status> specifies the status of the task.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:Status>Not Started</data:Status>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<TaskCurrency> contains the three-character currency code for the task.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:TaskCurrency>CAD
    </data:TaskCurrency>
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Private> specifies whether the task is visible only to the task user (true), or is visible to users other than the task user (false).

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:Private>false</data:Private> 
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Subject> contains the subject line for the task.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    </data:Subject> 
. . .
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>

<Description> contains the description of the task.

<data:WorkflowAction> 
. . .
  <data:WorkflowCreateTaskAction>
. . .
    <data:Description></data:Description> 
  </data:WorkflowCreateTaskAction>
</data:WorkflowAction>