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.