2008 Jun 18 7:02 AM
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
2008 Jun 18 7:06 AM
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
2008 Jun 18 7:05 AM
hi,
by using ctu_params structure u can handle these situations.
reward points if hlpful.
2008 Jun 18 7:05 AM
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 .
2008 Jun 18 7:05 AM
In Back ground .Information messages and status messages are handled automatically ........no need to code any thing.....
Regards,
Vamshidhar.
2008 Jun 18 7:06 AM
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
2008 Jun 19 7:52 AM