a. Can the OPTIONAL clause in COBOL only be coded for input
files?
b. If it is coded for files opened in OUTPUT, I-O or EXTEND
mode, will it give a compilation error?
c. If there are no compilation errors and if such files are
not coded in the JCL, will the OPEN statement run fine when
these files are opened?
d. How will a WRITE statement work for the above files?
Answers were Sorted based on User's Feedback
Answer / kb
An OPTIONAL file is being opened as EXTEND or I-O. Optional
files are files that are not necessarily present each time
the program is run. You can define files opened in INPUT,
I-O, or EXTEND mode as optional by using the SELECT OPTIONAL
phrase in the FILE-CONTROL paragraph.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sandy
OPTIONAL clause can be specified for files opened INPUT,
OUTPUT, I-O and EXTEND modes. It will not give any
compilation error.
If we do not have DD statements for such files during
execution, the following file status code would be obtained
when we open the file.
INPUT (JCL RC = 0)
------
Open statement will give file status of '05'. Open is
successfule but file is not present.
EXTEND (JCL RC = 0)
------
Open statement give file status of '96'. No DDNAME present.
I-O (JCL RC = 0)
------
Open statement give file status of '96'. No DDNAME present.
WRITE (JCL SOC4 ABEND)
| Is This Answer Correct ? | 5 Yes | 2 No |
how to transfer the file from pc to mainframe??
What is binary search?
What is the maximum length of a field you can define using COMP-3 in COBOL?
What is SDSF?
wht is structured cobol pgm and non structred cobol pgm ?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
1.Can we define condition-name conditions in FD entry.
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
Can we use icetool in cobol program?
What is Pic 9v99 Indicates in COBOL?
0 Answers SwanSoft Technologies,
i want to store 20 digits . h will u do it in cobol ?
What are the different data types in cobol?