how to run batch program without jcl?
Answers were Sorted based on User's Feedback
Answer / richards
No.. A JCL is needed is submit a Cobol Batch program..
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / sivakumar sekharannair
Batch programs are those are invoked by a language called
JCL. It can be executed either manually by submitting the
JCL or by a scheduler which has the particular JCL in it.
Manually submitted by user submitting the job.
Scheduler submission can be either time trigger or dataset
trigger.
If given a particular time, the scheduler trigers the job
in that particular time
Or
when the particular dataset is available in the mainframe
(should be cataloged and available)the job is triggered.
Never ever the batch job can run without a jcl
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / rishab
You need to compile your program.
Once the load module is generated you can use tso command:
TSO CALL 'abc.pqr.xyz(progA)'
Here abc.pqr.xyz is your load module
and progA is your program name (best practice to have your
program member name same as your program-id).
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain the purpose of the dd keylen parameter?
What is RESTART? How is it invoked?
how are instream data terminated?
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.
What is a COND parameter in JCL?
which parameter is used to check the syntax of a jcl without executing it?
Is condition checking possible in jcl?
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
Where & How Do You Code Identifier In Jcl?
what is static and dynamic call with examples?
If Region=0k means What Happen?