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

Re Submit in Function Module

Former Member
0 Likes
395

Hi,

I am using Function Module for BDC Session and i am calling this Function Module using ABAP Proxy Method, When i am trying to sumbit this Function Module in BAckgorund using SUBMIT rsbdcsub with respective parameters and return. code but the program is processing the Desire result but it is not returing back.

Can i Know is there any way to call back the Function Module Once the Session is processed ?????

2 REPLIES 2
Read only

Former Member
0 Likes
375

Hello,

Are you <b>SUBMIT AND RETURN</b>

Read only

Former Member
0 Likes
375

Hi

U should call that program in this way:

SUBMIT RSBDCSUB WITH MAPPE = <SESSION NAME>
                                WITH VON      = SY-DATUM
                                WITH BIS       = SY-DATUM
                                WITH FEHLER = ' '
                                        EXPORTING LIST TO MEMORY
                                                                         AND RETURN.

Max