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
 
How can I add fields which have thousand separator ?

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
comp_ashok

New User


Joined: 30 Nov 2007
Posts: 13
Location: India

PostPosted: Wed Sep 17, 2008 10:33 am    Post subject: How can I add fields which have thousand separator ?
Reply with quote

Hi All.

My requirement is jcl to do like this:

input file : fb, lrec=80

2222 60.00
2222 250.00
3333 1,700.00
3333 500.00
7777 100.00

output file: fb, lrec=8

2222 310.00
3333 2,200.00
7777 100.00


If starting 4 bytes are same in input file we have to add next numeric field of 6 bytes having thousand separator and upto 2 point of decimal in the input file and write one record in output file.
Back to top
View user's profile Send private message
References
Skolusu

DFSORT Developer


Joined: 07 Dec 2007
Posts: 357
Location: San Jose

PostPosted: Wed Sep 17, 2008 8:53 pm    Post subject: Reply to: How can I add fields which have thousand separator
Reply with quote

comp_ashok,

You can use DFSORT UFF format to sum up the values. The following JCL will give you desired results

Code:

//STEP0100 EXEC PGM=ICEMAN                 
//SYSOUT   DD SYSOUT=*                     
//SORTIN   DD *                           
2222 60.00                                 
2222 250.00                               
3333 1,700.00                             
3333 500.00                               
7777 100.00                               
//SORTOUT  DD SYSOUT=*                     
//SYSIN    DD *                           
  SORT FIELDS=COPY                         
  OUTFIL REMOVECC,NODETAIL,               
  SECTIONS=(1,4,                           
  TRAILER3=(1,4,X,                         
            TOT=(6,8,UFF,EDIT=(I,IIT.TT))))
/*                                         


Hope this helps...

Cheers
Back to top
View user's profile Send private message
comp_ashok

New User


Joined: 30 Nov 2007
Posts: 13
Location: India

PostPosted: Thu Sep 18, 2008 9:22 am    Post subject: Reply to: How can I add fields which have thousand separator
Reply with quote

Thanks Skolusu

yes, It worked fine. But, please tell me meaning of SECTION and TRAILER in the SYSIN card.
Back to top
View user's profile Send private message
Skolusu

DFSORT Developer


Joined: 07 Dec 2007
Posts: 357
Location: San Jose

PostPosted: Thu Sep 18, 2008 9:49 pm    Post subject:
Reply with quote

comp_ashok,

You might want to go through "z/OS DFSORT: Getting Started" It's an excellent tutorial, with lots of examples, that will show you how to use DFSORT, DFSORT's ICETOOL and DFSORT Symbols.

www.ibm.com/systems/support/storage/software/sort/mvs/srtmpub.html
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1