Application Development 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: 

BDC

Former Member
0 Kudos

Hi,

> How to handle a situation in BDC if status messages occur in

> background processing. ( In BDC if any information message or status message

> occur in foreground then we press enter to continue the process, if it occurs.

Thanks,

Murali

Edited by: Murali on Jun 18, 2008 8:02 AM

1 ACCEPTED SOLUTION

former_member195383
Active Contributor
0 Kudos

declare

DATA: itab TYPE TABLE OF bdcmsgcoll .

while calling the transaction use the below code..

CALL TRANSACTION tcode USING lt_bdcdata

MODE 'E' MESSAGES INTO itab.

The messages will be stored in itab..

Reward points if the above is helpful...

Regards

Rudra

5 REPLIES 5

GauthamV
Active Contributor
0 Kudos

hi,

by using ctu_params structure u can handle these situations.

reward points if hlpful.

Former Member
0 Kudos

Hi,

If the error occurs in background you can collect the messages in an error log.You can make use of FM FORMAT_MESSAGES.But if the error occurs the transaction will not get updated .

Former Member
0 Kudos

In Back ground .Information messages and status messages are handled automatically ........no need to code any thing.....

Regards,

Vamshidhar.

former_member195383
Active Contributor
0 Kudos

declare

DATA: itab TYPE TABLE OF bdcmsgcoll .

while calling the transaction use the below code..

CALL TRANSACTION tcode USING lt_bdcdata

MODE 'E' MESSAGES INTO itab.

The messages will be stored in itab..

Reward points if the above is helpful...

Regards

Rudra

Former Member
0 Kudos

Thanks