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 |
Can we DELETE all the Generations of a GDG at once, WITHOUT deleting the GDG itself ?
How to override loadlib?
How to find out the number of records in a file using JCL
Explain about RECORDING MODE Clause
Is there any command to check wether the ps file is in sorted order?
What is the purpose of dd?
I have a jcl which is using 2 data sets i want to override those data sets. how can i override the files within the JCL. Give me the syntax. Make sure that it is not calling any Proc.
i have five step in jcl.my forth step is gdg.gdg was abend.when will job complete,hoe to handle you
Hi, I have 3 files say file A , file B and file C.I want to form an output file in which i will have all the records from file A. Files B and C also may contain records that are present in file A.I want those records also to be included in my output file. for eg: file A contains: 1 2 3 file B contains: 2 4 5 file C contains: 1 3 5 So in my output file should look like: 1 2 3 2 1 3 Can any one help ???.....thanks in advance.
If a jcl has just 1 step and the input file to this does not exist, then what will happen if we submit this job?
How to execute step2,step1,step3 when step1,2&3 are in order
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?