Application Development and Automation 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: 
Read only

"message_simple space" statement.

Former Member
0 Likes
559

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

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

1 REPLY 1
Read only

maulik
Contributor
0 Likes
482

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.