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

Former Member
0 Likes
820

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
Read only

Former Member
0 Likes
757

Hi,

Use SUBMIT rep AND RETURN

Reward if helpful.

Read only

Former Member
0 Likes
757

hi,

Submit <program name>

and return.

Reward with points if helpful.

Read only

Former Member
0 Likes
757

Hi,

Use


....AND RETURN 

Regards,

Nandha

Reward if it helps

Read only

Former Member
0 Likes
757

hi Saleem

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

<b>Submit report name

and return.</b>

REWARD IF USEFUL...!!

Read only

Former Member
0 Likes
757

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

Read only

Pawan_Kesari
Active Contributor
0 Likes
757

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 .