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 <PROG>

Former Member
0 Kudos

Hi Friends,

I am facing problem in submit statement,

I have to submit my report internal table records into 'F.13' transaction through SUBMIT statement without selection-screen of F.13,

my internal table having fields,

bukrs

gjahr

zuonr

budat

after processing of this records again i have to come to my program.

Please give me the solution for the same.....

Regards,

Saleem.......

6 REPLIES 6

Former Member
0 Kudos

Hi,

Use SUBMIT rep AND RETURN

Reward if helpful.

Former Member
0 Kudos

hi,

Submit <program name>

and return.

Reward with points if helpful.

Former Member
0 Kudos

Hi,

Use


....AND RETURN 

Regards,

Nandha

Reward if it helps

Former Member
0 Kudos

hi Saleem

This will definitely work..i have used it...

<b>Submit report name

and return.</b>

REWARD IF USEFUL...!!

Former Member
0 Kudos

HI Saleem,

Use following syntax to process record from selection-screen

<b>submit <REP> using selection-screen <Screen Number>.</b>

This will help you to solve your problem.

<b>Rewards with points if useful</b>

Regards,

Kinjal

Pawan_Kesari
Active Contributor
0 Kudos

define ranges for your input... for example if you have range

r_bukrs

r_gjahr

r_zuonr

r_budat

then call will be

SUBMIT SAPF124 WITH BUKRX IN r_bukrs

WITH GJAHX IN r_gjahr

WITH POSTDATE IN r_budat .