2008 Mar 06 12:33 PM
Hi, all...
Does anybody know how can I call displaying message class from program? Is there FM for that?
I have only name of message class...
Pls Help...
Thanks!
Zuzana
Hi, all...
Does anybody know how can I call displaying message class from program? Is there FM for that?
I have only name of message class...
Pls Help...
Thanks!
Zuzana
2008 Mar 06 12:47 PM
hi,
if u asking how to display message of message class then
MESSAGE s000(zmsg_fmtr)
here s -- status
000 -- number of message
zmsg_fmtr --- message class
reward if usefull....
2008 Mar 06 12:49 PM
Hello Zuzana
I am not really sure what you mean but perhaps the following samples might be helpful (message class = '00'):
MESSAGE s007(00) WITH 'Table'.
* &1 is empty
If you add the message id to the REPORT statement then you can omit the message class because it is globally known in the report:
REPORT zus_test1 MESSAGE-ID 00.
...
MESSAGE s007 WITH 'Table'.
* &1 is empty
Regards
Uwe
2008 Mar 06 12:50 PM
Not Message, but Message class....
It should do the same as transaction SE91
2008 Mar 06 12:57 PM
Hello Zuzana
I guess function group WBMESSAGES may contain useful function modules for you, e.g.:
RS_MSG_EDTR_SHOW_MESSAGE
RS_MSG_SELECT_MESSAGE
Regards
Uwe
2008 Mar 06 1:12 PM
2008 Mar 06 2:08 PM
Hello Zuzana
How about a simple CALL TRANSACTION?
ld_msgclass = '00'.
...
SET PARAMETER ID 'MAG' FIELD ld_msgclass.
CALL TRANSACTION 'SE91' AND SKIP FIRST SCREEN.
...
Regards
Uwe
2008 Mar 06 2:20 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |