Previous Topic: Step 1Next Topic: DD Statement Information


Parameters

Use the parameters listed following to control the execution of step 1 of the import job, as shown following.

The formats and the definitions with/without quotes are mandatory.

Parameter

Format

Description

ERRLIM

1 to 7 characters, a number between 0 and 9999999, or keyword ALL

definition of an error toleration limit

With this parameter, you can define if and how many input records with errors should be tolerated and skipped from the import before the job has to end because of the input errors.

MSGLIM

1 to 7 characters, a number between 0 and 9999999, or keyword ALL

definition of the maximum number of warning messages to be issued

With this parameter, you can define how many warning messages that refer to input record errors should be written to the job log.

//******************************************************************** //* INITIALIZE PARAMETERS FOR IMPORT FAILURE TOLERATION //******************************************************************** //* //* ERROR LIMIT: NUMBER OF ERRORNOUS INPUT LINES TO TOLERATE UNTIL //* JOB HAS TO BE STOPPED. //* NOTE: ERRORNOUS LINES WILL BE SKIPPED. //* YOU CAN DEFINE A VALUE BETWEEN 0 AND 9999999 OR ALL TO //* IGNORE ALL INPUT LINES WITH ERRORNOUS DATA // SET ERRLIM='0' //*SET ERRLIM='ALL' //* JOB LOG. IF THIS NUMBER IS EXCEEDED, NO FURTHER //* WARNING MESSAGE IS CREATED. IMPORT PROCESSING IS //* CONTINUED. //* YOU CAN DEFINE A VALUE BETWEEN 0 AND 9999999 OR ALL TO //* WRITE ALL WARNING MESSAGES TO THE JOB LOG. // SET MSGLIM='1000' //*SET MSGLIM='ALL' //* //********************************************************************