‎2006 Dec 04 5:44 AM
What are the basic steps to get a message when there are no transactions for a custom gl report is run. I need the date Header
message "there are no documents".
‎2006 Dec 04 5:46 AM
Getting a message is simple:
message e000(zz) with 'No Documents'.
The pre requisite is that you should have defined a message class in se91 with name zz and a message 000 should be defined in the message class. the message 000 should have an '&' '&' '&' '&'.
‎2006 Dec 04 5:46 AM
Getting a message is simple:
message e000(zz) with 'No Documents'.
The pre requisite is that you should have defined a message class in se91 with name zz and a message 000 should be defined in the message class. the message 000 should have an '&' '&' '&' '&'.
‎2006 Dec 04 5:48 AM
Hi Ramudu
Suppose you are trying to extract the records in internal table <itab>, statement like below can help you.
IF NOT <itab> IS INITIAL.
message i000(01) with 'No Documents found'.
ENDIF.Note that this can help only incase of Online Processing.
Kind Regards
Eswar
‎2006 Dec 04 5:48 AM
hi,
try this.
Message 'There are No Documents' TYPE 'S'. "status bar messge
Message 'There are No Documents' TYPE 'E'. "Error messgergds
Anver