SELECT and SELECTIF in Extract-Phase Record Filters
TABLE OF CONTENTS
- How do I use SELECT and SELECTIF in ERF?
- Syntax
- Rules for the syntax
- Examples: SELECTIF in Extract Record Filter
How do I use SELECT and SELECTIF in ERF?
In this logic text, SELECT or SELECTIF define the input records to be included in the extract phase.
If there are no SELECT, SELECTIF, SKIP or SKIPIF statements in Extract Record Filter, then all input records are selected.
The idea is that you either SELECT or SKIP but you cannot do both in the same logic text. Once you have selected records then all others are skipped. Alternatively, once you skip records then all others are selected.
SELECTIF defines the input records to select based on a condition.
SELECT must always be inside an IF statement, in a THEN or ELSE case. The path through the IF statement decides which records reach the SELECT statement.
Extract Record Filter can have one SELECTIF or one IF that contains one or more SELECT statements. Once either of these is present, no SKIP or SKIPIF statements are allowed.
The syntax details of a SELECT and SELECTIF statements in Extract Record Filter are shown below.
Syntax
Rules for the syntax
Extract Record Filter can have one SELECTIF statement or one IF statement that contains one or more SELECT statements. When one SELECTIF or SELECT is present, then no SKIP or SKIPIF statements are allowed.
One IF statement can have a SELECT for the THEN or ELSE case. One IF statement can have other IF statements nested inside, which may also have SELECT statements inside. All this counts as one IF statement.
The best way to learn is the examples below. See also the examples in IF Statements in Extract Record Filter.
See also topic: Rules for all Logic Text
Examples: SELECTIF in Extract Record Filter
Example logic text | Meaning |
---|---|
SELECTIF(CURRENT({field1}) PRIOR({field1})) |
Select only records with unique values for field1. This assumes the input file is sorted into field1 order. |
SELECTIF({field2} > 1000) | Select for output only those records with field2 greater than 1000. Skip all other records. The code at left is a shorthand for: IF {field2} > 1000 THEN SELECT ENDIF |
SELECTIF({field3} = “ABC”) | Select for output only those records with field3 equal to “ABC”. Skip all other records. |
SELECTIF(NOT({field3} = “ABC”) | Select those output records with field3 not equal to “ABC”. Skip all other records. This example gives the same result as: SKIPIF({field3} = “ABC”) |
SELECTIF({field3} = “A” OR {field3} = “D”) |
Select for output only those records with field3 equal to “A” or “D”. Skip all other records. |
SELECTIF({field3} = “A” AND {field4} > 10) |
Select for output only those records with field3 equal to “A” and field4 greater than 10. Skip all other records. |
SELECTIF{field4} + {field5} > {field6}) |
Select for output only those records with field4 plus field5 is greater than field6. Skip all other records. |
SELECTIF(NOT {field7} = ALL(“-“)) | Select for output those records with field7 is not equal to all dashes. Skip all other records. This example gives the same result as: SKIPIF({field7} = ALL(“-“)) |
SELECTIF(NOT {field7} = REPEAT(“-“, 13)) |
Select for output those records with field7 is not equal to 13 dashes. Skip all other records. This example gives the same result as: SKIPIF({field7} = REPEAT(“-“, 13)) |
SELECTIF(NOT {field7} = “\xFF”) | Select for output those records with field7 is not equal to hexadecimal FF. Skip all other records. This example gives the same result as: SKIPIF({field7} = “\xFF”) |
SELECTIF(ISFOUND({Lookup1})) | Select all input records where the lookup path Lookup1 successfully finds a target record, and skip all other records. |
SELECTIF(ISFOUND({Lookup1,field7})) | Select all input records where the lookup path Lookup1 successfully finds a target record using effective date of field7, and skip all other records. |
SELECTIF(ISFOUND({Lookup1;$SYM=”A”})) | Select all input records where the lookup path Lookup1 successfully finds a target record using symbol SYM set to “A”, and skip all other records. |
SELECTIF(ISFOUND({Lookup1, field7;$SYM1=3,$SYM2=0})) |
Select all input records where the lookup path Lookup1 successfully finds a target record using effective date of field7 and symbol SYM1 set to 3 and symbol SYM2 set to zero. Skip all other records. |
SELECTIF(ISNOTNULL({field1})) | Select all input records where field1 does not contain null values, and skip all other records. |
SELECTIF(ISNUMERIC({field2})) | Select all input records where field2 is numeric, and skip all other records. |
SELECTIF(ISNOTSPACES({field3})) | Select all input records where field3 is not spaces, and skip all other records. |
SELECTIF(DAYSBETWEEN({field1},{field2}) > 7) |
Select only records where there are more than 7 days between field1 and field2, and skip all other records. |
SELECTIF({field1} BEGINS_WITH “BBB”) | Select input records where field1 begins with characters “BBB”, and skip all other records. |
SELECTIF({field2} CONTAINS “CCC”) | Select input records where field2 contains characters “CCC”, and skip all other records. |
SELECTIF({field3} ENDS_WITH “EEE”) | Select input records where field3 ends with characters “EEE”, and skip all other records. |