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 |
How many instream we can write in single jcl?
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
how to solve u4038 abbend?........
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
How to pass data to a program that is coded in an exec statement?
Explain in DD statement what is the use of DCB parameter?
Min no of member?s (PDS) in one directory block?
Explain about LMPUT-
which utility is used a dummy utility?
wht is sysudump n sysout,sysprint ?
How Can we see all generations of a GDG ?
How to submit jcl through a cobol program?