How to change size of Initial number of records to *NOMAX
for ALL PF files from perticular library, how can I do that
No Answer is Posted For this Question
Be the First to Post Answer
What is SDSF?
I want ALL jcl ERROR cods
how do you reference the rrds file formats from cobol programs
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
What does EXIT do ?
what is a load module ?
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..
what is the difference between perform varying and perform until
Write a cobol program making use of the redefine clause.
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
What are the steps you go through while creating a COBOL program executable?
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).