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

How to format input rec by add single quotes using sort


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

New User


Joined: 21 Jan 2008
Posts: 39
Location: chennai

PostPosted: Sun Apr 06, 2008 4:41 pm
Reply with quote

Hi,

Could anyone help me on this...

I need to format a field from a input file to an output file as follows

input record ( length is 14);

00073330113421
00073330128654

output should be

'00073330113421',
'00073330128654',

that is output field should have single quotes inserted at the beginning as well as at the end along with comma.

I know how to add comma but I am not sure of adding single quotes..

Could you please suggest how to add single quote while writing into output file

Thanks,

Regards,
Ranjith
Back to top
View user's profile Send private message
ranjithmainframe

New User


Joined: 21 Jan 2008
Posts: 39
Location: chennai

PostPosted: Sun Apr 06, 2008 5:01 pm
Reply with quote

Hi,

I got the answer using ICEMAN similar as follows,

SORT FIELDS=COPY
INREC BUILD=(C'''',2:74,14,C'''',17:C',')

Anyway thanks...

But I need to know how to add bracket at the last record nstead of comma along with above solution..

like

'00073330113421',
'00073330128654',
'00073330113455',
'00073330128666')

Thanks,

Regards,
Ranith
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 Apr 07, 2008 2:26 am
Reply with quote

Here's a DFSORT job that will do what you asked for:

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD DSN=...  input file
//SORTOUT DD DSN=&&S1,UNIT=SYSDA,SPACE=(TRK,(1,1)),DISP=(,PASS)
//SYSIN    DD    *
  OPTION COPY
  OUTFIL REMOVECC,NODETAIL,
    BUILD=(80X),
    TRAILER1=('LASTREC,+',COUNT=(TO=ZD))
/*
//S2    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SYMNAMES DD DSN=&&S1,DISP=(OLD,PASS)
//SORTIN DD DSN=...  input file
//SORTOUT DD DSN=...  output file
//SYSIN    DD    *
  OPTION COPY
  INREC IFOUTLEN=17,
    IFTHEN=(WHEN=INIT,
      BUILD=(C'''',2:74,14,C'''',17:C',',18:SEQNUM,8,ZD)),
    IFTHEN=(WHEN=(18,8,ZD,EQ,LASTREC),OVERLAY=(17:C')'))
/*
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 TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Populate last day of the Month in MMD... SYNCSORT 2
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top