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

Error analysis in BDC direct.

Former Member
0 Likes
539

How to do error analysis in bdc direct?

3 REPLIES 3
Read only

marcelo_ramos1
SAP Mentor
SAP Mentor
0 Likes
496

Hi,

Go to SM35 and look for you register. There you can analysis the errors.

If you need to get errors in runtime, you can use MESSAGES table in call transaction as follow.

 CALL TRANSACTION 'SE38'  USING BDCDATA  MODE 'N' 
                          MESSAGES INTO ITAB.     "<--- Get it here 

READ TABLE ITAB WITH KEY MSGTYP = <E, I, W...>.

Regards.

Marcelo Ramos

Read only

Former Member
0 Likes
496

Hi Abi,

You need to do it by checking the RETURN table which is of type BAPIRET..

Just search SDN and you will find lots of post on this.

Regards,

Atish

Read only

0 Likes
496

Hi,

After analysis the error logs using sm35. How to solve them?

Message was edited by:

abi baski