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

SUBMIT statement

Former Member
0 Likes
481

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.

4 REPLIES 4
Read only

varma_narayana
Active Contributor
0 Likes
464

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>

Read only

Former Member
0 Likes
464

hi

use submit keyword like thid

SUBMIT sy-repid and Return.

it will returns to u r program again

it may useful to u

Read only

Former Member
0 Likes
464

HI,

HERE IS THE SYNTAX

Submit RSBDCSUB via selection-screen

with mappe = 'abc'

and return.

Thanks

Venki

Read only

Former Member
0 Likes
464

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