Install SME Commercial Combined FNOL

Follow the guidelines below to install and configure SME Commercial Combined FNOL 1.0.0. You need to install the following packages in this order:

Prerequisites

Before installing SME Commercial Combined FNOL 1.0.0, make sure to install the following:

  • FintechOS Platform 22.1.4

  • SySDigitalSolutionPackages v22.1.4001.zip

  • Core Insurance Master v2.5.0;

  • Policy Admin v3.5.0;

  • Billing and Collection v2.5.0;

  • Claims Admin v2.5.0.

Installation Steps

  1. Download the FNOL Solution 1.1.0 package from Release Hub.

  2. Unzip your solution package .zip archive file. Identify the 01 DeploymentPackages folder.

  3. Locate the FtosSysPkgDeployer folder in the FintechOS installation kit (the path is <unzipped_install_archive>\Tools\FtosSysPkgDeployer). You need it to install the SySDigitalSolutionPackages.

  4. Select and copy the FtosSysPkgDeployer folder next to the 01 DeploymentPackages folder.

  5. Create the .bat file needed for installation and save it next to the FtosSysPkgDeployer folder. Add the following script in the .bat file.

    Copy
    CD /D %~dp0
    "%~dp0\FtosSysPkgDeployer\FtosSysPkgDeployer.exe" -i -a -s "StudioLink" -u AdminStudioUser -p user_password -z DataBaseServer -v DB_user -k DB_user_password -d "TheNameOfTheDataBase" -r "%~dp0\01 DeploymentPackages\*.zip"
    Pause
  6. Execute the .bat file to start the installation.

Post-Installation Setup

  1. Verify that “b2c.user” system user exists on environment and that it has the “B2C” role associated on it. If not please follow the steps below:

    1. Log into FintechOS Studio.

    2. Go to Main Menu > Evolutive Data Core > Data Import Templates.

    3. Search and choose the INS_FTOS_SystemUser template.

    4. Using the template import the INS_FTOS_SystemUser.xlsx file. You can find it in the solution package .zip file, in the Other Config folder.

    5. Search and choose INS_SystemUserXSecurityRole template.

    6. Using the template, import the INS_SystemUserXSecurityRole.xlsx file. You can find it in the solution package .zip file, in the Other Config folder.

  2. From the Other Config folder of the solution package .zip file, copy the custom and the UploadEbs folders, and paste them onto the server.

  3. Add or update the /fnol route on B2CProxy > proxy > proxy.config file.

    Copy
    if (output.path === "/fnol"){
                if (output.query.match(/\bsessionId=/i)){
                    output.path = "/Main";
                    output.query += "#/entity/FTOS_CLAIM_SelfFirstNotification/edit/newEntry/form/SelfFirstNotificationOfLoss_B2C/pageno/0";
       }
    else{
                   output.path = "/Main";
                   output.query += "#/userjourney/FTOS_CLAIM_SelfFirstNotification/insert/form/SelfFirstNotificationOfLoss_B2C";
    }
    return output.redirect();
    }
  4. Make sure that the requestHeader is properly set at the end of the proxy.config file: output.requestHeaders.set("B2C", "3YQL1Al7vMmx");.