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

Skip first screen

Former Member
0 Likes
1,327

Hi,

What happens if I call transaction FBL3n by providing the option skip first screen.

Will it execute the transaction with all the values which i provide.

Thanks,

Avi.

13 REPLIES 13
Read only

FredericGirod
Active Contributor
0 Likes
1,223

Yes

Rgd

Frédéric

Read only

former_member404244
Active Contributor
0 Likes
1,223

Hi avinash,

When u call the transaction fbl3n and skip first screen,it will execute the transaction and the values what u provide

will be there.

Regards,

Nagaraj

Read only

former_member480923
Active Contributor
0 Likes
1,223

You have to pass the value by using the set paramater ID for the fields for which u need to pass value for eg company code & GL account etc. and then call transaction FBL3N and skip first screen........ Its will run with ur value.

Hope this helps

Anirban

Read only

Former Member
0 Likes
1,223

hi

When you use call trabsaction with skip first screen it will skip the first screen of the transaction.But you have to pass the value to the first screen using set parameterId.

Regards

Aashish Garg

Read only

former_member404244
Active Contributor
0 Likes
1,223

Hi avinash,

U have to write the code as

SET PARAMETERID ' ' FIELD ' '.

CALL TRANSACTION 'TCODE' AND SKIP FIRST SCREEN.

Regards,

Nagaraj

Read only

Former Member
0 Likes
1,223

Hi,

you need to give all mandatory fields and those should be valid with the help of set parameter id, and then call the transaction with option skip first screen. then only it executes the transaction.

Regards

vijay

Read only

Former Member
0 Likes
1,223

HI,

yes

skip first screen will skip the first screen of the transaction.

Remember to set parameter id before u call transaction.

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/set_para.htm

rgds,

latheesh

Read only

Former Member
0 Likes
1,223

Hi !

Something even better !

The FBL3N is a report (RFITEMGL) so you can SUBMIT the RFITEMGL and fill every field on the selection-screen

using the SUBMIT ... WITH ... command.

Then you're more flexible in the fields that can be filled. Using a call transaction ... and skip first screen you can only "fill" fields that have a parameter ID !

So... check it out...

Regards

Rainer

Some points would be nice...

Read only

Former Member
0 Likes
1,223

Hi Avinash,

1. RFITEMGL

2. tcode FBL3n is associated with program RFITEMGL.

3. So instead of using call transaction,

use SUBMIT

(see F1 help on this to know about the

extensions, so that we can pass data

to the inital screen)

regards,

amit m.

Read only

Former Member
0 Likes
1,223

Hai

SET PARAMETER ID 'SAK' FIELD IT_SKA1-SAKNR.

CALL TRANSACTION 'FBL3n' AND SKIP FIRST SCREEN.

Thanks & regards

Sreeni

Read only

0 Likes
1,223

Hi Avi,

You are right !!! The statement will call the transaction skipping first screen.But before calling the transaction with this statement you have to set the values of all the mandatory fields on the first screen of transaction.

If you have any more query please revert.

Else reward point n close the thread.

Regards

mayank

Read only

Former Member
0 Likes
1,223

Hi

Just some guys as said to you the trx FBL3N runs the report RFITEMGL, so it should be better to do a SUBMIT instead of CALL TRANSACTION.

I only want to say that report uses a logical database, so see the help for SUBMIT with the option for free selections.

Max

Read only

Former Member
0 Likes
1,223

HI

GOOD

YES YOU CAN DO THIS AND IT WILL DISPLAY YOU THE NEXT SCREEN,AND I HOPE IT EXECUTE THE TRANSACTION WITH ALL THE VALUES .

THANKS

MRUTYUN