JCL statements are coded in 80-byte records. This means that you have to create a PS file or member of a PDS with a record length of 80 to code a JCL.
Out of the 80 character records, only the first 72 characters are used to code the JCL statements.
Every JCL starts with a Job Card.
The JOB Card contains the Job name which identifies the name of the job. The JOB name in most of the cases are unique but it is not necessary to give a unique name.
And JOB card also contains the msgclass, msglevel, accounting details and other parameters which are coded based on the requirement of the JOB.
There are 2 types of parameters used in a JCL – Positional Parameter and Keyword Parameter
There is only one JOB card in a JCL
A JOB card is followed by an EXEC statement which marks the beginning of a step in JCL. This step is used to perform a particular task.
EXEC stands for Execution and there can be one or more EXEC statements in a JCL.
Every EXEC statement contains a set of DD Statements. DD stands for Data Definition which contains the details of the datasets and the data used in the JCL.