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 |
Answer / Sheetal Kumari
Batch programs are typically run using JCL (Job Control Language) on mainframe systems. However, it is possible to run a batch program without JCL by using shell scripts or other programming languages that can execute the same commands as the batch job steps. For example, you could write a script in Python or another language to perform the same actions as your batch job.
| Is This Answer Correct ? | 0 Yes | 0 No |
In sms datasets, what is the function of the dd avgrec keyword?
How do you check the syntax of a JCL without running it?
What are isolation levels? Where do we need to specify them in compiling JCL?
What are the parameters that are used in creating a gdg?
What does SYSIN * indicate?
What is the function of the dd avgrec keyword in sms datasets?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
What are hierarchy levels in jcl?
I have 255 procedures in a job, each procedure contain 2 steps.can we execute this job?
How to create delta file using JCL
IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another dataset?
What does a disposition of (MOD,DELETE,DELETE) mean ?