can a job be submitted through jcl only? is there another way
to submit a job?

Answers were Sorted based on User's Feedback



can a job be submitted through jcl only? is there another way to submit a job?..

Answer / vaneesh khurana

A job can also be submitted from a cobol program using
INTRDR

Is This Answer Correct ?    10 Yes 2 No

can a job be submitted through jcl only? is there another way to submit a job?..

Answer / app

A job can be submitted using jobtrac also.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More JCL Interview Questions

what is use of space parameter in dd statement?

0 Answers   IBM,


How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?

1 Answers  


01 A. 10 B pic X(10). move spaces to A. move spaces to B. output in A & B

2 Answers   Perot Systems,


When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?

0 Answers  


What does the TIME parameter signify ? What does TIME=1440 mean ?

6 Answers   Accenture, TCS,


how to convert a file form fixed Length to variable length?

2 Answers   Syntel,


If a job has 3 steps and step 1 and step 3 should get executed and step 2 should not get executed irrespective of the return code from the previous steps. How can it be done?

5 Answers   TCS,


Using DELETE what type of file can you delete? a)SEQUENTIAL FILE B)INDEXED FILE C) D) Some options were there..i cant remember

3 Answers   HSBC,


How do you submit JCL via a Cobol program?

2 Answers   Cap Gemini,


01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable

1 Answers  


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

0 Answers  


Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE

8 Answers   IBM,


Categories