View previous topic :: View next topic
|
Author |
Message |
meetsrk
New User
Joined: 13 Jun 2004 Posts: 85
|
|
|
|
what is the max. number OF occurs clause can u used in VS COBOL II, VS COBOL I and COBOL 75 ?
i.e
Code: |
01 A.
02 B PIC X OCCURS 2 TIMES.
03 C PIC X OCCURS 2 TIMES.
04 D PIC X OCCURS 2 TIMES.
..............................
..............................
..............................
|
|
|
Back to top |
|
|
sudha
New User
Joined: 16 Aug 2004 Posts: 7
|
|
|
|
maximum size of occurs class is 7 in vs cobol II |
|
Back to top |
|
|
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1592
|
|
Back to top |
|
|
badri
New User
Joined: 03 Sep 2004 Posts: 9
|
|
|
|
maxcc=8
"OCCURS" nesting exceeded 7 levels. Only the first 7 levels. Only the first 7 levels were accepted.
when i tried for nesting occurs more than 7 levels above error is displayed. |
|
Back to top |
|
|
|