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

Lowercase to Uppercase using JCL


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

New User


Joined: 17 Aug 2007
Posts: 5
Location: Trivandrum

PostPosted: Fri Aug 17, 2007 5:33 pm
Reply with quote

I have a source file which contains lower case letters. I want to load

them into output file as uppercase letters. Please suggest the JCL for that
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Fri Aug 17, 2007 5:44 pm
Reply with quote

See this Smart DFSORT Trick Change uppercase to lowercase or lowercase to uppercase.
Back to top
View user's profile Send private message
ayyappareddy

New User


Joined: 17 Aug 2007
Posts: 5
Location: Trivandrum

PostPosted: Fri Aug 17, 2007 6:10 pm
Reply with quote

Thanks Superk for the manual...

Could anyone please provide the solution in simple JCL, like using SORT program...
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Fri Aug 17, 2007 6:17 pm
Reply with quote

ayyappareddy wrote:
Thanks Superk for the manual...

Could anyone please provide the solution in simple JCL, like using SORT program...


JCL does nothing, it is the programs that are executed that do the work!
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Fri Aug 17, 2007 6:22 pm
Reply with quote

See this previous topic then.
Back to top
View user's profile Send private message
ayyappareddy

New User


Joined: 17 Aug 2007
Posts: 5
Location: Trivandrum

PostPosted: Fri Aug 17, 2007 6:26 pm
Reply with quote

Thankyou SuperK.

I was really looking for a simple code like this one...
Back to top
View user's profile Send private message
kgumraj2

New User


Joined: 01 Aug 2007
Posts: 42
Location: Hyderabad

PostPosted: Fri Aug 17, 2007 6:33 pm
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=USZ9997.ICEMEN.INPUT,DISP=SHR   
//SORTOUT DD SYSOUT=*                           
//SYSIN    DD    *                             
    OPTION COPY                                 
    OUTREC BUILD=(1,80,TRAN=LTOU)             
/*       
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 Display in lowercase in dynamic JCL CLIST & REXX 21
No new posts How to display lowercase letters whil... JCL & VSAM 6
No new posts ISPF Function keys uppercase conversion. TSO/ISPF 6
No new posts Can we compare uppercase to lowercase... COBOL Programming 4
No new posts Need to retain the lowercase chars in... COBOL Programming 1
Search our Forums:

Back to Top