Explain the configuration section of a cobol program with examples of syntax.
No Answer is Posted For this Question
Be the First to Post Answer
There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.
hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
how we can edit records in vsam data set and non vsam data sets
What is SQL Code -904 and -903 in DB2 And how to handle it?
What is diff between vsam and db2?what is advantage of db2 over vsam?which is best suited one?
What is the default value of DISP for temp datasets
if you give cylinder(1,1)how many cylinders it will be allocate?
How do define Dymanic array in cobol how do u define single demensional arry and multidymensional arry in ur cobol.
If we use GO BACK instead of STOP RUN in cobol?
can we display comp-3 variables. if we want to display what we have to do . give me one example
What are subroutines ? and how do we pass data to the sub routines?
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.