Configuring the Results Display Page

This results display page should invoke the façade method ApplicationCaseCheckEligibility.viewCheckEligibilityDisplayRules to retrieve the display rules. The dynamic UIM page should contain the page parameter appCaseEligibilityResultID which should be passed into the façade method. The rules are returned from the façade method as XML in an attribute called displayXML. This attribute is used on the dynamic UIM page for displaying the data required for explanation purposes. The individual elements to be displayed to the user are retrieved using extended path expressions in the dynamic UIM page.

Example

If a display attribute called Income has been added to our rule set, retrieval of this information would be achieved by adding the following XML to the display rules page:
    <FIELD 
     DOMAIN="CURAM_AMOUNT"
     LABEL="Field.Label.Income">
       <CONNECT>
         <SOURCE
           EXTENDED_PATH="/DecisionDetails/ProgramOne/Income"
           NAME="DISPLAY"
           PROPERTY="displayXML"
         />
       </CONNECT>
    </FIELD>
    

The first item in the EXTENDED_PATH is always DecisionDetails, with the remainder of the path pointing to the attribute in the custom rule class.