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: 

submit RSBDCSUB

Former Member
0 Kudos

Hi,

I am writing a conversion program, which creates a BDC session.

I am processessing the session from within the program using the

submit RSBDCSUB with selection-table rspar_tab and return, which is leaving me at Batch Input: Process all unprocessed sessions.

But I want to get back to My conversion program output without hitting 'back button' on 'Batch Input' screen.

How can I accomplish that?

Thanks,

Vivek

1 ACCEPTED SOLUTION

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try this again.


SUBMIT rsbdcsub AND RETURN
                EXPORTING LIST TO MEMORY
                WITH mappe = p_sesion (your session name)
                WITH von   = sy-datum
                WITH bis   = sy-datum
                WITH z_verarb = 'X' 
                WITH fehler   =  space.

Regards,

Ferry Lianto

6 REPLIES 6

Former Member
0 Kudos

Hi,

Check if this helps -

ashish

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try this.


SUBMIT rsbdcsub WITH mappe = p_sesion(your session name)
                WITH von   = sy-datum
                WITH bis   = sy-datum
                WITH z_verarb = 'X' 
                AND RETURN.            "Add here

Regards,

Ferry Lianto

0 Kudos

Hi Ferry,

That is what have written, but it is leaving me at Batch Input Screen after processing the session.

But I want to get back to my program output screen once the session is processed. I used the 'submit rsbdcsub with mappe=

v_verarb=

and return'

0 Kudos

Try adding a COMMIT WORK after SUBMITing RSBDCSUB.

Rob

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try this again.


SUBMIT rsbdcsub AND RETURN
                EXPORTING LIST TO MEMORY
                WITH mappe = p_sesion (your session name)
                WITH von   = sy-datum
                WITH bis   = sy-datum
                WITH z_verarb = 'X' 
                WITH fehler   =  space.

Regards,

Ferry Lianto

0 Kudos

Thanks Ferry,

It worked