|
|
| Author |
Message |
srvmani Warnings : 1 New User
Joined: 30 Dec 2003 Posts: 5
|
|
|
|
I would like to see some hard coded messages into the screen. I know DISPLAY statement wont work. Is there any alternative way to do this.
Thanks in Advance. |
|
| Back to top |
|
 |
References
|
Posted: Thu May 15, 2008 10:34 am Post subject: Re: Display some hard coded messages into CICS screen |
 |
|
|
 |
dkalyan_c
New User
Joined: 06 Apr 2006 Posts: 9
|
|
|
|
if u wanna see messages on screen.. u mean CICS screen, then, u can always do that by sending that message to map output using EXEC CICS SEND command.
let me know if this answers u or ur looking for something else |
|
| Back to top |
|
 |
vasanthkumarhb
Senior Member
Joined: 06 Sep 2007 Posts: 300 Location: Bang,iflex
|
|
|
|
Hi,
Yes you can send a message as below
| Code: |
MOVE "MESSAGE..............' TO MESSAGE-TEXT.
EXEC CICS
SEND TEXT
FROM(MESSAGE-TEXT)
END-EXEC. |
|
|
| Back to top |
|
 |
|
|