How do you submit a JCL under CICS environment ?
Answers were Sorted based on User's Feedback
Answer / anil sana
Write a CICS program to write the JOB to TD Queue
named "INTR" and kick off the transaction associated with
the program.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / mr2981
use WRITE SPOOL command and pass string which contain teh
jcl statement.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / guest
Edit the JCL in Extra partition TDQ and submit the same
using some system command (not sure) under CICS subsystem.
This is what i think, please clarify....
| Is This Answer Correct ? | 1 Yes | 5 No |
Answer / guest
Just give the Transaction id associated with the CICS
program and press enter.
The program will be triggered once the trasaction id is
given.
| Is This Answer Correct ? | 1 Yes | 8 No |
What are steplib and joblib?
Name what parameter directs the output of the job log dataset?
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
What is the difference between joblib and jcllib statements
how many max steps can we use in a job? pls answer to my question
what is mainframe?
which utility is used to run a cobol-db2 program?
How to empty the records in jcl
How would you understand error(execution phase)?
What is Automatic Restart ? EXEC PGM = PROG1, RD = R (Is it the Restart of a JOBSTEP or Restarting the execution of the program?) Do we Restart it or it automatically Restarts executing again and again ? Then when it will finish executing ? or After Abending, when we submit it again, then it is Restarted from the Last successful Checkpoint ? If some JOBSTEP is abending, what is the benifit to Restart it, WILL IT NOT ABEND AGAIN if you don't change the LOGIC ?
There is a procedure in A.B.PROCS(PROC1) (member name is PROC1) //PROCA... There is a call to a procedure PROCA from a JOB. //STEP01 EXEC PROCA ... Here "PROCA" in JOB refers to the actual PROC name or the member name of the PDS where this PROCA is stored.
In order to continue a job after a return code of 12 in step1, what the step2 exec statement include?