3.1 Pre-Requisites

This topic provides systematic instructions for pre-requisites.

  1. Before applying the patch-set, we have to make sure the release is updates with the base version of the patch-set.
    For Example, If the first patch-set of 14.2 is yet to applied, the release has to be updated as ’14.2.0.0.0’. It can be verified with the below queries.

    select param_name, param_val from CSTB_PARAM WHERE PARAM_NAME = 'RELEASE';

    select module_group_id, release from SMTB_MODULES_GROUP;

  2. Another significant parameter is the values of application name and deployment type in CSTB_PARAM.
    This value will be updated from the installer during Approot Object Conversion utility as part of deployment.

    select param_name, param_val from cstb_param where PARAM_NAME in ('MULTI_TENANT_APP_NAME','MULTI_TENANT_DEPLOYMENT_MODEL');

    The Application name of multi-tenant deployment will be stored in CSTB_PARAM as
    Param_Name Param_Val
    MULTI_TENANT_APP_NAME OBTF

    The type of object conversion will be stored in CSTB_PARAM as

    Param_Name Param_Val
    MULTI_TENANT_DEPLOYMENT_MODEL SA (or) SAUA (or) SASDD (or) SASDC

    SA  Shared Application
    SAUA  Shared Application User Authentication
    SASDD  Shared Application Shared Data - Default
    SASDC  Shared Application Shared Data – Custom

(Optional) Enter the result of the procedure here.