Post #1
1 votes
Alex
Reputation
8
Posts: 35
Joined: Jun 15, 2026, 9:20 AM
Posted: Jul 30, 2026, 10:19 AM
Absolute beginner JCL question. I see //JOB, //STEP1 EXEC, //DD everywhere. What is the job of each line?
Absolute beginner JCL question. I see //JOB, //STEP1 EXEC, //DD everywhere. What is the job of each line?
JOB = names the job, accounting, class, etc. One per job.
EXEC = runs a program or PROC. You can have multiple steps.
DD = data definition. Connects a ddname to a dataset, sysout, or * for inline data.
Think: JOB is the envelope, EXEC is "run this", DD is "here are the files."
You must be signed in to reply to this thread