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
1,257

Hi all,

When the user clicks on a document number it should use transaction FB03 to display the document details.

I have done the same for transaction FBL5N by using SUBMIT on program RFITEMAR.

But for FB03 the program SAPMF05L is of TYPE M, so i cannot use SUBMIT.

Is there any alternative program for FB03 ?

Regards,

Rajvansh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
954

Hi,

SET PARAMETER ID '<param_id>' for the selection screen parameter....

and then

Use Call Transaction FB03 AND SKIP FIRST SCREEN.

This will help.

Regards,

Kunjal

4 REPLIES 4
Read only

Former Member
0 Likes
955

Hi,

SET PARAMETER ID '<param_id>' for the selection screen parameter....

and then

Use Call Transaction FB03 AND SKIP FIRST SCREEN.

This will help.

Regards,

Kunjal

Read only

Former Member
0 Likes
954

Hi Ravi,

For this set the cursor on the document number and use CALL TRANSACTION in the event AT LINE SELECTION. this will work.

Regards,

Swapna.

Read only

Former Member
0 Likes
954

Hi,

For type M use CALL TRANSACTION (type M program) or SUBMIT (type 1 program).

Regards,

Bhaskar

Read only

Former Member
954

use following statements

set parameter id 'BLN' field <document number>.

set parameter id 'BUK' field <company code>.

set parameter id 'GJR' field <fiscal year>.

call transaction 'FB03' and skip first screen.