Home      Mainframe Forum      Mainfarme Tutorials      IBM Manuals      Mainframe Interview Questions      Mainframe Books      IT News     SiteMap     Downloads


     
 
MAINFRAME - TIP OF THE DAY : programming pearls - The fastest algorithm can frequently be replaced by one that is almost as fast and much easier to understand.

Google
 
Web mainframegurukul.com

Welcome to the mainframegurukul forums.

You are currently viewing our mainframe forums as a guest which gives you limited access to view most discussions, articles. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support at admin@mainframegurukul.com


Sumup of the fields in sort

 
Post new topic   Reply to topic    mainframegurukul.com Forum Index -> DFSORT , ICETOOL & Utilities
  View previous topic :: View next topic  
Author Message
Cruise
Guest





PostPosted: Fri Apr 21, 2006 8:05 pm    Post subject: Sumup of the fields in sort Reply with quote

hi,
please let me know...
in sort sumup will the truncatation will happen???

i have input file which contains 10 fields with 10 records.
i want the the output file with summed up the five amount fileds and control on five fields. when ever any change in the first five fields i wnat the sum for alll the similar records.
when it is summing up is there any truncation will happen in the oputput file or not.


bye,
Cruise.
Back to top

Frank Yaeger
Moderator


Joined: 18 Feb 2006
Posts: 487
Location: San Jose, CA

PostPosted: Fri Apr 21, 2006 10:19 pm    Post subject: Reply with quote

Let me explain by example. When you use DFSORT statements like this:

Code:

  SORT FIELDS=(6,3,CH,A)
  SUM FIELDS=(1,5,ZD)


for input records like this:

Code:

12345AAA
35218AAA
71234AAA


the first two records will be summed, but since the third record would cause the sum to overflow (that is, be greater than the 5 digits allowed for it), you will get an overflow message and the third record will be kept as is. So your output will be:

Code:

4756CAAA   
71234AAA   


You can use OVFLO=RC0, OVFLO=RC4 or OVFLO=RC16 to control what happens when you get an overflow. Overflow does not cause the values to be truncated, but it does cause values not to be summed.

You can avoid an overflow by using INREC to add zeros in front of the field to increase it's length.

If that doesn't answer your question, then please provide more details about what you want to know, preferably with examples.
_________________
Frank Yaeger - DFSORT Development Team (IBM) - yaeger@us.ibm.com
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
=> DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Cruise
Guest





PostPosted: Mon Apr 24, 2006 6:01 pm    Post subject: Sumup of the fields in sort Reply with quote

Hi Frank,
Thanks for the reply.

i have one more doubt.
let me explain my problem with example.

i have input file with
SSN X(9)
AMOUNT S9(9) COMP-3

i want output file with sumup of the amount for the same SSN. and i want the all the records sum in one file.
so please tell me how to give the sort card


INREC = ????
SORT FIELDS = (1,9,CH,A)
SUM FIELDS=(10,5,PD)

regards,

Cruise
Back to top
Frank Yaeger
Moderator


Joined: 18 Feb 2006
Posts: 487
Location: San Jose, CA

PostPosted: Mon Apr 24, 2006 9:34 pm    Post subject: Reply with quote

Those are the correct control statements if your sum won't exceed 9 digits. If you're worried about your sum exceeding 9 digits, you can use these controls statements to add 2 extra digits of zeros at the start of the sum field to extend it from 5 bytes (max of 9 digits) to 6 bytes (max of 11 digits):

Code:

   INREC FIELDS=(1,9,10:X'00',11:10,5)
   SORT FIELDS=(1,9,CH,A)
   SUM FIELDS=(10,6,PD)


If you need even more digits, extend the PD values with more X'00' bytes in front.
_________________
Frank Yaeger - DFSORT Development Team (IBM) - yaeger@us.ibm.com
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
=> DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Cruise
Guest





PostPosted: Tue Apr 25, 2006 7:06 pm    Post subject: Sumup of the fields in sort Reply with quote

Hi Frank,

Thank you very much..


Regards,
Cruise.
Back to top
Frank Yaeger
Moderator


Joined: 18 Feb 2006
Posts: 487
Location: San Jose, CA

PostPosted: Tue Apr 25, 2006 8:40 pm    Post subject: Reply with quote

Glad I could help.
_________________
Frank Yaeger - DFSORT Development Team (IBM) - yaeger@us.ibm.com
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
=> DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    mainframegurukul.com Forum Index -> DFSORT , ICETOOL & Utilities All times are GMT + 5 Hours
Page 1 of 1



 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Related topics
 Topics   Replies   Author   Views   Last Post 
No new posts patching a file 3 devmain 2981 Sat Jan 30, 2010 6:48 pm
Anuj Dhawan View latest post
No new posts Reg: DDIO file in XPED 4 simha 6591 Wed Nov 26, 2008 1:29 pm
Anuj Dhawan View latest post
No new posts REMOVE HIGH VALUE FROM THE EXTRACT FILE 2 Guest 2884 Fri May 09, 2008 11:04 am
Krishna View latest post
No new posts SELECT clause for Flat / ESDS file. 2 rangab 3465 Sat Mar 22, 2008 1:46 pm
sai View latest post
No new posts SPLIT FILE 3 pkaushi 19741 Thu Feb 23, 2006 1:30 am
pzmohanty View latest post
 



This widget requires Flash Player 9 or better








Go to top of the page
 

Online ABEND Reference ||  JCL References ||  COBOL References ||  VSAM References ||  Tutorials by Drona Series ||  SQL tutorial ||  BOOKS  ||  DB2 INTERVIEW QUESTIONS ||  COBOL INTERVIEW QUESTIONS  ||  JCL INTERVIEW QUESTIONS ||  JCL2 INTERVIEW QUESTIONS ||  VSAM INTERVIEW QUESTIONS ||  CICS INTERVIEW QUESTIONS  ||  Online tutorials ||  Online ABEND Reference ||  JCL References ||  COBOL References ||  VSAM References ||  Tutorials by Drona Series ||  SQL tutorial ||  BOOKS  ||  SiteMap  ||  Expeditor Tutorial  ||  FILE-AID Tutorial  ||  Changeman Tutorial  ||  COBOL   ||  DB2   ||  JCL  ||  CICS  ||  VSAM  ||  DB2 Interview Questions ( 110 )   || Simple JCL Tutorials  || JCL Tutorial from MainframeGurukul.com   || Simple JCL Tutorial - Chapter1 ;|| Mainframe Forum - Tutorials  || Mainframe Tutorials

Drona Educational Forums - Mainframe Cobol DB2 CICS Board
Powered by phpBB