Skip to the content.

Lookup Paths Overview

TABLE OF CONTENTS

  1. What is a lookup path?
  2. Building lookup keys
  3. Multi-step lookup paths
    1. Use fields from the current and previous steps
  4. Constant in a lookup path
  5. Symbol in a lookup path
  6. Effective dates in lookup paths
    1. Effective date using source field
    2. Effective date using run date
    3. Effective date using constant
  7. Define lookup paths
  8. Where to call lookup paths in a view

What is a lookup path?

GenevaERS allows users to combine data, or “lookup” data from different files for selection tests or inclusion in an output. This requires telling GenevaERS which data from the two files to match, the source, and the target. These files typically have different layouts, described by differing GenevaERS logical records, or LRs. GenevaERS requires these source and target relationships to be predefined in a GenevaERS lookup path. The lookup path has a similar function to an SQL “where” clause in a relational database.

Lookup path concept diagram.

A field in record A is a “foreign key” that can access record B where that field is defined as a “primary key”. The field in record A now gives access to all the information in record B. This is a single-step lookup path. A lookup path can be defined with multiple steps. See Multi-step lookup paths for more information on these.

Consider an example: for each sales transaction we need to know the product description.

In this example, use the lookup path LP_SalesProduct.

Lookup path one step diagram.

Note the following:

Building lookup keys

The primary key used to access the target LR can be made up of several components, it is not restricted to the foreign key from the source LR.

The key could include:

Multi-step lookup paths

A lookup can have more than one step that allows access to more logical records in a single lookup path.

In the example below, for each sales transaction we need to know the product category description.

Here we use the lookup path LP_SalesProdCateg.

The steps are as follows:

  1. Use SLR_Prod_code to access the Prod_LR logical record.
  2. Use PLR_Categ_code to access the Categ_LR logical record.

Two step lookup path diagram.

Use fields from the current and previous steps

Each step in a lookup path must have a primary key. The primary key can use:

In the example below, step 2 uses fields from step 1 and 2.

Two step lookup path with composite primary key diagram.

Constant in a lookup path

Each step of a lookup path creates the primary key to a target logical record. That primary key may contain a constant value.

In the example below, lookup path LP_SalesProduct uses a constant. The primary key to Prod_LR consists of “PRD” followed by 5 digits. The lookup path use a constant for the “PRD” and the 5 digits come from field SLR_Prod_code:

Lookup path with key containing a constant diagram.

Symbol in a lookup path

A symbol allows a value to be set in the view when the lookup path is used.

A symbol value has a default value in the lookup path, so you only need to change the symbol for exceptions. If the symbol always uses the default value, then the symbol is effectively a constant.

In this example below a symbol is used to change the first 3 characters of the key, and the remaining 5 characters are taken from the source LR.

“PRD” is default value, and this is changed to “WHL” or “RET” if the product is in the appropriate range of numbers.

The symbol can only be changed from the default value using logic text. See the logic text reference: Lookup paths in logic text.
This means the symbol can only be changed from the default value in:

Note that a lookup path can only be called from logic text in the extract phase.

A symbol always uses the default value in:

To set a symbol to a non-default value in logic text, the syntax requires $ (a dollar sign) before the symbol name. The actual symbol name always starts with a letter.

Lookup path LP_SalesProduct uses a symbol called Prefix which has a default value of “PRD”. In Extract-Phase Column Assignment logic text, the call to LKProduct is different depending on the value of the 5 digits. This is shown below:

Diagram of a lookup path with symbol, and logic text.

Extract-Phase Column Logic text for a column in a view:

IF {SLR_Product_Code} < 50000
    THEN COLUMN = { LP_SalesProduct.PLR_Prod_Desc }
    ELSE IF {SLR_Product_Code} < 60000
        THEN COLUMN = { LP_SalesProduct.PLR_Prod_Desc; $Prefix="WHL" }
        ELSE COLUMN = { LP_SalesProduct.PLR_Prod_Desc; $Prefix="RET" }
    ENDIF
ENDIF   

Notice how the first call to LP_SalesProduct does not give a value for symbol Prefix so the default value of “PRD” applies.

Effective dates in lookup paths

An effective date lookup means the lookup finds a target logical record with the correct key and the correct date.

Changes in reference data can be maintained to allow for the recreation of reports as of a point in time. This can be done in individual views or a view might include multiple “as of” dates.

Lookup path with effective date diagram.

An effective date lookup needs the following:

Effective date using source field

Lookup path with effective date from source LR.

Effective date using run date

Lookup path with effective date from run date.

Effective date using constant

The “given” date is a constant date value given in a view or logic text. A constant date value is specified as follows:

Lookup path with effective date from run date.

Define lookup paths

Lookup paths are defined using metadata in the GenevaERS Workbench. Go to Create Lookup Paths for detailed information on how to do this.

Where to call lookup paths in a view

You can call a lookup path from four locations: