why occurs clause not mentioned in 01 level
Answers were Sorted based on User's Feedback
Answer / rajkumar
because that level mention only record name if you are
using occur that is repeated more than one time
so record name not repeated more than one time. field only
repeated more time
| Is This Answer Correct ? | 45 Yes | 6 No |
Answer / jagveer singh
As you all might already know that an array is known
as 'Repeating Groups' because of there nature, it means
that it is a group of data-items, 01 level is used to
define group level variable only (not the groups directly),
so data-items of group needs to be defined under 01 level
(group level) variable only, we can not declare them on 01
level directly.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / m
we have 2 types of redefines
1. Explicit redefines -- we generally use in our cobol
logic using redefine keyword.
2. Implicit redefines -- system redefines its spaces
accordingly .. eg: the variable/record defined with 01
level are usually redefined by the system.
this is th ereason why we wont define occurs clause @ 01
level
| Is This Answer Correct ? | 8 Yes | 2 No |
Level 01 is used to define record and record cannot be repeated using OCCUR clause.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / som
BECAUSE IF WE DEFINE THE OCCURS CLAUSE AT 01 LEVEL THEN IT
BREAK THE BASIC RULE OF LANGUAGE DECLARTION OF SAME NAME
VARIABLE MORE THEN ONE TIME.E.G
01 NAME PIC XX OCCURS 2 TIMES. MEANS ACTUAL DECLARTION WILL
LIKE THIS
01 NAME PIC XX.
01 NAME PIC XX.
THATS WHY IT IS NOT USED AT 01 LEVEL
| Is This Answer Correct ? | 6 Yes | 9 No |
Answer / muthu
Level 01 refers to a group item where as occurs clause is
only for elementary items.............i.e other than
01...like 02..03....etc., it should be an independent one.
| Is This Answer Correct ? | 11 Yes | 28 No |
What is the difference between a binary search and a sequential search?
How do we get current date from system with century in COBOL?
how do you reference the variable block file formats from cobol programs
I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.
when COMP-3 is preferrable?
I have a occurs for 100 times but it has executed 101 time what could be the reason?
What is an in line PERFORM? When would you use it? Anything else to say about it?
Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
) How do u handle errors in BMS macro?
what is meaning by design document? who can repared for this?
can any one help -s806