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 statement

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

Hi,

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

Regards,

Bhaskar

Former Member

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.