Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

"message_simple space" statement.

Former Member
0 Kudos

What is the use of "message_simple space" statement to display messages in ABAP.

1 REPLY 1

maulik
Contributor
0 Kudos

Could be a macro or a perform statement. In it's simplest form it is a display of a specific message number from message class.

In this example below, it will display a success message, "All buffers reset" which is message number 012 from message class 00.

REPORT  zdemo82 MESSAGE-ID 00.

DEFINE message_simple.

  message s012.

END-OF-DEFINITION.

START-OF-SELECTION.

  message_simple.