What is report-item?
Answer / g.menaka
Report item is a field that contains the edit symbols that
is to be printed
| Is This Answer Correct ? | 4 Yes | 0 No |
how to code in cobol while using variable block file?
What is the Importance of GLOBAL clause According to new standards of COBOL?
What are the different data types available in COBOL?
If you were passing a table via linkage, which is preferable - a subscript or an index?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
is it possible to rename 01 level?
how to display the dataset information?
can we use the two 01 level in file discription ?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
if a file has 1000 recods how copy the records from 1 to 100 records using sort
why we are using set in searchall?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.