Skip to the content.

Function RUNYEAR

TABLE OF CONTENTS

  1. What is RUNYEAR?
  2. How do I use RUNYEAR?
  3. Syntax
  4. Rules for the syntax
  5. Examples: RUNYEAR function in ERF
  6. Examples: RUNYEAR function in ECL

What is RUNYEAR?

The RUNYEAR function is dependent on the run date, or execution date of the GenevaERS extract job. The default run date is the date when the extract job is run. You can override the run date with the extract job parameter RUN_DATE, to make the job appear to run on a different date.

See GVBMR95 parameters.

All views in the extract job batch use the same run date.

RUNYEAR returns a CCYY format date based on the run date, plus or minus the number of years specified in the parameter.

How do I use RUNYEAR?

The parameter for RUNYEAR is a number of years to add or subtract from the default RUNYEAR. For example, RUNYEAR(-5) provides a date five years before the date the view is run.

RUNYEAR can only be used in Extract-Phase Logic.

(Syntax Legend)

Syntax

Function RUNYEAR 1

Rules for the syntax

RUNYEAR can only be used in Extract Record Filter (ERF) and Extract Column Logic (ECL) text.

See also topic: Rules for all Logic Text

Examples: RUNYEAR function in ERF

Example logic text Meaning
IF ({field4} = RUNYEAR(-1))
    THEN SELECT
ENDIF
Select any input records where field4 is the previous year,
and skip all other records.
The example at left assumes that field4 is a year number.
The code at left can also be written as:
    SELECTIF({field4} = RUNYEAR(-1))

Examples: RUNYEAR function in ECL

Example logic text Meaning
COLUMN = RUNYEAR() Set current column to the current year number.