Link to home
Start Free TrialLog in
Avatar of JCW2
JCW2

asked on

Making Sense of it (JCL)

I need to make sense of this task in general.

How do I deal with this issue:

"The sort output data set attributes are incompatible with the
reports written by sort program."

and:

"Modify t07job3 ddname subparameter required to allocate a sort output
data set that is compatible with t07job2 sort execution."
T06CTL1.txt
T07JOB3.txt
T07JOB2.txt
I007.txt
T007.txt
T06JOB1.txt
ASKER CERTIFIED SOLUTION
Avatar of giltjr
giltjr
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JCW2
JCW2

ASKER

sort output:

//USA      DD DSN=&SYSUID..USA.REPORT(USA),DISP=SHR
//VI1      DD DSN=&SYSUID..USA.REPORT(VI1),DISP=SHR
//NY2      DD DSN=&SYSUID..USA.REPORT(NY2),DISP=SHR
//VN       DD DSN=&SYSUID..USA.REPORT(VN),DISP=SHR

Data set attributes:

DSN=&SYSUID..USA.REPORT,        
DISP=(NEW,CATLG,DELETE),        
UNIT=3390,VOL=SER=VPWRKA,      
SPACE=(CYL,(1,1,0)),            
DSNTYPE=LIBRARY,                
DCB=(RECFM=FB,LRECL=81,DSORG=PO)

SYSIN:
//SYSIN    DD DSN=&SYSUID..PART3.DATA(T06CTL1),DISP=SHR

Uses ID.Part3.Data(T06CTL1) with data set disposition SHR; concurrent jobs can share access to it with disposition SHR.
You need to look at the sort parameters in member T06CTL1.
Avatar of JCW2

ASKER

Thank you for your help.