SYSIN on zOS translators

Hi guys,
I was wondering to know if
//SYSLIN DD DSN=PRD0.CICS.SDFHCOB.ARDE(DFHEILIC),DISP=SHR
// DD DSN=&&OBJ,DISP=OLD
// DD DDNAME=SYSIN2
//SYSIN2 DD *
INCLUDE SYSLIB(DFHECI)
INCLUDE CSQSTUB(CSQCSTUB)
ORDER DFHECI
NAME ]PROGRAM](R)
Is possible to implement what is above using zOS translators? How can I define a card SYSIN2 with two "INCLUDE" contained in it?
In case this is not possible, could we call .submitJCL -c somehow from TSO or ISPF call methods?
Thanks!!!!!
I was wondering to know if
//SYSLIN DD DSN=PRD0.CICS.SDFHCOB.ARDE(DFHEILIC),DISP=SHR
// DD DSN=&&OBJ,DISP=OLD
// DD DDNAME=SYSIN2
//SYSIN2 DD *
INCLUDE SYSLIB(DFHECI)
INCLUDE CSQSTUB(CSQCSTUB)
ORDER DFHECI
NAME ]PROGRAM](R)
Is possible to implement what is above using zOS translators? How can I define a card SYSIN2 with two "INCLUDE" contained in it?
In case this is not possible, could we call .submitJCL -c somehow from TSO or ISPF call methods?
Thanks!!!!!
2 answers

Hello,
I'm a "beginner" of RTC usage so please be patient if my
terminolgy is not correct or if I'm saying things obvious.
Anyway we did the z/OS linkedit in our test
environment via .submitJCL command so I think it can be helpful to
know how we did it.
We specified it in the build definition post-build command line
section as:
.submitJCL hqual.JCL(BUILD)
hqual.JCL is populated by jcl like the one you described above
that are fetched during the build from the corresponding
component we defined in our data stream.
We defined also a separate build definition of type
"command line - Rational Build Agent" and specified in it
the same .submitJCL command.
Ciao,
Rossella
I'm a "beginner" of RTC usage so please be patient if my
terminolgy is not correct or if I'm saying things obvious.
Anyway we did the z/OS linkedit in our test
environment via .submitJCL command so I think it can be helpful to
know how we did it.
We specified it in the build definition post-build command line
section as:
.submitJCL hqual.JCL(BUILD)
hqual.JCL is populated by jcl like the one you described above
that are fetched during the build from the corresponding
component we defined in our data stream.
We defined also a separate build definition of type
"command line - Rational Build Agent" and specified in it
the same .submitJCL command.
Ciao,
Rossella
Hi guys,
I was wondering to know if
//SYSLIN DD DSN=PRD0.CICS.SDFHCOB.ARDE(DFHEILIC),DISP=SHR
// DD DSN=&&OBJ,DISP=OLD
// DD DDNAME=SYSIN2
//SYSIN2 DD *
INCLUDE SYSLIB(DFHECI)
INCLUDE CSQSTUB(CSQCSTUB)
ORDER DFHECI
NAME ]PROGRAM](R)
Is possible to implement what is above using zOS translators? How can I define a card SYSIN2 with two "INCLUDE" contained in it?
In case this is not possible, could we call .submitJCL -c somehow from TSO or ISPF call methods?
Thanks!!!!!