The tool can be used to match a property value or file descriptor physical name against a regular expression and return different message types if a value does not match.
It can either be used as part of a standard action descriptor or a modeled dialog validation action. See Validate Action for more information on how to validate values of modeled dialog box fields.
Attribute | Type | Description |
---|---|---|
Regex [M] | String | The regular expression to be used for validation. Only visible if “Regex From” is set to “Attribute” (default). |
Regex From [M] | Select Value | Whether the regular expression to be used should be set by the “Regex” attribute or an input parameter.
Possible values:
|
Regex Case Sensitive [M] | Boolean | Whether the validation should be case sensitive (default = true). |
Message [O] | String | Custom message to be returned if the property value is invalid.
If no message is specified, a message is generated by AWM. The generated message syntax takes the form: The value “&INVALID_VALUE.” of “&VALUE_LABEL.” does not match the validation pattern “®EX.”. While the three variables are resolved as follows:
These variables can be included in custom messages. They must be referenced by the “Start Reference” (default “&”) and “End Reference” (default “.”) characters as configured in the application options. |
Message Type [O] |
Select Value |
The type of a returned message.
Tool messages are displayed during every modeled AWM action. If “Message Severity” is set to “Error” it aborts the execution with an error message. See Messages for more information. Validation messages are only supported if the tool is executed within an AWM modeled dialog’s validation action. See Validate Action for more information. Possible values:
|
Message Severity [O] |
Select Value |
The severity of a returned message.
Error messages cause an action to be aborted (or prevent you from leaving a dialog after the execution of the validation action) while warning and information messages are just displayed to the user without affecting the workflow. The only difference between warning and information messages are their appearance and depending on the operating system. Possible values:
|
Parameter Name | I/O | Type | Description |
---|---|---|---|
Value to validate [M] | I | String | The value to be validated.
File input parameters are not supported, but a file descriptor can be referenced (Target ID File) to validate its physical name. |
Regex [O] | I | String | The regular expression to be used for validation.
This can be a parameter with "Mass Processing" attribute set to false even for mass processing execution. In this case, it validates all values against the same regular expression. Only visible, if attribute “Regex From” is set to “Input Parameter”. |
The tool supports mass processing by validating all values of a given mass selection. A message is returned if one or more values do not match the regular expression pattern.
If more than one value was invalid or more than one regular expression has been used, all values are displayed in the generated message or custom message, if the corresponding variables have been used. See the “Message” attribute for more information.
The following use case describes how to use the tool to validate a z/OS data set name and member name within a modeled dialog.
Two action descriptors must be defined as minimum:
ACT_EnterMemberAndDataSetName
TOOL_InputDialog_EnterMemberAndDataSetName (AWM Open Modeled Dialog)
Validation Action -> ACT_ValidateMemberAndDataSetName
Input parameter #1: PROP_DataSetName
Input parameter #2: PROP_MemberName
ACT_ValidateMemberAndDataSetName
TOOL_ValidateDataSetName (AWM Validate Value)
Regex = ^[A-Z#$@][A-Z0-9#$@-]{0,7}([.][A-Z#$@][A-Z0-9#$@-]{0,7}){0,21}$
Message Type = Validation Message
Input parameter #1: PROP_DataSetName
TOOL_ValidateMemberName (AWM Validate Value)
Regex = ^[A-Z#$@][A-Z0-9#$@]{0,7}$
Message Type = Validation Message
Input parameter #1: PROP_MemberName
The first action descriptor is used to open the modeled dialog and the second one is referenced as validate action of the dialog tool descriptor. As soon as OK is clicked in the modeled dialog, both validate value tools are executed and return a validation message if a value does not match the regular expression. The validation message are displayed in the corresponding fields.