Hi everyone, I'm new to mainframe so some of my question my pretty dummy, please forgive.
I have a task to write a JCL job invoking ICETOOL/DFSORT to generate a report. The report takes a VSAM KSDS as input and generates a list of bank branches.
Each record in the BRANCHES KSDS is of the form
• 4-byte binary unsigned integer representing a 6-digit decimal branch sortcode (e.g. 420101)
• 1-byte EBCDIC flag:
◦ EBCDIC 'A' means the branch is owned by ZeusBank and all its accounts are held in the
ACCOUNTS KSDS
◦ EBCDIC 'B' means the branch is not owned by ZeusBank so we do not hold its account
information in the ACCOUNTS KSDS
• 32-byte EBCDIC character branch name (e.g. “ZEUSBANK FOOFORD BAR STREET” or
“OTHERBANK QUUXHAM BAZ ROAD”), blank padded on the right.
Since I'm completely new to mainframe programming, can anyone guide me step by step to do this task. For now I'm struggling to create a JCL job in my PDS. Does the JCL have to be inside the PDS? Thanks, appreciate any help