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

Question about RFBIBL00

Former Member
0 Likes
965

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

Former Member
0 Likes
913

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

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.

5 REPLIES 5
Read only

Former Member
0 Likes
914

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

Read only

naimesh_patel
Active Contributor
0 Likes
913

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

Read only

0 Likes
913

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?

Read only

0 Likes
913

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

Read only

0 Likes
913

Thank you Pavan and Naimesh! I appreciate your help!