How can you submit a job from COBOL programs?
Answers were Sorted based on User's Feedback
Answer / a.roselin
We can submit the job from COBOL program thru internal
loader..
| Is This Answer Correct ? | 4 Yes | 3 No |
what is qualification on occurs clause?
A cobol program to read a file , match it with other if. If match occurs then write it to an output file. If no match then no need to write it.Error log created by program to track any error.
Name the divisions in a COBOL program ?
Explain fixed length record in cobol? with suitable example
What is "Call by content" and "call by reference"?
What is the difference between external and global variables in COBOL?
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
What is SDSF?
wht is load module and object module ?
Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
Can the OCCURS clause be at the 01 level?