how do you reference the ksds vsam file formats from cobol programs
No Answer is Posted For this Question
Be the First to Post Answer
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
How do pass the values to the parameters in cobol
88 class is used for
What is the use of EVALUATE statement?
Can a Search can be done on a table with or without Index?
What will happen if we try to create GDG (+2) generaton instead of (+1) generation?
what is the maximum error code in mainframe
what will happen if pass values more than 100 using PARM parameter?
How can you get the ksds file records into your cobol program?
What is the usage of comp fields in cobol?
How to read a 100 record from a file through cobol?
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?