What is the utilization of copybook in cobol? Could we utilize a similar copybook?
No Answer is Posted For this Question
Be the First to Post Answer
In the JCL, how do you define the files referred to in a subroutine ?
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.
what will happen if i give program name and member name as different? program runs successful or w'll abend?
created cluster using IDCAMS ..that is empty ..when i write a program for read using Input ..wil it open the cluster or gives any error?
What is amode(24)?
What are the different forms of EVALUATE statement?
what is the diff b/w select stsmt and cursor ?
Hi All, Can anyone tell me how we can MOVE value of a X(19) variable to a S9(17) COMP-3 variable? Answer with an Example will be of great help.
What is the difference between CALL BY VALUE and CALL BY CONTENT?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).
What is length is cobol?
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.