Writing required JCL statements

An ICETOOL job consists of:
  1. The JCL statements that are required for every ICETOOL job.
  2. The operator statements indicating the operations to be performed by the ICETOOL job.
  3. The JCL statements that are required as a result of the specified operator statements.

The first step in creating any ICETOOL job is to write the JCL that is always required. Here is a skeleton of the JCL for an ICETOOL job:

//EXAMP    JOB   A492,PROGRAMMER
//TOOL     EXEC  PGM=ICETOOL
//TOOLMSG  DD    SYSOUT=A
//DFSMSG   DD    SYSOUT=A
//TOOLIN   DD    *
  <ICETOOL statements go here>
/*
<Additional JCL statements go here>