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

rsbdcsub

Former Member
0 Likes
910

hi all,

Can anyone give detailed description for RSBDCSUB.

Thanks in advance.

Sri.....

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
851

It's the report to run the batchinput sessions.

When you create to B.I. session, you can execute it by transaction SM35 (but it uses rsbdcsub) or rsbdcsub.

For example you can use it in the same program where you create B.I.:

Here the code to fill the structures of FI batch input

standard....

...here it creates session...

SUBMIT RFBIBL00 WITH DS_NAME = VA_FILE

WITH CALLMODE = CALLMODE AND RETURN.

....here it runs session....

SUBMIT RSBDCSUB WITH MAPPE = P_NAME

WITH VON = SY-DATUM

WITH BIS = SY-DATUM

WITH FEHLER = ' '

  • TO SAP-SPOOL

  • LIST NAME P_NAME

  • LIST DATASET P_NAME

  • COVER TEXT P_NAME

  • NEW LIST IDENTIFICATION ' '

EXPORTING LIST TO MEMORY

AND RETURN.

Message was edited by: max bianchi

3 REPLIES 3
Read only

Former Member
0 Likes
851

RSBDCSUB is used for executing BDC sessions, e.g. you create BDC sessions in a user exit and want to execute them once every day. You can schedule RSBDCSUB to execute you BDC sessions at a particular time.

Cheers,

Sanjeev

Read only

Former Member
0 Likes
851

If you have a program creating a BDC session, you can have it submit RSBDCSUB and the session will execute automatically.

Rob

Read only

Former Member
0 Likes
852

It's the report to run the batchinput sessions.

When you create to B.I. session, you can execute it by transaction SM35 (but it uses rsbdcsub) or rsbdcsub.

For example you can use it in the same program where you create B.I.:

Here the code to fill the structures of FI batch input

standard....

...here it creates session...

SUBMIT RFBIBL00 WITH DS_NAME = VA_FILE

WITH CALLMODE = CALLMODE AND RETURN.

....here it runs session....

SUBMIT RSBDCSUB WITH MAPPE = P_NAME

WITH VON = SY-DATUM

WITH BIS = SY-DATUM

WITH FEHLER = ' '

  • TO SAP-SPOOL

  • LIST NAME P_NAME

  • LIST DATASET P_NAME

  • COVER TEXT P_NAME

  • NEW LIST IDENTIFICATION ' '

EXPORTING LIST TO MEMORY

AND RETURN.

Message was edited by: max bianchi