Skip to the content.

WRITE Statements in Extract Record Logic

TABLE OF CONTENTS

  1. How do I use WRITE Statements in ERL?
  2. Syntax
  3. Rules for the syntax
  4. Examples: IF with WRITE in Extract Column Logic

How do I use WRITE Statements in ERL?

The Extract-Phase Record Logic can be used to override the default WRITE statement that is generated in the Extract-Phase Record Logic of a view.

There must be at least one WRITE statement in either the Extract-Phase Record Logic or the Extract-Phase Column Logic. So if the Extract-Phase Record Logic does not contain a WRITE statment, therefore eliminating the default WRITE, there must be at least one WRITE statment in a Column.

A WRITE statement in your ERL logic text allows the following:

Here are some example cases of a WRITE in Extract-Phase Record Logic:

Only the EXTRACT files are processed in the format phase. All other records written in the above choices are written to view output files and not processed any further after the extract phase.

These WRITE options provide great flexibility in view processing.

The syntax details of a WRITE statement in Extract-Phase Record Logic are shown below.

(Syntax Legend)

Syntax

WRITE function for ECL

WRITE function for ECL

WRITE function for ECL

WRITE function for ECL

WRITE function for ECL

WRITE function for ECL

WRITE function for ECL

Rules for the syntax

You can use a WRITE statements in Extract Column Logic and Extract Record Logic

You can have as many WRITE statements as required in your logic text.

See also topic: Rules for all Logic Text

Examples: IF with WRITE in Extract Column Logic

Example logic text           Meaning
IF (ISNUMERIC({field4}) AND
     ({field5} > {field6} * 10) AND
     ISNOTSPACES({field7})) THEN
    WRITE (SOURCE=DATA,
    USEREXIT={DB2_Update})
ENDIF
If field4 is numeric and field5 is greater than field6 times 10 and field7 is not spaces, then call the user-exit routine DB2_Update for the columns up to the current point. This effectively does a writes to a DB2 table the columns in that record up to the current point.
IF (ISNOTNULL({field3}) AND
     ({field2} = {field1} + {field5}) THEN
    WRITE SOURCE=INPUT,  DEST=FILE= {LogicalFile3})
ENDIF
If field3 is not nulls and field2 equals field1 plus field 5 then write the entire input record to LogicalFile3. All columns in the input record are included, no matter what column contains this logic text.
IF (DAYSBETWEEN({field12},{field15}) > 10) AND
    (ISFOUND({Lookup3;$SYM=”A”})) THEN
     WRITE (SOURCE=VIEW, DEST=EXTRACT)
ENDIF
If field12 and field15 are more than 10 days apart, and a record is found for the lookup path Lookup3 with symbol SYM set to “A”, then write the columns up to the current point to the extract work file. The extract work file number is defined on the Extract Phase tab of the view.