Path: utzoo!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!zaphod.mps.ohio-state.edu!maverick.ksu.ksu.edu!unmvax!uokmax!occrsh!fang!tarpit!bilver!dandrews From: dandrews@bilver.uucp (Dave Andrews) Newsgroups: comp.lang.asm370 Subject: Re: Writting to the console on MVS system. Message-ID: <1991Mar5.041410.7415@bilver.uucp> Date: 5 Mar 91 04:14:10 GMT References: <9103021608.AA01018@ucbvax.Berkeley.EDU> Distribution: inet Organization: W. J. Vermillion - Winter Park, FL Lines: 15 In the simplest case, writing to the MVS operator's console can be accomplished by coding a WTO macro: WTO 'text' where the text can be up to 120 characters, if memory serves me right. There is a variety of optional parameters that affect message routing, display attributes and such, which you can get out of the Supervisor Services SPL. If you want to write to a terminal (i.e. a TSO terminal), then you'll need the TPUT macro - or the PUTLINE macro. Both are documented in the "Guide to Writing a Terminal Monitor Program or Command Processor". I haven't used TPUT or PUTLINE in a long time and are sufficiently fuzzy so that I won't post what I think are the requirements here. Hope this helps.