cancel
Showing results for 
Search instead for 
Did you mean: 

Error Message

Former Member
0 Kudos

Hi All

I am checking accounting information in ecc for the particular shopping cart.I am populating error message

'Line 1: Accounting Data Not Maintained for the Plant fi02 in ECC'But in portal i am getting this error message as

Line1 :Line 1: Accounting Data Not Maintained for the Plant fi02  in ECC.

I have maintained this message in message class as

Line &1: Accounting Data Not Maintained for the Plant &2 in ECC.

      ls_messages-msgty = c_error.

      ls_messages-msgid = c_id.

      ls_messages-msgno = '017'.

      ls_messages-msgv1 = line_val.

      ls_messages-msgv2 = ls_items-be_plant.

      APPEND ls_messages TO et_messages.

      CLEAR ls_messages.

Line1 Line1 is getting two times.I have debugged but unable to found root cause.

It should be Line1 : Accounting Data Not Maintained for the plant Fi20 in ECC.

Thanks

Vamsi

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vamsi,

It looks like the Line 1 extra is coming from standard stuff. In your message try to remove the Line &1 and see if it gets solve.

Thank you

Ritesh

Former Member
0 Kudos

HI Ritesh

Thanks for the reply.

It was with custom code.

Thanks

Vamsi