‎2010 Aug 03 12:34 PM
Hi,
I am trying to display error message while running through an adobe form. Am using the below code to display the message but its running through the code and not display any kind of message. Just wondering if am missing any thing.
DATA message_handler TYPE REF TO cl_hrbas_message_list.
DATA: message_dummy1 TYPE string.
DATA new_message TYPE symsg.
CREATE OBJECT message_handler.
MESSAGE e115(z_msg) INTO message_dummy1.
MOVE-CORRESPONDING sy TO new_message. u201Cgetting the desc of msg. in new_message
CALL METHOD message_handler->if_hrbas_message_handler~add_message
EXPORTING
message = new_message.
Thanks,
Kumar
‎2010 Aug 03 4:08 PM