Can the OCCURS clause be at the 01 level?
Answers were Sorted based on User's Feedback
Answer / rajini
Can the OCCURS clause be at the 01 level?
NO, because occurs clause is there to repeat the fields and
not the records.
| Is This Answer Correct ? | 10 Yes | 1 No |
How do you reference the fixed block file formats from cobol programs
C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
Can we use redefine clause in occurs clause?
Name the divisions in a COBOL program ?
Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
Hai friends why we need to read a file before re-write a record?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..
What does the initialize statement do ?
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
i have the job which has written updated 100 records into the table and for 101th record it got abended and i want to start the job again and should wirte from 101th record not from 1st record..how to do it..?