cancel
Showing results for 
Search instead for 
Did you mean: 

Error message with Long text in ITS

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The issue was happenning in the confirm goods transaction in SRM ITS. SAP provided OSS note 1012397 to solve this issue.

Former Member
0 Kudos

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