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_SESSION

Former Member
0 Likes
326

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

Former Member
0 Likes
309

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.

Read only

0 Likes
309

Hi Adjhan,

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

So how can i retrive the messages.