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
 
Handling more than 18 digits in cobol

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL
Author Message
mosinjamadar

New User


Joined: 26 Sep 2007
Posts: 10
Location: pune

PostPosted: Thu Jul 03, 2008 8:32 pm    Post subject: Handling more than 18 digits in cobol
Reply with quote

Hi All,

I want to handle more than 18 digits in my program because i m getting more than 14 digits when there are 3 decimal places
Please help me out if u know
Back to top
View user's profile Send private message
References
Bill O'Boyle

Senior Member


Joined: 14 Jan 2008
Posts: 343
Location: Orlando, FL, USA

PostPosted: Thu Jul 03, 2008 8:49 pm    Post subject: Re: Handling more than 18 digits in cobol
Reply with quote

This was added to OS/390 COBOL 2.2 (circa late 1990's) and is included as an option in all subsequent releases of COBOL. It can be activated by specifying the compiler option ARITH(EXTEND).

Note that ARITH(EXTEND) is NOT the default and it must be expressly specified.

However, please be advised that this option could (at times) requires that COBOL access a run-time routine for certain calculations, which may or may not cause increased response-time.

I would consult your System Programmer and/or Tech Support person, who could then let you know the pros and cons of this option.

Regards,

Bill
Back to top
View user's profile Send private message
Robert Sample

Senior Member


Joined: 06 Jun 2008
Posts: 936
Location: Atlanta, GA

PostPosted: Thu Jul 03, 2008 11:18 pm    Post subject:
Reply with quote

Also, note that COMP fields cannot exceed 18 digits, period.
Back to top
View user's profile Send private message
Itanium

Active User


Joined: 22 Jan 2006
Posts: 57
Location: India

PostPosted: Fri Jul 04, 2008 2:52 pm    Post subject:
Reply with quote

I'n not sure if this makes sense, try to have two variables.

First one before the decimals.
Second one holding the decimal values.
Back to top
View user's profile Send private message
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8723
Location: 221 B Baker St

PostPosted: Fri Jul 04, 2008 11:59 pm    Post subject:
Reply with quote

Hello,

Quote:
I'n not sure if this makes sense, try to have two variables.
Only if the numbers are never used "as one". This means it could never be used in a forumla or accounting which would almost surely eliminate this approach.
Back to top
View user's profile Send private message
mosinjamadar

New User


Joined: 26 Sep 2007
Posts: 10
Location: pune

PostPosted: Sat Jul 05, 2008 4:11 pm    Post subject:
Reply with quote

Could you please give me the sytntax for ARITH(EXTEND) how to use it in cobol ,I tried lot of manual but i was unable to founf it
Back to top
View user's profile Send private message
enrico-sorichetti

Global Moderator


Joined: 14 Mar 2007
Posts: 3153
Location: italy

PostPosted: Sat Jul 05, 2008 4:28 pm    Post subject: Reply to: Handling more than 18 digits in cobol
Reply with quote

strange that You did not find anything icon_surprised.gif

Code:
PROCESS ARITH(EXTEND)                                 
IDENTIFICATION DIVISION.                               
..........
............
Back to top
View user's profile Send private message
mosinjamadar

New User


Joined: 26 Sep 2007
Posts: 10
Location: pune

PostPosted: Sun Jul 06, 2008 5:54 pm    Post subject:
Reply with quote

Thanks a lot
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL All times are GMT + 6 Hours
Page 1 of 1