How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
Can QSAM files be accessed from CICS?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
What are the building blocks used in vsam datasets?
What is meant by MDT? Furthermore, comment on FRSET and FSET ?
What is the function of entry sequenced data set?
before altering a table is it necessary to lock ? if lock what is it ? how to do ? ifi want to lock a table what is that command ?
What are the types of processes to create a map in cics?
what is the resolution for sb37 error
How to run my rexx exec?
Explain about mirror activator disk mirroring?
In COBOL programming, what is PERFORM? What is VARYING?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
How to run cobol program using jcl?