jacky_ying Beginner
Joined: 25 Jul 2004 Posts: 46 Topics: 20
|
Posted: Mon Mar 26, 2007 6:13 am Post subject: question about submit job |
|
|
I submit a job in Rexx that the job stream is to be obtained from the
current source of input,not from a PDS member,it always convert the
job stream into uppercase automatically,Is there a way to suppress this conversion?
Code: |
/* REXX */
/*TRACE C*/
"NEWSTACK"
QUEUE "//CONN JOB ,Jack,CLASS=A,MSGCLASS=X"
QUEUE "//STEP010 EXEC PGM=XXXX"
QUEUE "//SYSOUT DD SYSOUT=*"
QUEUE "//SYSPRINT DD SYSOUT=*"
QUEUE "//MYDD DD *"
QUEUE "alkda;lkdjfaksdj"
QUEUE "/*"
QUEUE "XX"
Y=OUTTRAP('VAR.')
"SUBMIT * END(XX)"
Y=OUTTRAP('OFF')
EXIT
|
as the above sample,when I check the job in SD.ST ,I found the data in MYDD become uppercase. |
|
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Mon Mar 26, 2007 7:28 am Post subject: |
|
|
try assigning it to a rexx variable first and the queue the variable - I do not know if it would work but it is the first thing I would try before heading off to the manual. _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|