Specifies that records are to be omitted from the output file based on a condition defined with a /CONDITION qualifier. Format /OMIT=(CONDITION=condition-name)
1 – Qualifier Value
CONDITION=condition-name Refers to the condition-name previously specified in a /CONDITION qualifier.
2 – Full Description
You can specify that records are to be omitted from the output file by using the /OMIT qualifier. First, you must define a condition with the /CONDITION qualifier. Specify your record selection with an /OMIT qualifier requesting the records satisfying that condition be selected for omission from your sort. By default, Sort/Merge includes all the other input records in the output file. You can specify multiple /OMIT and /INCLUDE qualifiers in your specification file. The order you specify them determines the order the input records are tested for omission. All the records that have not already been included or omitted after the last /OMIT qualifier are included. You can unconditionally omit any records not previously omitted or included by specifying the /OMIT qualifier only.
3 – Example
/FIELD=(NAME=ZIP,POSITION:20,SIZE:6) /CONDITION=(NAME=LOCATION, TEST=(ZIP EQ "01863")) /OMIT=(CONDITION=LOCATION) These /CONDITION and /OMIT qualifiers specify that records with the zip code 01863 are to be omitted from your output file.