How to count the records in COBOL data file?what will happen if the file open in extent mode and corresponding is equal to OLD in jcl?by opening an empty vsam file in i/o wii get file status 35 how can you over come this ?
How to write "No records found" text to output file if input file is empty, by writting JCL.
Latest Answer : I've done this many times. Set up the JCL statements in Working-Storage as you want them to be presented to the operating system. Create an FD for an output data set with a fixed, 80-character format and write the statements to this file.In the JCL, ...
Latest Answer : using attention identifier keys ...
How to solve S000 abend with file status code 39 (attribute mismatch for a file in JCL and cobol program) .
How to write JCL if the cobol program is connected with DB2 Database and SOME of the DB2 statements are written in SUB-PROGRAM. Assume the CALL is a STATIC CALL ?
What is the diffenence between Structured Cobol Programming and Object Oriented COBOL programming ?
Latest Answer : Structured programming is a Logical way of programming, you divide the functionalities into modules and code logically. OOP is a Natural way of programming, you identify the objects first, then write fuctions, procedures around the objects. ...