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: 

HOW DISABLE THE SUCESS MESSAGE IN BDC

Former Member
0 Kudos

HI,

I have done a BDC in which runs in E mode but some sucess message in Green comes and wait for the user to press enter, Please tell me to over come this.

regards,

Prabhu

Points assured.

1 ACCEPTED SOLUTION

megha_h
Participant
0 Kudos

Hi Prabhu,

data : msgtab type standard table of BDCMSGCOLL.

Use CALL TRANSACTION .... MESSAGES INTO msgtab.

In this case all messages (S,E,I) will be collected in msgtab.

Regards

Megha

4 REPLIES 4

Former Member
0 Kudos

Hi,

Then you need to handle one more OKCODE before using call transaction.

Regards,

Satish

0 Kudos

sathish,

Please tell how to do that ?

regards,

Prabhu

megha_h
Participant
0 Kudos

Hi Prabhu,

data : msgtab type standard table of BDCMSGCOLL.

Use CALL TRANSACTION .... MESSAGES INTO msgtab.

In this case all messages (S,E,I) will be collected in msgtab.

Regards

Megha

Former Member
0 Kudos

for this change the mode to N and check for error messages after call transaction for each record .

this is possible by :

IF sy-msgty NE 'E' AND sy-subrc EQ 0.

this means no error and move this recod in success file

else

this means error is thier and move this record into error file

endif.

this is the best way.

plz reward point if helps.

regards,

rahul