2007 Dec 03 8:31 PM
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.
2007 Dec 03 8:33 PM
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.
2007 Dec 03 8:33 PM
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
2007 Dec 03 8:40 PM
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
2007 Dec 03 9:10 PM
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?
2007 Dec 03 9:15 PM
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
2007 Dec 03 9:47 PM