Editorial / Best Answer
jedianiki
The DISP=SHR in JCL means that the file is already existing and that it is not exclusively locked for your own use. Other user can still access this file. And the EXTEND in the COBOL program means that, when you open the file, the record pointer will be positioned on the last row of the record and every insert you'll make will be appended on the last position of the file.
File Concept
Profile Answers by anjireddy1985 Questions by anjireddy1985
Questions by anjireddy1985
Editorial / Best Answer
jedianikiProfile Answers by jedianiki Questions by jedianiki
The DISP=SHR in JCL means that the file is already existing and that it is not exclusively locked for your own use. Other user can still access this file. And the EXTEND in the COBOL program means that, when you open the file, the record pointer will be positioned on the last row of the record and every insert you'll make will be appended on the last position of the file.
Related Answered Questions
Related Open Questions