TDM Implementation - Supporting Different System Versions

During a project's lifecycle, there may be several versions of the data source structure and relevant software. As a result, TDM may need to support several different source and target systems, each having several different versions of the data source structures. For example, a development environment may have new tables and fields, as opposed to the production environment. These changes require updates of the TDM implementation.

This article describes the working procedure for such updates of the TDM implementation to support changes in the source and target systems. They include updates of TDM Globals of System (product) Versions, updates of LU Schemas and updates of Broadway Load Flows.

TDM Globals of System Versions

A TDM System represents a system or an application installed in a source or target environment. The list of possible system versions must be set on each TDM System. When adding a TDM System to a TDM environment in the TDM Portal, the system version must be set in the environment.

The TDM Execution Process sets the following Globals imported from the TDM Library for each LU. The system versions are based on the system's version of the task's environments:

  • TDM_SOURCE_PRODUCT_VERSION - populated by the system's version of the task's source environment.

  • TDM_TARGET_PRODUCT_VERSION - populated by the system's version of the task's target environment.

The TDM implementation can get the values of these Globals in order to check the source and target system version of each execution.

Note that the TDM_SOURCE_PRODUCT_VERSION is set to synthetic on data generation tasks.

Update LU Schema

The data source of the LU Schema might have been updated, and consequently requires editing of the LU Schema. When doing so, the following notes and caveats must be taken into account:

Adding or Removing LU Tables

Adding or removing LU tables to/from the LU Schema must be implemented manually.

Adding New Columns to an LU Table

The new columns can be added either manually or by clicking the Update Tables from Database green icon in the LU Schema window.

Removing Columns From an LU table

Removing columns from an LU table must be implemented manually.

Support of Multiple System Versions

It is a possibility that new columns or new tables have been added to a table by a more recent system version.

Examples:

  • Adding a new table, PAYMENT_DETAILS, to the Development environment. This table did not exist in the Production environment.

  • Adding the PAYMENT_METHOD column to the PAYMENT table in the Development environment. This column did not exist in the PAYMENT table of the Production environment.

The addition of both new LU tables and new columns to an LU table is described in more detail below:

#### Adding a New LU Table

Add a decision function to check the TDM_SOURCE_PRODUCT_VERSION Global. The decision function returns a true value if the table exists in the source environment. The source environment version is taken from TDM_SOURCE_PRODUCT_VERSION Global.

The following is one example of a source code to implement this:

String luName = getLuType().luName;
String tdmSourceProdVersion = "" + ludb().fetch("SET " + luName + ".TDM_SOURCE_PRODUCT_VERSION").firstValue();

