Hi,
I want to display a error message with link for further information in the confirmation screen. I have created a message in Z message class with long text. But the link for further information is not coming in ITS.
Can somebody help me with this.
Thanks,
Soorya
Hi Soorya,
It depends, where are You want to show this message.
Eg. in SC You can use BADI BBP_DOC_CHECK_BADI and following code
if <your_condition> = 'X'. message e904(zbbp_sc) into lf_dummy. clear ls_message. ls_message-msgty = sy-msgty. ls_message-msgid = sy-msgid. ls_message-msgno = sy-msgno. shift ls_message-msgv1 left deleting leading '0'. select single text from t100 into ls_message-message where sprsl = sy-langu and arbgb = sy-msgid and msgnr = sy-msgno. append ls_message to et_messages. endif.
Regards,
Marcin Gajewski
Add a comment