How do you reference the fixed block file formats from cobol programs
No Answer is Posted For this Question
Be the First to Post Answer
When is inspect verb is used in cobol?
88 level entry is used for (a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause (c) condition-names (d) None of the above
What is sqlca and why is it needed in any cobol-db2 program?
What are the different rules of SORT operation?
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What is Comm?
2 Answers IBM, Kemper Corporation,
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...
What is the difference between external and global variables in COBOL?
If we use GO BACK instead of STOP RUN in cobol?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
WORKING-STORAGE SECTION. 01 A PIC X(3) VALUE 'ABC' 01 B PIC 9(3). PROCEDURE DIVISION. MOVE A TO B. STOP RUN. OUTPUT IS: AB3 WHY AND HOW THIS IS HAPPENING.