Free cookie consent management tool by TermsFeed

Setting Up the Scratchpad add-on module

This content applies solely to Connected Underwriting Life, which must be purchased separately from the Appian base platform. This content was written for Appian 24.3 and may not reflect the interfaces or functionality of other Appian versions.

Introduction

Now that you have installed the Scratchpad add-on module, you must incorporate the application with your CU Life Workbench in order to utilize it. This guide walks you through the setup steps.

Incorporation with CU Life

The following incorporation steps are required to display and utilize Scratchpad on the Risk Details tab of the Case Record in your CU Life Workbench.

Display Scratchpad on Risk Details

  1. In the target environment, log in.
  2. Navigate to the Appian Designer.
  3. Navigate to Insurance Life Underwriting (ISL) application.
  4. Navigate to the ISL_RecordView_RiskDetails process model add the following code after the column that contains Risk Details Cards.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    
    a!columnLayout(
             contents: {
               rule!ISL_SCP_CaseScratchpad_ViewAndEdit(
                 case: ri!case,
                 genBundle: local!genBundle,
                 brandingMap: local!brandingMap
               )
             }
           )
    
  5. Save your changes.

Display Scratchpad on other Case Record tabs

The incorporation steps in this section are optional. If you want to display and utilize Scratchpad on other tabs in the Case Record, perform these steps to expose the Scratchpad component to the relevant interface.

  1. Log in to the target environment.
  2. Navigate to the relevant ISL_Case_RecordView interface where you want to add Scratchpad.
  3. Add the following code to expose the Scratchpad component to the desired interface.

    1
    2
    3
    4
    5
    
       rule!ISL_SCP_CaseScratchpad_ViewAndEdit(
                    case: ri!case,
                    genBundle: local!genBundle,
                    brandingMap: local!brandingMap
                  )
    
  4. Save your changes.

Feedback