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

Need information on Cobol occurs clause


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Rajamani13

New User


Joined: 13 Aug 2008
Posts: 2
Location: chennai

PostPosted: Tue Dec 30, 2008 3:09 pm
Reply with quote

I have a question on Cobol occurs clause.

i declared an internal table with occurs 2000.then when i am trying to add the data with more than 2000 it is accepting.

My question is i declared the internal table with occurs 2000 but it is creating more than 2000 when i am trying to add it, then what is the use occurs clause.
Back to top
View user's profile Send private message
acevedo

Active User


Joined: 11 May 2005
Posts: 344
Location: Spain

PostPosted: Tue Dec 30, 2008 3:47 pm
Reply with quote

if you compile with SSRANGE option then, If I'm not wrong, the program abends with a U4038...
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Tue Dec 30, 2008 4:58 pm
Reply with quote

In addition to acevedo's reply, you might like to check this link ibmmainframes.com/viewtopic.php?t=35028&highlight=ssrange
Back to top
View user's profile Send private message
Rajamani13

New User


Joined: 13 Aug 2008
Posts: 2
Location: chennai

PostPosted: Tue Dec 30, 2008 6:47 pm
Reply with quote

Thanks for making me aware the compiler options SSRANGE/NOSSRANGE. Now I got the answer.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Tue Dec 30, 2008 10:01 pm
Reply with quote

The OCCURS clause defines the size of the table. Unless SSRANGE is being used, however, there is nothing in COBOL to prevent you from exceeding the table size by however many elements you want to. Eventually, though, you'll start writing to program storage (overlaying your code) or storage not associated with your program and will get an ABEND of one form or another.
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top