Defining Workflow Inputs

The Workflow inputs you define are the inputs the user will be prompted to enter during workflow execution. If you have inputs that apply to the workflow the majority of the time it is run, consider using configuration values instead of inputs. For information on configuration values, see Setting Configuration Values.

You can define the following types of input:

  • string

  • integer

  • boolean

  • date/Time

  • double

  • float

  • long

  • short

  • XML

  • Binary

  • <Other>, such as pre-defined CommCell entity types (for example, ClientEntity)

The sections below describe the steps to add a workflow input using a string and an <other> input type as examples.

Add a String Type Input

  1. From the Workflow window, go to the Workflow Properties pane.

  2. On the Inputs tab, click Add.

  3. In the Variable Name box, enter the name of the string input, for example, email_ID.

  4. From the Variable Type list, select string.

  5. If you want to define more than one value for this input, keep the Create as list check box selected to store all values in a list.

  6. Click OK.

input_string

Add an Type Input

The following steps create an input that will recognize client groups in the CommCell:

  1. From the Workflow window, go to the Workflow Properties pane.

  2. On the Inputs tab, click Add.

  3. In the Variable Name box, specify a name for the client group variable.

  4. From the Variable Type list, select <Other ...>.

  5. From the Select Type dialog box, select ClientGroupEntity and click OK.

  6. If you want to define more than one value for this input, keep the Create as list check box selected to store all values in a list.

  7. Click OK.

input_other_type

Loading...