Free cookie consent management tool by TermsFeed Integrating Magnum Pure with CU Life [Connected Underwriting Life v23.4.1.1]
Page not found in the selected version; redirected to the home page.
Integrating Magnum Pure with CU Life
This content applies solely to Connected Underwriting Life, which must be purchased separately from the Appian base platform. This content was written for Appian 23.4 and may not reflect the interfaces or functionality of other Appian versions.

Introduction

Installing the Swiss Re Magnum Pure Add-On module with your Connected Underwriting Life Workbench solution consists of two steps:

Before starting the installation process, review the System Prerequisites to ensure all minimum requirements are met.

System Prerequisites

  • Appian platform version 23.3 or greater.
  • A supported version of MariaDB as a business data source.
    • Note: Instructions below are for MariaDB databases. For use with other databases, the SQL script.
  • A supported web browser.
  • Imported Connected Underwriting Life Workbench base application.

Step 1: Import the application

To import the application files:

  1. In the target environment, log in as the deployment user.
  2. Navigate to the Appian Designer.
  3. Click IMPORT.
  4. Click UPLOAD and choose the application zip file.
  5. Click INSPECT to ensure that there will be no complications on import.
  6. Click IMPORT.
    • Note: The import may time out due to file size, but the import will continue in the background.
  7. Review the import results.
  8. Navigate into the new ISL Add-On: Magnum Decision (ISL_MGD) application and open the ISL_MGD_CS_Magnum connected system.
  9. Update the connected system URL and authentication configurations to enable access to the desired Magnum environment.
  10. Save your changes.

Step 2: Incorporation with CU Life

The following incorporation steps are required to utilize the Magnum Pure integration with your CU Life solution.

Get and display parent Magnum decision on a case

  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_Case_Create process model.
    • Add a new synchronous subprocess node to the end of the process, setting the process to be run as ISL_MGD_CaseMagnumDecision_GetAndStore.
    • Set the sole caseMagnumDecision process variable by calling the rule ISL_MGD_CaseMagnumDecision_Initialize and passing in pv!case for the case rule input.
  5. Open the ISL_Case_GeneralInformationSummary interface and add the following code to the end of the array of columns in the a!columnsLayout().

    1
    2
    3
    4
    5
    6
    7
    
    /*Magnum Decision*/
            rule!ISL_MGD_CaseMagnumDecision_DisplaySummaryColumn(
              case: ri!case,
              genBundle: ri!genBundle,
              brandingMap: ri!brandingMap
            )
    
    
  6. Save your changes.

Display full Magnum decision on case

Perform the steps in this section to display Magnum Decision on the case record.

  1. Log in to the target environment.
  2. Navigate to the Appian Designer.
  3. Navigate to Insurance Life Underwriting (ISL) application.
  4. Open the record object ISL_Case and navigate to Views tab under Interfaces.
  5. Click on Add New View Manually, set the following inputs, and save.
    • View Name:
      1
      2
      
       rule!ISL_UTILG_GetAndDisplayLabel(
       key:"Case.MGD.RecordView.lbl.MagnumDecision")
      
    • Interface:
      1
      2
      
       rule!ISL_MGD_Case_RecordView_MagnumDecision(
       case: rv!record)
      
  6. Navigate to the Views and Actions Security tab of the ISL_Case record and edit the security rule for the Magnum Decision view.
  7. Configure the rule to display only when caseExternalPointer.externalPointerTypeId = cons!ISL_MGD_REFID_EXTERNAL_POINTER_TYPE_MAGNUM \ and caseExternalPointer.externalPointer is not null.
  8. Open the ISL_MGD_TXT_URL_STUB_MAGNUM_DECISION_VIEW constant and update the value to match the URL stub of the record view created in step 5.
  9. Save your changes.

Display Magnum Decision on the Update Decision form

Perform the steps in this section to display Magnum Decision on the Update Decision form.

  1. Log in to the target environment.
  2. Navigate to the Appian Designer.
  3. Navigate to Insurance Life Underwriting (ISL) application.
  4. Navigate to ISL_Case_RecordAction_UpdateDecision interface.
  5. Navigate to the read-only Case Information section of the Update Decision interface.
  6. Below the Face Amount field, add the following code to the end of rule!ISL_UTILG_currencyField:

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

Integrating Magnum Pure with CU Life

FEEDBACK