Plug-in Development
The plug-in development process includes the following main tasks:
-
Design a combination of steps for a new job type to execute on an external application.
-
Define attributes for use in job properties, connection profiles, and runtime parameters.
-
Create rules to control job output.
For each step, you need to define one of the following interfaces to communicate with the application and execute various operations:
-
Command Line
-
REST API
-
Web Service
The following table describes the sequential order and purpose of each step type:
Step Type |
Description |
Usage |
---|---|---|
Pre-execution step |
Defines an operation that needs to execute before the main execution, such as initialization or creation of a database table. |
|
Execution step |
Defines an operation that runs during the main execution flow. |
|
Runtime information capture sub-step |
Obtains information about plug-in job executions when they are running. |
|
Manual abort operation sub-step |
Applies an additional operation to job termination. |
|
Verify operation completion sub-step |
Verifies that the job has completed. |
|
Post-execution step |
Defines an operation that needs to run after completion, such as cleanup, logout, or adding completion data to the output. |
|
Defining a Step
This procedure describes how to define a step in a plug-in. You can edit any of the steps created by default during creation of the plug-in (a pre-execution step, an execution step, and a post-execution step) or add additional execution steps and sub-steps.
For more information about the different types of steps, see Plug-in Development.
Begin
-
From the Home tab in Application Integrator, select the plug-in that you want to configure.
The plug-in opens.
-
In the plug-in, do one of the following:
-
To edit the basic settings of an existing step, select the step under Execution Steps and click.
-
To add an execution step, click .
-
-
On the Edit or Add pane that appears on the right, define one or more of the following basic steps and then click Save or Add:
-
(Execution step only) Type a name for the step.
-
Type an optional step description.
-
In the Step interface field, select an interface to communicate with the application:
-
Command Line (default)
-
REST API
-
Web Service
-
-
(Execution step only) For additional sub-step actions, select one or more of the operations that appear under Additional actions:
-
Runtime information capture: Obtains information about plug-in job executions when they are running.
-
Manual abort operation: Applies an additional operation to job termination.
-
Verify operation completion: Verifies that the job has completed.
-
The step is updated. If this is a new Execution step, it is added to the list of steps.
To edit a sub-step, see Defining an Execution Sub-step.
-
-
Select the step and complete its technical details in the tabs on the right.
-
Command Line step:
-
Conditions: Defines the conditions required for the step to run.
-
Command Line: Defines the command line script to execute.
-
Return Code Handling: Controls how the job workflow behaves in response to return codes issued by the step.
-
Output Handling: Defines specific content to check for in the step output and controls how the job reacts to the output and whether to retain certain output content as parameters.
-
-
REST API step:
-
Conditions: Defines the conditions required for the step to run.
-
REST API: Defines the REST API request to submit.
-
Output Handling: Defines specific content to check for in the step output and controls how the job reacts to the output and whether to retain certain output content as parameters.
-
-
Web Service step:
-
Conditions: Defines the conditions required for the step to run.
-
Web Service: Enables you to load a WSDL file and define the Web Service to execute.
-
Output Handling: Defines specific content to check for in the step output and controls how the job reacts to the output and whether to retain certain output content as parameters.
-
-
-
Save the plug-in.
Defining an Execution Sub-step
This procedure describes how to define a sub-step under an Execution step in the plug-in, for several optional operations that you can apply during plug-in job execution — Runtime information capture, Manual abort operation, and Verify operation completion. For descriptions of these operations, see Plug-in Development.
Before you begin
Ensure that the relevant sub-steps are listed under the Execution step. The sub-steps were created when you associated operations with the Execution step, as described in Defining a Step.
Begin
-
From the plug-in, select the sub-step and click.
-
On the Edit pane, select one of the following interfaces to communicate with the application for execution of the sub-step:
-
Command line
-
REST API
-
Web service
The default interface at the time of creation of the sub-step is the same as the interface associated with the parent Execution step.
-
-
For a Verify operation completion sub-step, set values for one or more of the following parameters on the Edit pane:
-
Rerun interval: Defines the frequency (in seconds) of checking for the completion of the job until the completion criteria is met. The default is 2 seconds.
-
Retry in case of failure > Retries: Defines the number of times to retry verification before failing the step. First select the option and then enter the number of retries.
-
Fail the job on timeout > Timeout: Defines the number of minutes to retry verification before failing the step. First select the option and then enter the number of minutes.
To insert an attribute in any of these fields, click. For more information, see Defining Attributes.
-
-
Click Save.
-
In the list of steps, select the sub-step and complete its technical details on one or more of the following tabs (depending on sub-step type and the interface type):
-
Command Line: Defines the command line script to execute.
-
Return Code Handling: Controls how the job workflow behaves in response to return codes issued by the command line during verification of operation completion.
-
REST API: Defines the REST API request to submit.
-
Web Service: Enables you to load a WSDL file and define the Web Service to execute.
-
Output Handling: Defines specific content to check for in the step output for Command Line, REST API, or Web Service and controls how the job reacts to the output and whether to retain certain output content as parameters.
-
-
Save the plug-in.
Condition Parameters
Conditions determine the requirements for a step to run and are based on the following:
-
Values: Attribute or variable values, with the following syntax:
If the <item type> <item name> <comparison operator> <value>
-
Status: Previous steps status or previous job execution status, with the following syntax:
If the <item type> <status>
The following table describes the types of items that you can specify in a condition:
Item |
Description |
---|---|
Attribute |
Enables you to run the step based on the value of an attribute that you select or create on the fly. Attributes are values derived from job properties or connection profile properties. For more information about attributes, see Defining Attributes. |
Environment variable |
Enables you to run the step based on the value of a user variable or system environment variable. |
Control-M variable |
Enables you to run the step based on the value of a Control-M variable. |
Previous steps |
Enables you to run an execution step or post-execution step based on one of the following statuses of previous steps:
You can include only one condition of this type in a step. |
Previous job execution |
Enables you to run the step based on one of the following statuses of the previous Control-M job execution:
You can include only one condition of this type in a step. |
Command Line Parameters
The following table describes parameters that enable you to execute a command line in a step:
Parameter |
Description |
---|---|
Command Line Editor |
Enables you to write a script to execute through the command line. You can add attributes into the command by clicking. For more information, see Defining Attributes. |
Append command to job output |
Determines whether to attach command line details to the job output. |
Append command standard output to job output |
Determines whether to attach the standard output from the command line to the job output. If you select this option, you can apply a filter to attach output based on a string, as described in the Append if parameter. |
Append if... |
Enables you to apply a filter when the standard output is attached to the job output (see the Append command standard output to job output parameter). The filter that you define contains the following syntax: Append if command standard output <comparison operator> <value>
|
Return Code Handling Parameters
You can define rules that control how the job workflow behaves in response to return codes issued by the step, with the following syntax:
If the return code <comparison operator> <value> <action>
A rule contains the following parameters:
- Comparison operator: Enables you to select from multiple operators to compare the defined value, such as Not equals to (!=) or Less than (<). For a range of values, you can select the In range operator and set the minimum and maximum values of the range.
Action: Defines the action to perform in response to the specified return code(s). The following actions are available in rules, depending on the step type:
Fail the job
Proceed to the next execution step
Complete Execution and Fail the job
Complete Execution and proceed
Command Line Output Handling Parameters
You can define rules that check for specific content in the step output from a command line and control how the job reacts to the output. For example, you can retain content from the output as parameter values.
Output handling rules have the following syntax:
If output <operator> <value> Do <actions>
A rule contains the following parameters:
-
Operator: Enables you to select from multiple operators, such as Starts with, Contains, or Matches regular expression.
-
Value: Defines the string to search for.
To insert an attribute, click . For more information, see Defining Attributes. -
Actions: Define the actions to perform in response to detected output content. The following actions are available in rules, depending on the step type:
-
Fail the job
-
Extract and handle data
-
Keep value in Runtime Parameter
-
Complete and fail
-
Complete & Proceed
The following table describes additional parameters that are available to define actions:
Action Type
Parameter
Description
Extract and handle data
Extract <scope>
Determines the quantity of data to extract, as follows:
-
Whole line: Extracts data from the whole line.
-
Match regular expression: Enables you to match an expression that you define in the Expression field.
-
Part of the line: Enables you to extract part of a line based on the outer boundaries of a string in the line:
-
Start position: Enables you to select a starting point based on a specific number of characters or words from the beginning or end of the line, or relative to an exact text in the line (after the text or including it).
-
End position: Enables you to select an endpoint based on the number of characters or words from the start position, or relative to an exact text in the line (up to the text or including it).
-
-
Columnar data: Enables you to extract columnar data when the output is column-based, such as CSV format or SQL output format. You need to define the separation identifier between the columns and the column number that you want to extract.
Trim preceding/trailing whitespace from extracted data
Determines whether to remove blank spaces that appear at the beginning or at the end of the extracted data, for extraction of part of a line or extraction of columnar data.
Preview
Enables you to view the effect of your settings on a sample text. Based on your settings, the text that is extracted is highlighted in yellow. You can replace or edit the sample text by clicking .
Encrypt extracted data
Replaces the extracted data with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure.
Keep extracted data in a runtime parameter
Stores the extracted data as the value of a runtime parameter that you define.
In addition, you can choose to fail the job based on the value of this runtime parameter, using a rule with the following syntax:
Fail the job if extracted data <comparison operator> <value|range>
Keep value in Runtime Parameter
Parameter name
Defines the name of the runtime parameter where the extracted value is stored for future use
Encrypt the runtime parameter value
Replaces the value of the runtime parameter with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure.
Fail|Succeed the job if...
(For Verify operation completion sub-step only) Enables you to set the status of the job to failed or succeeded based on the value of the runtime parameter using a rule with the following syntax:
[Fail|Succeed] the job if extracted data <comparison operator> <value|range>
-
REST API Parameters
The following categories of parameters enable you to define the REST API to execute in the step:
URL Settings
The following table describes the URL settings that you define in a REST API step:
Parameter |
Description |
---|---|
Load from presets |
Populates the URL settings with a preset of URL settings that you saved previously (see Add to Presets). |
REST API URL |
Defines the base URL location of the REST services, excluding the specific resource context path. For example, https://www.googleapis.com. You can insert an attribute into the URL by clicking . For more information, see Defining Attributes. |
URL request path |
Defines the required path (recourse). For example, /language/translate/v2. You can insert an attribute by clicking . For more information, see Defining Attributes. If the path requires values for input parameters, type them separately, as described in URL Parameters, Headers, and Body Definitions. |
Method |
Defines the method to invoke, such as GET or POST. |
Authentication required |
Determines whether authentication is required by the target server for the REST API URL. After selecting this option, authentication settings appear. See Authentication Settings. |
Saves the URL settings as a preset for future use in other steps in the plug-in. |
Authentication Settings
The following table describes the authentication settings that you define if the target server for the REST API URL requires authentication.
In all fields that accept free text, you can insert an attribute by clicking . For more information, see Defining Attributes.
Parameter |
Description |
---|---|
Authentication Type |
Determines the method to use to authenticate REST API requests:
|
Basic Authentication settings |
|
Use preemptive authentication |
Sends a basic authentication response before the server returns an unauthorized response. |
Defines an attribute that contains the username to connect to the HTTP server. |
|
Defines an attribute that contains the password to connect to the HTTP server. |
|
OAuth2 settings |
|
Use basic authentication |
Adds basic authentication to the OAuth2 request. If you select this option, you must define the User name attribute and Password attribute. |
OAuth2 API URL |
Defines the REST API authorization endpoint. |
Token parameter |
Defines the access token required by the REST API. You can use this token in the URL request header for authentication. For example, Authorization=Bearer{{TOKEN_NAME}} |
Grant type |
Determines ones of the following options to access the token:
|
Apply client ID |
Defines the public identifier for applications. |
Use client secret |
Defines the secret known to the application and the authorization server. |
Specify content type |
Defines the media type of the resource. |
Apply headers |
Defines any additional HTTP headers as key-value pairs. You can type <key>=<value> lines in an Editor View or you can define keys and values in a Table View. |
Apply body |
Defines any text that is required in the request body as key-value pairs. You can type <key>=<value> lines in an Editor View or you can define keys and values in a Table View. |
AWS Authentication settings |
|
Region |
Defines the AWS regional endpoint. |
Custom service name |
Defines the AWS Service Name. Default: execute-api |
Authentication method |
Determines the authentication method required to run the AWS Service:
|
Google Authentication settings |
|
Token type |
Determines one of the following types of tokens to use to access data in Google APIs:
Default: Access token |
Service account key |
Defines the authorization key to access data in Google APIs. |
URL Parameters, Headers, and Body Definitions
The following table describes the settings that you can define for additional elements in the REST API URL and the REST API job step.
In all fields that accept free text, you can insert an attribute by clicking . For more information, see Defining Attributes.
Parameter |
Description |
---|---|
URL Parameters |
Defines URL parameters that are added to the URL address. These parameters are added to the URL as key-value pairs after a ? character. You can type <key>=<value> lines in an Editor View or you can define keys and values in a Table View. |
Headers |
Defines any additional HTTP headers, as key-value pairs. You can type <key>=<value> lines in an Editor View or you can define keys and values in a Table View. |
Body |
Defines any text required in the request body, as key-value pairs. You can type <key>=<value> lines in an Editor View or you can define keys and values in a Table View. |
Append REST API request to job output |
Determines whether to attach the REST API request to the job output |
Append REST API response to job output |
Determines whether to attach the REST API response to the job output |
Advanced Settings
The following table describes the advanced settings that you can define for a REST API step.
In all fields that accept free text, you can insert an attribute by clicking . For more information, see Defining Attributes.
Parameter |
Description |
---|---|
Apply Cookie |
Enables you to specify a cookie for the REST API to apply. |
Override connection timeout |
Determines the number of seconds to wait for the REST service to respond before disconnecting. |
Override Content-Type |
Enables you to define a preferred HTTP header content type to use to execute the job (to override the default text/javascript). |
REST API Output Handling Parameters
You can define rules that check for specific content in the step output from a REST API request and control how the job reacts to the output. For example, you can retain content from the output as parameter values.
The following table describes the lines in output handling rules and the parameters in these lines:
Rule Parameters |
Description |
---|---|
When the response is <response status> |
Enables you to select from the following statuses that determine when to handle output:
|
Extract from <request part> |
Determines the part of the REST request from which to extract data, either the HEADER or the BODY. |
Content type <format> |
Determines one of the following content formats for the REST body:
|
If output <element> <operator> <value> |
(For data from the header) Defines a condition for data extraction, with the following parameters:
|
If output <path expression> <operator> <value> |
(For JSON or XML data from the body) Defines a condition for data extraction, with the following parameters:
|
If output <operator> <value> |
(For data of other formats, not JSON or XML, from the body) Defines a condition for data extraction, with the following parameters:
You can define only one condition of this type. |
Do <actions> |
Defines the actions to perform in response to detected output content. The following actions are available in rules, depending on the step type:
For information about action parameters, see the next table. |
The following table describes additional parameters that are available to define actions:
Action Type |
Parameter |
Description |
---|---|---|
Extract and handle data |
Extract <scope> |
Determines the quantity of data to extract, as follows:
|
Trim preceding/trailing whitespace from extracted data |
Determines whether to remove blank spaces that appear at the beginning or at the end of the extracted data, for extraction of part of a line or extraction of columnar data. |
|
Preview |
Enables you to view the effect of your settings on a sample text. Based on your settings, the text that is extracted is highlighted in yellow. You can replace or edit the sample text by clicking . |
|
Encrypt extracted data |
Replaces the extracted data with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure. |
|
Keep extracted data in a runtime parameter |
Stores the extracted data as the value of a runtime parameter that you define. In addition, you can choose to fail the job based on the value of this runtime parameter, using a rule with the following syntax: Fail the job if extracted data <comparison operator> <value|range> |
|
Keep value in Runtime Parameter |
Parameter name |
Defines the name of the runtime parameter where the extracted value is stored for future use |
Encrypt the runtime parameter value |
Replaces the value of the runtime parameter with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure. |
|
Fail|Succeed the job if... |
(For Verify operation completion sub-step only) Enables you to set the status of the job to failed or succeeded based on the value of the runtime parameter using a rule with the following syntax: [Fail|Succeed] the job if extracted data <comparison operator> <value|range> |
|
Keep value of related element |
Element name |
Defines the name of the element with the value that you want to keep. This element is on the same level or a child element in the XML response or JSON response. |
Parameter name |
Defines the name of the parameter in which to save the element value. |
|
Encrypt the runtime parameter value |
Replaces the value of the runtime parameter with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure. |
|
Save content to file
|
File name |
Defines the name of the file to save the output. You can also specify the file extension. |
Append date and time to file name |
Appends the date and time to the file name, to avoid overwriting the same file every execution. |
|
Store the full path to the output file in a runtime parameter |
Stores the full path to the output file as the value of a runtime parameter that you define. |
Web Service Parameters
The following table describes the parameters available for defining the Web Service to execute.
In all relevant fields that accept free text, you can insert an attribute by clicking . For more information, see Defining Attributes.
Parameter |
Description |
---|---|
Load WSDL File / Change WSDL File |
Enables you to upload a WSDL file that describes your Web Service, either from a URL or from file. If you update and load a WSDL file that is already defined in a job type, that job type is updated only after the you open the job type in Application Integrator. |
WSDL Display name |
(Read-only) Presents the name of the Web Service, as derived from the WSDL file. |
Web Service endpoint |
Defines the endpoint where the Web Service is sent. |
Authentication required |
Determines whether authentication is required by the target server for the Web Service. If you select this option, you need to specify the following credentials:
|
Service |
Enables you to select a specific service (from a list of detected services) to request from the application. |
Operation |
Enables you to select a specific operation (from a list of detected operations) to request from the application. |
Edit mode |
Enables you to define values for schema parameters in the SOAP request. You can choose from the following methods:
|
Advanced Settings > |
(List mode only) Defines any additional HTTP headers, as key-value pairs. You can type <key>=<value> lines in an Editor View or you can define keys and values in a Table View. |
Advanced Settings > |
(List mode only) Determines the number of seconds to wait for the Web Service to respond before disconnecting. |
Advanced Settings > |
(List mode only) Enables you to define a preferred HTTP header content type to use to execute the job (to override the default text/xml; charset=utf-8). |
Append web service request to job output |
Determines whether to attach the Web Service request to the job output |
Append web service response to job output |
Determines whether to attach the Web Service response to the job output |
Web Service Output Handling Parameters
You can define rules that check for specific content in the step output from a Web Service and control how the job reacts to the output. For example, you can retain content from the output as parameter values.
Output handling rules have the following syntax:
If output <operator> <value> Do <actions>
A rule contains the following parameters:
-
Operator: Enables you to select from multiple operators, such as Greater than or Contains. The CDATA Value operator enables you to enter an XPath expression as your value. For a range of values, you can select the In range operator and set the minimum and maximum values of the range.
-
Value: Defines the string to search for.
To insert an attribute in an XPath expression, click . For more information, see Defining Attributes. -
Actions: Define the actions to perform in response to detected output content.
The following actions are available in rules, depending on the step type:
-
Fail the job
-
Keep value in Runtime Parameter
-
Keep value of related element
-
Ignore failure
-
Complete & Proceed
The following table describes additional parameters that are available to define actions:
Action Type
Parameter
Description
Keep value in Runtime Parameter
Value to keep
Determines the element value to keep:
-
Same element value
-
Save value of inner CDATA element: Enables you to save the value of an inner cdata element from the response, expressed as a cdata XPath expression.
You can insert an attribute into the XPath expression by clicking. For more information, see Defining Attributes.
Parameter name
Defines the name of the runtime parameter where the extracted value is stored for future use
Encrypt the runtime parameter value
Replaces the value of the runtime parameter with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure.
Fail|Succeed the job if...
(For Verify operation completion sub-step only) Enables you to set the status of the job to failed or succeeded based on the value of the runtime parameter using a rule with the following syntax:
[Fail|Succeed] the job if extracted data <comparison operator> <value|range>
Keep value of related element
Element name
Defines the name of the element with the value that you want to keep.
This element is on the same level or a child element in the XML response.
Value to keep
Determines the element value to keep:
-
Same element value
-
Save value of inner CDATA element: Enables you to save the value of an inner cdata element from the response, expressed as a cdata XPath expression.
You can insert an attribute into the XPath expression by clicking. For more information, see Defining Attributes.
Parameter name
Defines the name of the parameter in which to save the element value.
Encrypt the runtime parameter value
Replaces the value of the runtime parameter with asterisks (****** ) in the logs, customer log, or output, to keep sensitive data secure.
Fail|Succeed the job if...
(For Verify operation completion sub-step only) Enables you to set the status of the job to failed or succeeded based on the value of the runtime parameter using a rule with the following syntax:
[Fail|Succeed] the job if extracted data <comparison operator> <value|range>
-
Defining Attributes
This procedure describes how to define attributes in a plug-in through the Attribute Management pane. You can use the attributes as variables in various fields and parameters in plug-in steps. In addition, you can use the attributes when you define the plug-in job in the Planning domain.
You can also create ad-hoc attributes through fields and parameters in a plug-in step. This opens the Add Attribute pane.
Before You Begin
To define a runtime parameter attribute, ensure that you have defined Output Handling rules that include Do actions with defined runtime parameters.
Begin
-
From the Home tab in Application Integrator, select the relevant plug-in.
The plug-in opens.
-
Click Attribute Management.
-
In the Attribute Management pane, select one of the following:
-
Connection Profile Attributes: Enables you to manage attributes that are used to connect with applications or application servers.
-
Job Properties Attributes: Enables you to manage attributes that are used during job execution.
-
Job Properties Dependencies: Enables you to create dependency events between job properties.
-
Runtime Properties: Enables you to control the display of runtime information from the job output in the Monitoring domain.
-
-
Click or .
- Depending on the type of item that you want to define, do one of the following:
- For a connection profile attribute or job attribute, complete the settings in the Add Attribute pane. For descriptions of these settings, see Job Attribute and Connection Profile Attribute Definitions.
- For a job property dependency rule, complete the rule settings, as described in Job Property Dependency Rules.
- For a runtime parameter attribute, select one of the runtime parameters that were defined in Output Handling rules in the plug-in steps and type a label to associate with this attribute.
-
Click Add.
Job Attribute and Connection Profile Attribute Definitions
The following categories of parameters enable you to define job attributes and connection profile attributes:
General Settings
The following table describes the attribute settings in the General tab:
Parameter |
Description |
---|---|
Field type |
Determines one of the following field types assigned to the attribute for input of a value during job execution:
|
Label |
Defines the text that describes the field in the connection profile or job properties. |
Attribute name |
Defines the internal name of the attribute. No blanks allowed. The attribute name appears in lists of available attributes when you define a step. The following strings are reserved for internal use and cannot be used as the attribute name. All strings are case insensitive.
|
Description |
Enables you to add a description of the attribute. |
Default value |
Defines a default value for the attribute. Relevant only for Text box and Text area field types. |
Default field state |
Determines the default state for visibility of the field:
|
Resolved Control-M variable on job's rerun |
Enables you to resolve Control-M variables when the job reruns. By default, Control-M variables are resolved only in the first execution. Relevant only for Text box and Text area field types. |
Use as environment variable |
Enables you to set the connection profile attribute value specified by the end user as an environment variable. Relevant only for Text box, Text area, and Password field types. |
Add to path |
Enables you to append the connection profile attribute value specified by the end user to the PATH environment variable. Relevant only for Text box, Text area, and Password field types. |
Variables in a Loaded Text File
To support the inclusion of variables in a file that is loaded through a Load text file field, you must provide another Text area field where the user can specify parameters to use as variables in the text file.
The following table describes how these elements are used in the job:
Element |
User Input |
Example |
---|---|---|
Text area field | List of parameter:value pairs in JSON format |
|
Load text file field |
A Load button enables selection of a text file. |
|
Text file |
Within the text in the loaded file, variables refer to the parameters in the Text area field, in the following format:
|
|
Format Settings
The following table describes the attribute settings in the Format tab for each field type:
Field Type |
Parameter |
Description |
---|---|---|
|
When value is empty |
Defines a default value to use when the user does not specify a value in the field. |
When value is not empty |
Enables you to append an optional prefix and an optional suffix to the attribute value during execution. |
|
Dropdown list
|
Enable users to manually input values |
Enables you to select between the following types of lists:
Default: If not selected |
Dropdown items |
Lists definitions of at least two items in a closed list and enables you to add items and select the default item. For each item, you must define a value. If the list is visible to the user, you must also define a display name, which can be different from the internal value. |
|
Toggle button
|
Checked by default |
Determines whether the toggle button appears (by default) as selected or unselected. |
When checked |
Defines the value of the field when the toggle button is selected. |
|
When unchecked |
Defines the value of the field when the toggle button is not selected. |
|
List (for job properties) |
Command line format |
Enables you to select the list format for multiple values:
|
Validation Settings
The following table describes the attribute settings in the Validation tab:
Parameter |
Description |
---|---|
Valid values |
Defines the type of characters that are allowed as input in the attribute field:
|
Mandatory field (non empty) |
Determines whether the user must specify a value in the attribute field or can leave the field empty. For a field of type Load text file, this is the only Validation setting. |
Exclude characters |
Defines characters that the user cannot use in the field value. |
Load Button and Text Extraction Settings
The Load Button and Text Extraction settings enable you to define the load operation and data extraction for a job property attribute with a Text box with load button field type.
The following table describes the attribute settings in the Load Operation tab:
Parameter |
Description |
---|---|
Perform the Pre-Execute step before load operation |
Enables you to execute the pre-execution step that was defined for the plug-in prior to the load operation. For more information about the pre-execution step, see Plug-in Development. |
Perform the Post-Execute step after load operation |
Enables you to execute the post-execution step that was defined for the plug-in after the load operation. For more information about the post-execution step, see Plug-in Development. |
Interface |
Enables you to select an interface to communicate with the external application for the load operation and to retrieve values from the external application:
|
Interface-specific parameters |
The following additional parameters enable you to execute the load operation through the selected interface: The Load Operation parameters are almost identical to the corresponding parameters for plug-in steps with the following exceptions:
|
The following table describes the attribute settings in the Extract values list tab for each interface type selected in the Load Operation tab:
Interface |
Parameter |
Description |
---|---|---|
|
Extract data from lines |
Defines a filter for data extraction from lines in the output of the load operation, based on a comparison operator and value. The comparison operator can be one of the following:
|
Extract |
Determines the quantity of data to extract, as follows:
|
|
Trim preceding/trailing whitespace from extracted data |
Determines whether to remove blank spaces that appear at the beginning or at the end of the extracted data, for extraction of part of a line. |
|
Preview |
Enables you to view the effect of your settings on a sample text. Based on your settings, the text that is extracted is highlighted in yellow. You can replace or edit the sample text by clicking . |
|
REST API |
Content type |
Determines one of the following content formats for the REST body:
|
Web Service
|
Extract value of element |
Defines the name of the element with the value that you want to keep. This element is on the same level or a child element in the XML response. |
Value to keep |
Determines the element value to keep:
|
Job Property Dependency Rules
You can define rules that create dependencies between job property attributes. These rules control the display status of one or more attributes based on the value of another attribute.
Each rule contains the following parts:
-
A condition based on the value of one attribute:
If attribute <attribute name> <comparison operator> <value>
-
One or more actions to set the display status of another attribute:
Do <other attribute name> <display status>
The rule contains the following parameters:
-
Attribute name: Defines the name of the attribute with the valueyou want to check. This must be an attribute with a closed set of values (an array) in a Dropdown list or Toggle button field.
- Comparison operator: Defines the operator for the comparison with the specified value, as follows:
- Equals to (=)
- Not equal to (!=)
- Value: Enables you to select a value from the array defined for the attribute.
-
Other attribute name: Defines the name of another attribute with a display status that is set based on the value of the first attribute. Each defined attribute can be used in only one Do line.
-
Display status: Determines one of the following display statuses of the attribute:
-
Visible
-
Hidden
-
Read only
-