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

Is it possible to Left Pad a field with ZEROS using SORT?


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
harsha puthraya

New User


Joined: 29 Oct 2008
Posts: 8
Location: Bangalore

PostPosted: Fri Jun 26, 2009 1:08 pm
Reply with quote

Hi,
Is it possible to Left Pad a field with ZEROS using SORT?

My requirement is as below

MY INPUT

Code:

NAME   MARKS
============
DANNY     55
TOM       60
MICK       6
HARSHA    30
VARUN     50


EXPECTED OUTPUT

Code:

NAME   MARKS
============
DANNY    055
TOM      060
MICK     006
HARSHA   030
VARUN    050


Can you please help me with it?

Thanks!
Harsha
Back to top
View user's profile Send private message
Escapa

Senior Member


Joined: 16 Feb 2007
Posts: 1399
Location: IL, USA

PostPosted: Fri Jun 26, 2009 1:36 pm
Reply with quote

Below step will give you desired result...

Code:

//S1    EXEC  PGM=ICEMAN                 
//SYSOUT    DD  SYSOUT=*                 
//SORTIN DD *                           
DANNY 55                                 
TOM   60                                 
MICK  6                                 
HARSHA30                                 
VARUN 50                                 
VARUN 125                               
/*                                       
//SORTOUT DD SYSOUT=*                   
//SYSIN    DD    *                       
  OPTION COPY                           
  INREC OVERLAY=(7:7,3,UFF,EDIT=(TTT))   
/*                                       

Output will be

Code:

DANNY 055
TOM   060
MICK  006
HARSHA030
VARUN 050
VARUN 125
Back to top
View user's profile Send private message
harsha puthraya

New User


Joined: 29 Oct 2008
Posts: 8
Location: Bangalore

PostPosted: Fri Jun 26, 2009 5:21 pm
Reply with quote

Thanks a lot for your suggestion!!

Regards
Harsha
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
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 Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top