how to run batch program without jcl?

Answers were Sorted based on User's Feedback



how to run batch program without jcl?..

Answer / richards

No.. A JCL is needed is submit a Cobol Batch program..

Is This Answer Correct ?    14 Yes 0 No

how to run batch program without jcl?..

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

how to run batch program without jcl?..

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

Post New Answer

More JCL Interview Questions

what will be the error code if duplicate key of VSAM file is found?

1 Answers   HSBC, Kings,


what is the difference between the JCLLIB and JOBLIB ,and where do we use it ?

3 Answers   Convergys,


Is stepname is a MUST and should be unique also for each JOBSTEP ? or system can supply the stepname for a step which is not given a name by the programmer ?

6 Answers   IBM,


i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?

6 Answers   IBM,


what are the technical terms for // /* in jcl

3 Answers   Cap Gemini,






Explain how can the attributes of one sms dataset be copied to another dataset?

0 Answers  


What does a disposition of (new,catlg,keep) for a dsn mean?

0 Answers  


What is the difference between the JOBLIB and the STEPLIB statements?

3 Answers  


Wrete a JCL to compare two files and mached records move to onc file & un mached rows wants to another file?

13 Answers   CGI, DSRC, IBM,


suppose i have 10 job steps and i want to execute only step 6.How to write?

6 Answers  


A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)

1 Answers   IBM,


When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).

2 Answers  


Categories