I use syncsort in JCL to copy a dataset to another file.
However, I have 3 fields that I don't want copy their values to new file, but just reset their value.
Here is the definition of those 3 fields:
Field-A pic s9(3) comp-3. (want to change the value to 000)
Field-B pic s9(3) comp-3. (want to change the value to 000)
Field-C pic x(1). (want to change the value to space)
field A start at position 2441.
I tried the command CHANGE=(2441,2,PD,000) but it doesn't work.
Please help! Thanks
Newbie to mainframe.