‎2009 May 12 12:35 PM
Hi experts,
I have a transaction FPP3. I created a program for displaying the business partners, but for the first run it pops up a window. How can I skip this window?? It is a problem only for the first run.
‎2009 May 12 12:38 PM
hi,
get the program name and screen number of that window and in the BDC table give the entries for this program and screen number and also give the BDC_OKCODE as '=ENTE'.
Hope this solves your issue...
Regards,
Siddarth
‎2009 May 12 12:43 PM
Okay, but you have to enter the Business partner before the ENTER. That's what I want to avoid.
I want to start with the following screen. But for the first time it asks for the business partner. After it it wont.
‎2009 May 12 12:48 PM
does this screen comes only on BDC run.....
or do you get the same screen when you normal run the transaction fpp3.
‎2009 May 12 12:51 PM
Hi:
Probably you are talking about the pop up which asks Open Business partner which is default setting
Regards
Shashi
‎2009 May 12 1:07 PM
Hi,
Try using 'Call Transaction 'FPP3' ..... and skip first screen' statement.
Regards,
Adapala.
‎2009 May 12 1:12 PM
Hi,
You have to pass the value by using the set paramater ID for the field for which u need to pass value for and then call transaction FPP3 and skip first screen........ It will run with ur value.
For example: SET PARAMETERID ' ' FIELD ' '.
CALL TRANSACTION 'TCODE' AND SKIP FIRST SCREEN.
When you use call transaction 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.)
Hope this is useful.
‎2009 May 12 1:26 PM
‎2009 May 12 2:12 PM
Using SET PARAMETER ID and then
CALL TRANSACTION and SKIP FIRST SCREEN.