Hi, I'm Ask INFA!
What would you like to know?
ASK INFAPreview
Please to access Ask INFA.

Table of Contents

Search

  1. Preface
  2. Introduction to rule specifications
  3. Rule specification configuration
  4. Rule set configuration
  5. Rule statement configuration
  6. REST APIs for rule specifications
  7. Rule specification configuration in advanced mode
  8. Business rules and rule statements
  9. Validation and testing

Rule specification assets

Rule specification assets

Specifying exception data options in the expression logic

Specifying exception data options in the expression logic

You can configure exception properties in the expression logic to identify exception records.
  1. Open a rule specification in advanced mode.
  2. Verify that the rule specification contains the inputs and outputs that you require.
  3. Select the
    Add Exception Details
    option on the
    Outputs
    tab in the
    Input and Output Management
    dialog box.
    The option activates the exception priority, exception description, and status indicators that you will use in the rule logic.
  4. In the rule editor, type the
    IF
    element of the IF-THEN-ELSE statement.
  5. To specify the input, type the input name.
  6. Enter the operator value.
  7. Specify a condition for the operator.
  8. Type the
    THEN
    element.
  9. Define a status indicator:
    • Define an
      Output
      .
    • Enter the
      =
      operator.
    • Enter a status valuethat reflects the data quality issue that the rule specification finds in the record.
  10. Add the
    ExceptionPriority
    indicator.
    Enter the
    =
    operator value to write a priority value.
  11. Enter the priority value for the data quality issue that defines the record as an exception.
    You can enter one of the following priority values: Minor, Major, Critical.
  12. Add the
    ExceptionDescription
    indicator.
    Enter the
    =
    operator value to write a descriptive text.
  13. Enter a description of the data quality issue that defines the record as an exception.
  14. To identify records that contain another data quality issue, add an
    ELSEIF
    element. Write the element logic in the same manner as the IF-THEN sequence in the earlier steps.
  15. Type the
    ENDIF
    element.
The following example shows exception rule logic that identifies individuals who may be old enough to obtain a driver's license:
IF Input < 17 THEN Output = 'Child' ELSEIF Input = 17 THEN Output = 'Verify age'
ExceptionPriority
= 'Major'
ExceptionDescription
= 'Driver may qualify this year' ELSEIF Input > 17 THEN Output = 'Adult' ELSE Output = 'Not known' ENDIF
The italicized text represents the exception data options.

0 COMMENTS

We’d like to hear from you!