‎2006 Dec 06 3:46 PM
Hi,
How would I automtacally have my BDC session to process in the background and complete it without going through SM35 to process in the background.
Thanks,
Will
‎2006 Dec 06 3:56 PM
Hi Will,
Please check this sample code.
SUBMIT rsbdcsub AND RETURN
EXPORTING LIST TO MEMORY
WITH mappe = p_sessionnanme
WITH von = w_datum
WITH bis = sy-datum
WITH z_verarb = c_true
WITH fehler = c_false.Regards,
Ferry Lianto
‎2006 Dec 06 3:48 PM
Hi Will,
You can run/submit SAP standard program RSBDCSUB which will process your session automatically.
Regards,
Ferry Lianto
‎2006 Dec 06 3:52 PM
Hi Ferry,
Would the code be
submit RSBDCSUB.
Would I put this after the statement PERFORM BDC_TRANSACTION USING 'GS01'.
So would it be
PERFORM BDC_TRANSACTION USING 'GS01'.
submit RSBDCSUB.
I had done this before years ago and didn't copy the code . Would you help with the syntax.
Thanks
Hi All your replies are faster than my typing.
Will
Message was edited by:
Will Ferrell
Message was edited by:
Will Ferrell
‎2006 Dec 06 3:50 PM
‎2006 Dec 06 3:52 PM
U can do it via RSBDCSUB.
submit RSBDCSUB via selection-screen with mappe = <session name>
z_verarb = 'X'
fehler = 'X'.
‎2006 Dec 06 3:56 PM
Hi Will,
Please check this sample code.
SUBMIT rsbdcsub AND RETURN
EXPORTING LIST TO MEMORY
WITH mappe = p_sessionnanme
WITH von = w_datum
WITH bis = sy-datum
WITH z_verarb = c_true
WITH fehler = c_false.Regards,
Ferry Lianto
‎2006 Dec 06 3:59 PM
‎2006 Dec 06 4:00 PM
hi ,
you can also write this statement
SUBMIT RSBDCSUB VIA SELECTION-SCREEN.
Regards,
GNK