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

BDC

Former Member
0 Likes
780

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
Read only

former_member195383
Active Contributor
0 Likes
748

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
Read only

GauthamV
Active Contributor
0 Likes
748

hi,

by using ctu_params structure u can handle these situations.

reward points if hlpful.

Read only

Former Member
0 Likes
748

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 .

Read only

Former Member
0 Likes
748

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

Regards,

Vamshidhar.

Read only

former_member195383
Active Contributor
0 Likes
749

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

Read only

Former Member
0 Likes
748

Thanks