IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

S0C 7 from SORT command


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
raman.k

New User


Joined: 26 Feb 2007
Posts: 24
Location: chennai

PostPosted: Mon Sep 03, 2007 7:21 pm
Reply with quote

Hi Every body
the following codine it shown S0C 7 error. how to resolve why it was came
Please advise me

Code:

//STEP1 EXEC PGM=SORT                               
//SYSOUT   DD SYSOUT=*                     
//SORTIN DD DSN=mov123.PS.COBOL,DISP=SHR                             
//SORTOUT DD DSN=mov123.PS.SSTO,DISP=(MOD,CATLG,DELETE),             
//           SPACE=(CYL,(1,2),RLSE,MXIG),UNIT=SYSDA
//SYSIN DD *                                                         
  SORT FIELDS=(1,8,CH,A)                                               
  SUM FIELDS=(10,3,PD)                                                 
/*                                                                   
//
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 2146
Location: At my coffee table

PostPosted: Mon Sep 03, 2007 7:27 pm
Reply with quote

Simple, find the non-numeric value in the SUM FIELDS=(10,3,PD).......
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Mon Sep 03, 2007 9:56 pm
Reply with quote

Here's a DFSORT/ICETOOL job that will identify the invalid PD value(s) in TOOLMSG:

Code:

//S1    EXEC  PGM=ICETOOL                             
//TOOLMSG   DD  SYSOUT=*                             
//DFSMSG    DD  SYSOUT=*                             
//IN DD DSN=...  input file     
//TOOLIN DD *                                         
VERIFY FROM(IN) ON(10,3,PD)                           
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Mon Sep 03, 2007 11:14 pm
Reply with quote

The OP has a Variable length output, probably input. since he was sorting on the RDW (or RWD or what ever) he probably is off by 4 on his PD field. 14,3,PD
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts RACF - Rebuild SETROPTS command which... All Other Mainframe Topics 3
No new posts Routing command Address SDSF to other... TSO/ISPF 2
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts DTL - how to define key with stacked ... TSO/ISPF 3
Search our Forums:

Back to Top