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: 

Question about RFBIBL00

Former Member
0 Kudos

I am using RFBIBL00 in a program. It is creating a BDC session, but I need it to process the session also. Right now, it only processes by going to SM35 transaction and clicking process. Can someone please let me know how to get the BDC to process programmatically?

SUBMIT rfbibl00

WITH ds_name = file_path

WITH callmode = 'B'

WITH xlog = 'X'

AND RETURN.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

You can use RSBDCSUB program to process the session name , So when you use this it will process your created session immediately.

You can check the documentation RSBDCSUB program for more information

Pavan

5 REPLIES 5

Former Member
0 Kudos

Hi

You can use RSBDCSUB program to process the session name , So when you use this it will process your created session immediately.

You can check the documentation RSBDCSUB program for more information

Pavan

naimesh_patel
Active Contributor
0 Kudos

As noted by Pavan, you can submit the BDC session by submitting RSBDCSUB.

SUBMIT RSBDCSUB 
WITH MAPPE = L_GROUP " << YOUR SESSION NAME
AND RETURN.

Regards,

Naimesh Patel

0 Kudos

I need a way of processing a unique BDC session and not all those with that session name. If I use program RSBDCBTC instead, how do I get the queue ID from the created BDC session?

0 Kudos

Hi

You can get unique QID from APQI table,

for that you need to pass your prog name user id date and time.

Thanks

Pavan

0 Kudos

Thank you Pavan and Naimesh! I appreciate your help!