Skip to Content
0
Former Member
Jun 10, 2011 at 06:06 AM

Display a message in abap

1772 Views

hi experts,

when i'm trying to print a message using following code

IF SY-SUBRC EQ 0.

PERFORM PRINT_DATA.

else.

message I999(YH01) with 'No data exists for chosen selection'.

ENDIF.

I'm getting the message like "I:YH01:999 No data exists for chosen selection"

how can i only display the "No data exists for chosen selection" message? without "I:YH01:999"

Thanks.