‎2006 May 19 8:13 AM
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.
‎2006 May 19 8:14 AM
‎2006 May 19 8:20 AM
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
‎2006 May 19 8:23 AM
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
‎2006 May 19 8:26 AM
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
‎2006 May 19 8:29 AM
Hi avinash,
U have to write the code as
SET PARAMETERID ' ' FIELD ' '.
CALL TRANSACTION 'TCODE' AND SKIP FIRST SCREEN.
Regards,
Nagaraj
‎2006 May 19 8:53 AM
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
‎2006 May 19 9:16 AM
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
‎2006 May 19 9:23 AM
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...
‎2006 May 19 9:23 AM
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.
‎2006 May 19 9:30 AM
Hai
SET PARAMETER ID 'SAK' FIELD IT_SKA1-SAKNR.
CALL TRANSACTION 'FBL3n' AND SKIP FIRST SCREEN.
Thanks & regards
Sreeni
‎2006 May 19 9:40 AM
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
‎2006 May 19 9:37 AM
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
‎2006 May 19 9:44 AM
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