Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Position of Records in Outfile Using Syncsort

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL
Author Message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Thu Aug 28, 2008 11:10 pm    Post subject: Position of Records in Outfile Using Syncsort
Reply with quote

I have a quick question. My output data starts in column 2 and I need it in column 4.



//SORT1 EXEC PGM=SORT
//SORTJNF1 DD DSN=OPSA90.ORSCO.CLIENTSP.DATA(0),DISP=SHR
//SORTJNF2 DD DSN=OPSA90.ORSCO.CLIENTSP.WRKFILE,DISP=SHR
//SORTOF01 DD DSN=OPSA90.ORSCO.CLIENTSP.NOTSENT(+1),
// DISP=(,CATLG),
// UNIT=SYSDA,
// SPACE=(CYL,(90,60),RLSE),
// RECFM=FB,BLKSIZE=27951,LRECL=121
//SYSOUT DD SYSOUT=*
//SYSIN DD *
JOINKEYS FILES=F1,FIELDS=(1,15,A)
JOINKEYS FILES=F2,FIELDS=(1,15,A)
JOIN UNPAIRED,F2,ONLY
SORT FIELDS=COPY
OUTFIL FILES=01,OUTREC=(1,121),REMOVECC,
HEADER1=(' SCO CLIENT ACCOMPANY TAPES - PRIMARYS',45:&DATE),
TRAILER1=(' TOTAL TAPE COUNT: ',COUNT=(M11,LENGTH=4))
Back to top
View user's profile Send private message
References
Moved: Thu Aug 28, 2008 11:16 pm by Frank Yaeger From DFSORT/ICETOOL to JCL
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 1199
Location: At my desk

PostPosted: Fri Aug 29, 2008 12:27 am    Post subject:
Reply with quote

Alter the OUTREC by inserting two blanks before the actual data?
Back to top
View user's profile Send private message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Fri Aug 29, 2008 12:32 am    Post subject:
Reply with quote

I'm sorry CICS Guy, I'm not following. Would you mind showing the syntax?
Thanks
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 1199
Location: At my desk

PostPosted: Fri Aug 29, 2008 12:59 am    Post subject:
Reply with quote

OUTREC=(1:2X,1,121) but your lrecl is now 123.
OUTREC=(1:2X,1,119) your lrecl is now 121 but you lost the last two bytes.
Back to top
View user's profile Send private message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Fri Aug 29, 2008 1:08 am    Post subject:
Reply with quote

That worked great. Thanks CICS Guy! I think this is the second or third time you have helped me out...
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL All times are GMT + 6 Hours
Page 1 of 1