‎2007 Oct 04 2:10 PM
Guys,
Iam submitting the Standard Program RSBDCSUB and I had the parameter RETURN in my submit statement.When i execute the program it is displaying the list and it is not returning back to the program after SUBMIT.I have to do some more logic after the SUBMIT is executed,I would like to know if there is any other way to acheive this.
Thanks,
KC.
‎2007 Oct 04 2:13 PM
Hi..
You can use this way.
SUBMIT RSBDCSUB
VIA SELECTION-SCREEN
AND RETURN.
<< WRITE YOUR NEXT STATEMENTS HERE>>
This will return the Control to the Calling Report after executing RSBDCSUB.
<b>REWARD IF HELPFUL.</b>
‎2007 Oct 04 2:15 PM
hi
use submit keyword like thid
SUBMIT sy-repid and Return.
it will returns to u r program again
it may useful to u
‎2007 Oct 04 2:18 PM
HI,
HERE IS THE SYNTAX
Submit RSBDCSUB via selection-screen
with mappe = 'abc'
and return.
Thanks
Venki
‎2007 Oct 04 2:20 PM
If the program is a report, it will display the report first. Then when you hit the back button it will return to the original calling program.
- April King