|
|
| Author |
Message |
kratos86
New User
Joined: 17 Mar 2008 Posts: 17 Location: Anna NGR
|
|
|
|
Hi,
In the assembler language do have any instructions to display the records like wat we have in cobol. |
|
| Back to top |
|
 |
References
|
Posted: Tue Jun 03, 2008 12:24 pm Post subject: Re: HOw to display using assembler |
 |
|
|
 |
GAFUR
New User
Joined: 19 May 2005 Posts: 32
|
|
|
|
| you can use WTO macro to display. |
|
| Back to top |
|
 |
enrico-sorichetti
Global Moderator
Joined: 14 Mar 2007 Posts: 2656 Location: italy
|
|
|
|
wto will write to the operator console,
and you might get away with it once in a while
but it would be better not to make an habit out of it
to display/print things You must follow the usual approach
open a dcb
write
close the dcb
usually most of the shops have already ( if decently setup ) some kind of
display macro which , under the covers, will do that
and quite often associated to a parm switch to enable disable printing
( that' s the way I usually setup things ) |
|
| Back to top |
|
 |
Bill O'Boyle
Active User
Joined: 14 Jan 2008 Posts: 294 Location: Orlando, FL, USA
|
|
|
|
If you're adventurous, you can use the LE Compliant-Routine "CEEPIPI", then use "CEEMSG" to display your message.
Bill |
|
| Back to top |
|
 |
Bill Dennis
Active User
Joined: 17 Aug 2007 Posts: 277 Location: Iowa, USA
|
|
|
|
| If your WTO macro includes parameter ROUTCDE=11 the display will stay off the console but will appear in the JOBLOG for the job. |
|
| Back to top |
|
 |
|
|