Boolean decision = false; 
if(tdmSourceProdVersion.equals("1.5") || tdmSourceProdVersion.equals("2") || tdmSourceProdVersion.equals("synthetic")
{
    decision = true;
}

#### Adding New Columns to an LU Table

  • Define multiple populations in the LU table. Each population must run on its source environment. The source environment version is taken from TDM_SOURCE_PRODUCT_VERSION Global. Note that new columns can be selected by the query only when they already exist in the source environment.

    Example:

    Add a PAYMENT_METHOD column to the PAYMENT table in the Development environment. This table did not exist in the Production environment.

    In this case, we create 2 table populations.

    Examples:

    LU Populations are based on Broadway flows:

    1. Production table population, which runs when the TDM_SOURCE_PRODUCT_VERSION Global is PROD. This population does not select the PAYMENT_METHOD from the source and leaves the PAYMENT_METHOD empty. The 1st stages of the flow check the TDM_SOURCE_PRODUCT_VERSION and run the next stages only if the TDM_SOURCE_PRODUCT_VERSION Global is PROD:

      prod population

    2. Production table population, which runs when the TDM_SOURCE_PRODUCT_VERSION Global is DEV. This population selects the PAYMENT_METHOD from the source and populates it in the LU table. The 1st stages of the flow check the TDM_SOURCE_PRODUCT_VERSION and run the next stages only if the TDM_SOURCE_PRODUCT_VERSION Global is DEV:

      prod population

    LU Populations are based on DB Queries:

    1. Production table population, which runs when the TDM_SOURCE_PRODUCT_VERSION Global is PROD. This population does not select the PAYMENT_METHOD from the source and leaves the PAYMENT_METHOD empty:

      prod population

      We add a new decision function: fnDecisionProductionProductVersion to the Production population:

       String luName = getLuType().luName;
       String tdmSourceProdVersion = "" + ludb().fetch("SET " + luName + ".TDM_SOURCE_PRODUCT_VERSION").firstValue();
      
       Boolean decision = false;
      
       if(tdmSourceProdVersion.equals(PRODUCTION_PRODUCT_VERSION))
       {
           decision = true;
       }
       return decision;
      
    2. Development table population, which runs when TDM_SOURCE_PRODUCT_VERSION Global is DEV. This population selects the PAYMENT_METHOD from the source and populates the PAYMENT_METHOD column of the LU table:

      dev population

      We add a new decision function: fnDecisionDevProductVersion to the Development population:

       String luName = getLuType().luName;
      
       String tdmSourceProdVersion = "" + ludb().fetch("SET " + luName + ".TDM_SOURCE_PRODUCT_VERSION").firstValue();
      
       Boolean decision = false; 
       if(tdmSourceProdVersion.equals(DEVELOPMENT_PRODUCT_VERSION))
       {
           decision = true;
       }
       return decision;
      
  • Notes:

    • It is recommended to create the project's functions in a separate Logic File and to avoid adding them to the TDM Logic file because the TDM Logic File already contains the TDM product functions.

    • It is recommended to populate the maximum number of LU tables and fields for the synthetic data generation (the TDM_SOURCE_PRODUCT_VERSION Global is populated with "synthetic"). Irrelevant tables or fields will be filtered out by the load flows, based on the target environment's System version.

  • -

Update Broadway Load Flows

  • New table or new table's columns must be loaded to the target environment only if they exist in the target environment.

  • The target environment version is taken from TDM_TARGET_PRODUCT_VERSION Global.

Example:

  • Here, we populate the PAYMENT_METHOD column of the PAYMENT table only when loading the data to a Development target environment. Set a default value in the PAYMENT_METHOD if the source environment does not have this column:

    Broadway example

Previous

TDM Implementation - Supporting Different System Versions

During a project's lifecycle, there may be several versions of the data source structure and relevant software. As a result, TDM may need to support several different source and target systems, each having several different versions of the data source structures. For example, a development environment may have new tables and fields, as opposed to the production environment. These changes require updates of the TDM implementation.

This article describes the working procedure for such updates of the TDM implementation to support changes in the source and target systems. They include updates of TDM Globals of System (product) Versions, updates of LU Schemas and updates of Broadway Load Flows.

TDM Globals of System Versions

A TDM System represents a system or an application installed in a source or target environment. The list of possible system versions must be set on each TDM System. When adding a TDM System to a TDM environment in the TDM Portal, the system version must be set in the environment.

The TDM Execution Process sets the following Globals imported from the TDM Library for each LU. The system versions are based on the system's version of the task's environments:

  • TDM_SOURCE_PRODUCT_VERSION - populated by the system's version of the task's source environment.

  • TDM_TARGET_PRODUCT_VERSION - populated by the system's version of the task's target environment.

The TDM implementation can get the values of these Globals in order to check the source and target system version of each execution.

Note that the TDM_SOURCE_PRODUCT_VERSION is set to synthetic on data generation tasks.

Update LU Schema

The data source of the LU Schema might have been updated, and consequently requires editing of the LU Schema. When doing so, the following notes and caveats must be taken into account:

Adding or Removing LU Tables

Adding or removing LU tables to/from the LU Schema must be implemented manually.

Adding New Columns to an LU Table

The new columns can be added either manually or by clicking the Update Tables from Database green icon in the LU Schema window.

Removing Columns From an LU table

Removing columns from an LU table must be implemented manually.

Support of Multiple System Versions

It is a possibility that new columns or new tables have been added to a table by a more recent system version.

Examples:

  • Adding a new table, PAYMENT_DETAILS, to the Development environment. This table did not exist in the Production environment.

  • Adding the PAYMENT_METHOD column to the PAYMENT table in the Development environment. This column did not exist in the PAYMENT table of the Production environment.

The addition of both new LU tables and new columns to an LU table is described in more detail below:

#### Adding a New LU Table

Add a decision function to check the TDM_SOURCE_PRODUCT_VERSION Global. The decision function returns a true value if the table exists in the source environment. The source environment version is taken from TDM_SOURCE_PRODUCT_VERSION Global.

The following is one example of a source code to implement this:

String luName = getLuType().luName;
String tdmSourceProdVersion = "" + ludb().fetch("SET " + luName + ".TDM_SOURCE_PRODUCT_VERSION").firstValue();

Boolean decision = false; 
if(tdmSourceProdVersion.equals("1.5") || tdmSourceProdVersion.equals("2") || tdmSourceProdVersion.equals("synthetic")
{
    decision = true;
}

#### Adding New Columns to an LU Table

  • Define multiple populations in the LU table. Each population must run on its source environment. The source environment version is taken from TDM_SOURCE_PRODUCT_VERSION Global. Note that new columns can be selected by the query only when they already exist in the source environment.

    Example:

    Add a PAYMENT_METHOD column to the PAYMENT table in the Development environment. This table did not exist in the Production environment.

    In this case, we create 2 table populations.

    Examples:

    LU Populations are based on Broadway flows:

    1. Production table population, which runs when the TDM_SOURCE_PRODUCT_VERSION Global is PROD. This population does not select the PAYMENT_METHOD from the source and leaves the PAYMENT_METHOD empty. The 1st stages of the flow check the TDM_SOURCE_PRODUCT_VERSION and run the next stages only if the TDM_SOURCE_PRODUCT_VERSION Global is PROD:

      prod population

    2. Production table population, which runs when the TDM_SOURCE_PRODUCT_VERSION Global is DEV. This population selects the PAYMENT_METHOD from the source and populates it in the LU table. The 1st stages of the flow check the TDM_SOURCE_PRODUCT_VERSION and run the next stages only if the TDM_SOURCE_PRODUCT_VERSION Global is DEV:

      prod population

    LU Populations are based on DB Queries:

    1. Production table population, which runs when the TDM_SOURCE_PRODUCT_VERSION Global is PROD. This population does not select the PAYMENT_METHOD from the source and leaves the PAYMENT_METHOD empty:

      prod population

      We add a new decision function: fnDecisionProductionProductVersion to the Production population:

       String luName = getLuType().luName;
       String tdmSourceProdVersion = "" + ludb().fetch("SET " + luName + ".TDM_SOURCE_PRODUCT_VERSION").firstValue();
      
       Boolean decision = false;
      
       if(tdmSourceProdVersion.equals(PRODUCTION_PRODUCT_VERSION))
       {
           decision = true;
       }
       return decision;
      
    2. Development table population, which runs when TDM_SOURCE_PRODUCT_VERSION Global is DEV. This population selects the PAYMENT_METHOD from the source and populates the PAYMENT_METHOD column of the LU table:

      dev population

      We add a new decision function: fnDecisionDevProductVersion to the Development population:

       String luName = getLuType().luName;
      
       String tdmSourceProdVersion = "" + ludb().fetch("SET " + luName + ".TDM_SOURCE_PRODUCT_VERSION").firstValue();
      
       Boolean decision = false; 
       if(tdmSourceProdVersion.equals(DEVELOPMENT_PRODUCT_VERSION))
       {
           decision = true;
       }
       return decision;
      
  • Notes:

    • It is recommended to create the project's functions in a separate Logic File and to avoid adding them to the TDM Logic file because the TDM Logic File already contains the TDM product functions.

    • It is recommended to populate the maximum number of LU tables and fields for the synthetic data generation (the TDM_SOURCE_PRODUCT_VERSION Global is populated with "synthetic"). Irrelevant tables or fields will be filtered out by the load flows, based on the target environment's System version.

  • -

Update Broadway Load Flows

  • New table or new table's columns must be loaded to the target environment only if they exist in the target environment.

  • The target environment version is taken from TDM_TARGET_PRODUCT_VERSION Global.

Example:

  • Here, we populate the PAYMENT_METHOD column of the PAYMENT table only when loading the data to a Development target environment. Set a default value in the PAYMENT_METHOD if the source environment does not have this column:

    Broadway example

Previous