Function PRIOR
TABLE OF CONTENTS
- How do I use PRIOR?
- Syntax
- Rules for the syntax
- Examples: PRIOR and CURRENT functions in ERF
- Examples: PRIOR and CURRENT functions in ECL
How do I use PRIOR?
PRIOR means the previous source record. For any source record, you can compare the current value of a field with the value in the previous record.
PRIOR is typed before the name of the field, for example:
PRIOR {product_code}
If you type
{product_code}
then this means the value in the current record.
If you use PRIOR, it is recommended you put CURRENT in front of all fields that refer to the current source record. As mentioned, this is not necessary - it is recommended because it makes the logic text much easier to understand. For example:
IF ((CURRENT {product_code} = PRIOR {product_code}) THEN
Notice how CURRENT makes the meaning very clear, even though if you omit the word CURRENT then the logic text works the same way. Normally, CURRENT is used only when a statement contains PRIOR.
CURRENT and PRIOR can only be used in Extract Record Filter (ERF) and Extract Column Logic (ECL) text.
Syntax
Rules for the syntax
PRIOR can only be used in Extract Record Filter (ERF) and Extract Column Logic (ECL) text.
See also topic: Rules for all Logic Text
Examples: PRIOR and CURRENT functions in ERF
Example logic text | Meaning |
---|---|
IF (CURRENT({field1}) <> PRIOR({field1})) THEN SELECT ENDIF |
Select only records with unique values for field1. This assumes the input file is sorted into field1 order. This example can also be written: SELECTIF(CURRENT({field1}) <> PRIOR({field1})) |
Examples: PRIOR and CURRENT functions in ECL
Example logic text | Meaning |
---|---|
IF (CURRENT({field2}) <> PRIOR({field2})) THEN COLUMN = “PRODUCT: “ ELSE COLUMN = “ “ ENDIF |
If the current record has a different value of field2 from the previous record, set the current column to “PRODUCT: ” otherwise set the current column to blank. This assumes the input file is sorted into field2 order. |