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

Find BDC error in Zprogram

Former Member
0 Likes
478

Hi guys,

Anybody have program or utility to pick up the BDC Errors from Zprograms.

I want to know number of BDC errors(Due to Screen change/Field change/etc) exists in set of zprograms.

Appreciable if Listing of BDC errors and error count can be produced by it.

reference please.

Thanks.

Ambi.

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
451

Hi,

better use :

CALL TRANSACTION tcode USING bdcdata MODE mod MESSAGES INTO etab.

if sy-subrc <> 0.

-> analyse error-table etab

...

A.

3 REPLIES 3
Read only

Former Member
0 Likes
451

In Session Method , it will create LOGs ,So u can get the LOG.

In CALL transaction method u have to get the Error Log by using MESSAGES into MSGTAB.

Regards

Prabhu

Read only

andreas_mann3
Active Contributor
0 Likes
452

Hi,

better use :

CALL TRANSACTION tcode USING bdcdata MODE mod MESSAGES INTO etab.

if sy-subrc <> 0.

-> analyse error-table etab

...

A.

Read only

0 Likes
451

hi Andreas,

Sorry for my poor explanation.

I am talking about tool/program which should analyse the Zprogram and find out.

My question is not related with BDC program execution and error output.

I want to know what error and where the BDC error occured for Zbdcprogram without executing Zbdcprogram.

Need seperate program to find out thi BDC error, without executing the BDC Program (zbdcprogram).

Hope you understand.

Ambi.