How to execute a set of JCL statements from a COBOL program?
Answer Posted / anoop
You can execute JCL from cobol programs.
Write the jcl statements into a file and open it in out put
mode.
| Is This Answer Correct ? | 8 Yes | 12 No |
Post New Answer View All Answers
What is the usage of comp fields in cobol?
IF I mention stop run in CICS what happens?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
) what is the difference between AID and HANDLE AID?
What is the LINKAGE SECTION used in COBOL?
How many bytes S(8) comp field occupy and its maximum value?
Write the code to count the sum of n natural numbers.
What is the utilization of copybook in cobol?
How you can characterize tables in cobol?
Why did you choose to work with ibm mainframe cobol programming?
Explain how to differentiate call by context by comparing it to other calls?
What is report-item in COBOL?
What is comp-1 and comp-2?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.