‎2007 Dec 22 8:08 AM
Hi,
i am having 2 - 3 values in an internal table like
this below
A
B
C
I want to display an error message like this
Data record not found for A, b and c
Error message should be displayed based on the internal table values
How i can do this?
Regards
senthil
‎2007 Dec 22 8:23 AM
create your own message id. say ZMSG in the 001 row put text and activate
check the values. if not found.
message e001(zmsg).
Reward if useful
Thanks
ANUPAM
‎2007 Dec 22 8:21 AM
‎2007 Dec 22 8:23 AM
create your own message id. say ZMSG in the 001 row put text and activate
check the values. if not found.
message e001(zmsg).
Reward if useful
Thanks
ANUPAM
‎2007 Dec 22 10:02 AM
Hi,
You can do as below :
If check for the condition.
if sy-subrc NE 0.
message 'Data record not found for A B and C' type 'E'.
endif.
endif.
Thanks,
Sriram Ponna.