- JOB
- EXEC
- DD
You can think JCL as equivalent to a bat file in Windows. In JCL you can execute one step after another in sequence of there occurrence. Consider and example below.
//JOBNAME JOB(acct info).....In the above example as you can see the STEP20 runs first and next STEP10, main thing that you can observe here is name its just for our understanding, mainframe follow the occurrence. If you don't know the syntax don't bother now you'll explore later.
//STEP20 EXEC .....
//STEP10 EXEC .....
At maximum of 255 steps can be executed in a JOB. When you submit your JOB using SUBMIT Command you can see the JOB in SPOOL (to go to spool enter s.st in ISPF main menu)
Still to come here....