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 class RP

sanjeev_das4
Explorer
0 Likes
1,279

we have an error message 'reserved for RP' when running a report . The message class is RP and number is 016. Can anyone tell what the message means .

1 ACCEPTED SOLUTION
Read only

matt
Active Contributor
0 Likes
839

The message is defined as just & & & &, so the text is being generated in the program. Run the transaction where you get the error in debug. Put a watchpoint on sy-msgno = 16, and see what's causing the message to be generated.

matt

4 REPLIES 4
Read only

matt
Active Contributor
0 Likes
840

The message is defined as just & & & &, so the text is being generated in the program. Run the transaction where you get the error in debug. Put a watchpoint on sy-msgno = 16, and see what's causing the message to be generated.

matt

Read only

Former Member
0 Likes
839

the message class is where u will maintain messages(all success and error messages) which are required to your program and the number 016 is the number which u ll give in the message class for a particular message...which u have used in the program.

Read only

sanjeev_das4
Explorer
0 Likes
839

Sorry Matt . the message number is 000 .

Read only

matt
Active Contributor
0 Likes
839

Message 000 seems to be just used as a comment for the RP message class. Run your transaction as I said above, but with watchpoint sy-msgno = 000.

matt