Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BAPI Return table

Former Member
0 Likes
462

Hi all.

My return table from BAPI is giving an error message (TYPE 'E')

Can anyone let me know , where is this LOG , where i can view the detailed message.

Also , the message is coming like "Messages for article 59941: log number 0000000000000935 " but the LOG_NO field in return is giving a different number (00000000000000008746) ????

Thanks

1 REPLY 1
Read only

Former Member
0 Likes
263

DATA: gv_text type STRING.

        SELECT SINGLE text
        INTO gv_text
        FROM t100
        WHERE arbgb EQ gt_err_bi-msgid
          AND msgnr EQ gt_err_bi-msgnr
          AND sprsl EQ sy-langu.

Where gt_err_bi is the table that holds the errors.

T100 hold the error messages.

Greetings,

Blag.