issac1029 Intermediate

Joined: 10 Dec 2005 Posts: 159 Topics: 75
|
Posted: Mon Jul 10, 2006 10:59 pm Post subject: question about 'good morning' message |
|
|
Code: | Sending messages at CICS log-on
+----------------------------------------------------------------------+
| Message for CICS Sign-on |
| Message text: |
| |
| ____________________________________________________________________ |
| ____________________________________________________________________ |
| _____________________Good morning, everyone_________________________ |
| ___________________________________________________________________ |
| _______________This is just a test, please ignore!_________________ |
| ___________________________________________________________________ |
| ___________________________________________________________________ |
| ___________________________________________________________________ |
| ___________________________________________________________________ |
| ___________________________________________________________________ |
| ___________________________________________________________________ |
| ___________________________________________________________________ |
| |
| Number of days (including today) to display message: 1 |
| |
| To remove message, clear the text area |
| |
| Enter - Execute PF3 - Cancel |
+----------------------------------------------------------------------+
+----------------------------------------------------------------------+
| |
| |
| *========>>>> Please read the following Message <<<<GOOD>> Press CLEAR |
| |
+----------------------------------------------------------------------+
IDENTIFICATION DIVISION.
PROGRAM-ID. MSGCP01.
*==============================================================*
* This program is associated with transaction MSGP. *
* This program prepares 'good-morning' messages for program *
* MSGCP02. Messages are written to a VSAM KSDS file that must *
* be accessible by CICS. *
* *
*==============================================================* |
1)When I log on our system,there is no such message,does that means the MSGP TRANSACTION is removed from Logon on process of cics?
Code: | TEXT "Good morning" message program Before the "good morning" message is sent. "Good morning" message program exit XGMTEXT |
2) for information in this Table 2. Alphabetical list of global user exit points ,it was to said that the EXIT is before the "good morning" message is sent,so I wander that whether the exit is still exist under the situation of removing Good morning" message from log-on process?Or this EXIT is always there where we suppose it to be when the process has no welcome message? |
|