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
 
JCL : SUM of particular field required from the input file

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

New User


Joined: 15 Sep 2005
Posts: 11

PostPosted: Tue Oct 25, 2005 2:45 pm    Post subject: JCL : SUM of particular field required from the input file
Reply with quote

Hi all,

I am writing a JCL, in which I want to find out the SUM of particular field in a specific OCCURRENCE OF line items(which had a prefix 'LINE') . And it is not giving me the SUM as over flow error is coming in field on which adding is carried out.

Here is sample code which i am using :
I am using a SORT pgm for this.

SORTIN GIVES THE INPUT FILE FOR THE PROGRAM.

Code:

//SYSIN DD *
   INCLUDE COND=(1,8,CH,EQ,C'LINE')
   SORT FIELDS=(1,8,CH,A)
   SUM FIELDS=(22,4,BI)
   OUTREC FIELDS=(1,8,5X,22,4)
/*


This showing all the records satisfying the INCLUDE COND.

Early Help will be appreciated
Back to top
View user's profile Send private message
References
prakash271082

Active User


Joined: 09 Sep 2005
Posts: 61

PostPosted: Tue Oct 25, 2005 3:40 pm    Post subject: Re: JCL : SUM of particular field required from the input fi
Reply with quote

Hi,
Try SUM FIELDS with ZD option.
Back to top
View user's profile Send private message
Direction

New User


Joined: 15 Sep 2005
Posts: 11

PostPosted: Tue Oct 25, 2005 3:54 pm    Post subject: Re: JCL : SUM of particular field required from the input fi
Reply with quote

Thanx Kathiresan,

It works, thanx for ur favour.
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Moderator


Joined: 15 Feb 2005
Posts: 4621
Location: San Jose, CA

PostPosted: Tue Oct 25, 2005 9:30 pm    Post subject:
Reply with quote

Kathiresan,

Good guess considering you had no idea what the data actually looks like.

Direction,

You must use the correct format for the data you're dealing with. If ZD worked for you, then your data looks like this in hex: FdFdFdsd where d is a digit (0-9) and s is the sign (C, F or D). When you tried to SUM this as BI (binary), you got overflow because of the first F in each field. With ZD, the Fs are ignored and the sddd values are summed.
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