> -----Original Message-----
> From: IBM Mainframe Discussion List On Behalf Of Hardee, Chuck
>
> No, at least not intentionally.
> When I run my usermod using no changes to the CSI and/or JCL, the output is
> directed, via the MSGCLASS
> parm on the JOB statement to class X, which is a hold queue. When I modify
> the output requirements to
> go to another class, class F in this case, it, too, is a held class that our
> Production Control
> personnel receive output in that has to be reviewed and then, if it passes
> muster, is filed into their
> source control system.
>
> In the off chance that that was the case, I added HOLD=YES on the DD
> statement for SYSPRINT, but
> whether that worked or not, I can't say as I never received any output on
> that DD when I ran my APPLY,
> which is another issue I had pointed out in previous replies.
>
> Frankly I am confused as to what is happening since what I am wanting to do
> should be very straight
> forward.
Indeed, JCL overrides "just work".
Assuming you have DDDEFs for all required datasets, your APPLY job that works
could be as simple as:
//jobname JOB acctg.info,MSGCLASS=X,...
//stepname EXEC PGM=GIMSMP[,REGION=0M[,...]]
//SMPCSI DD DISP=SHR,DSN=my.smp.global.csi
//SMPCNTL DD *
SET BDY(tgtzone) .
APPLY S(usermod) ASSEM REDO .
/*
Based on your descriptions, you get your //SYSPRINT output in class X.
To get your //SYSPRINT output into class F, you need only add one JCL statement:
//jobname JOB acctg.info,MSGCLASS=X,...
//stepname EXEC PGM=GIMSMP[,REGION=0M[,...]]
//SMPCSI DD DISP=SHR,DSN=my.smp.global.csi
//SYSPRINT DD SYSOUT=F <<<<<=========== add this statement
//SMPCNTL DD *
SET BDY(tgtzone) .
APPLY S(usermod) ASSEM REDO .
/*
It really is that simple.
-jc-
**********************************************************************
Information contained in this e-mail message and in any attachments thereto is
confidential. If you are not the intended recipient, please destroy this
message, delete any copies held on your systems, notify the sender immediately,
and refrain from using or disclosing all or any part of its content to any
other person.
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN