Date: Mon, 3 Mar 2003 13:35:57 -0500
Reply-To: Jim.Breckel@MAIL.STATE.KY.US
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: J Breckel| <Jim.Breckel@MAIL.STATE.KY.US>
Subject: Re: Sysout on MVS
Content-Type: text/plain
I tried this and it comes out as a separate output from the main job hasp...
-----Original Message-----
From: L. Bertolini [mailto:bertolini.1@OSU.EDU]
Sent: Monday, March 03, 2003 1:07 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: Sysout on MVS
I *think* that you want:
FILENAME FOO SYSOUT=*;
DATA;
FILE FOO;
PUT 'HELLO WORLD';
STOP;
RUN;
Was there more to it than that?
J Breckel| wrote:
>How can you specify in a FILENAME statement a sysout to print with the
HASP?
>This can be done in JCL with // DD SYSOUT=*...
>