how to submit a jcl by cobol program.
clear me with an example.

Answers were Sorted based on User's Feedback



how to submit a jcl by cobol program. clear me with an example...

Answer / leena_kulkarni

You just write out your JCL syntax to a file and assign it
to the internal reader to be automatically fired off when
you close the file.

SYNTAX:
When you close file, write down the below line.
//SYSUT2 DD SYSOUT=(*,INTRDR)

Is This Answer Correct ?    5 Yes 3 No

how to submit a jcl by cobol program. clear me with an example...

Answer / shriram supalwar, dharmabad

Submission of JCL Job from COBOL program
JOB:

//Jobcard
//STEP1 EXEC PGM=MAINPROG
//DD1 DD DSN=RAM.TEST,DISP=(SHR)
//JCLDD DD SYSOUT=(*,INTRDR)

COBOL PROGRAM:
(MAINPROG)

IDENTIFICATION DIVISION.
PROGRAM-ID. RAM.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT INFILE ASSIGN TO JCLDD
DATA DIVISION.
FILE SECTION.
FD INFILE.
01 JCL-REC PIC X(20).
PROCEDURE DIVISION.
OPEN OUTPUT INFILE.
MOVE "//TYAWJKG JOB (A123, RAM)' TO JCL-REC.
MOVE "//STEP1 EXEC PGM=IEFBR14' TO JCL-REC.
MOVE "//DATA1 DD DSN=A.B.C,DISP=OLD' TO JCL-REC.
CLOSE INFILE.

correct me i am wrong......

Is This Answer Correct ?    1 Yes 0 No

how to submit a jcl by cobol program. clear me with an example...

Answer / suresh ramaiyan

Let us the program is PGM1. Below is the JCL for running
the PGM1.

//STEP1 EXEC PGM=PGM1
//INSUB DD SYSOUT (* INTRDR)

In the program define INSUB as file (should have a LRECL of
80). Write all the JCL codings into INSUB file.

When you close the INSUB file, the job will be submitted to
JES automatically.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More COBOL Interview Questions

What is the difference between PIC 9.99 and 9v99?

7 Answers  


Which division and paragraphs are mandatory for a COBOL program?

0 Answers  


What are the divisions in a cobol program? Which one is the mandatory division among them?

1 Answers  


How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?

0 Answers  


What was removed from COBOL in the COBOL II implementation?

0 Answers  






How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?

0 Answers  


I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.

0 Answers   Cap Gemini,


what is the minimum number of lines a Cobol program should have to successfully compile and run

7 Answers  


can we use COPY statement in w-s section? how?

3 Answers  


tell me about examine inspect and evaluate ?

2 Answers   CTS,


What is the problem of ordered sequential files access?

0 Answers  


Which mode is used to operate the sequential file?

0 Answers  


Categories