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_SESSION

Former Member
0 Kudos

Hi,

I have to display the report output for the BDC Session program.

Is there any way i can track the message of the BDC Session(RSBDCSUB).

Thanks & Regards

Suresh Kumar

2 REPLIES 2

Former Member
0 Kudos

Create a table first for your message


DATA  BEGIN OF bdc_msg OCCURS 0.
        INCLUDE STRUCTURE bdcmsgcoll.
DATA END OF bdc_msg.

And use that table when calling the transaction.


  CALL TRANSACTION 'XXXX'
  USING bdc_tab
        MODE my_mode
        UPDATE 'S'
        MESSAGES INTO bdc_msg.

Check the table for messages.

Or run your session using a different mode so you know what is happening in your BDC session.

0 Kudos

Hi Adjhan,

I am not using call transaction.I am using session method to upload.

So how can i retrive the messages.