What is level 66 used for ?
Answers were Sorted based on User's Feedback
Answer / satya sivaji
The level 66 used for the purpose of RENAMES clause.The
advantage of the clause is we can group the data items
according to our requirement and it will acts in original
group and new group,roughly we can say it as regrouping or
rearranging the data items by using RENAMES CLAUSE
| Is This Answer Correct ? | 22 Yes | 1 No |
Answer / syed
Level 66 is the RENAMES Clause. RENAMES Clause is used for
regrouping of the elementary data items. Level no
01,66,77,88 can't be regrouped. Level no 66 is defined
after all the elementary data items so as to regroup the
existing elementary data items.
| Is This Answer Correct ? | 3 Yes | 1 No |
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
What is an explicit scope terminator?
Difference between file status codes 02 and 22.... since both are for duplicate key detection.
HOw can I get the negative sign while deduct high value from low value
explain sorting techniques in cobol program?
Hi................... I have records like this aaaa cccc bbbb And i want output like this bbbb cccc aaaa How can it possible ?. Note:Please make sure records are in unsorted order. somebody plzzz help me.
. How do we cast a variable in COBOL
Discuss about changing dataset name in proc.
Differentiate between structured cobol programming and object-oriented cobol programming.
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest