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

BDC transaction first run problem

Former Member
0 Likes
1,061

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.

8 REPLIES 8
Read only

Former Member
0 Likes
1,015

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

Read only

0 Likes
1,015

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.

Read only

0 Likes
1,015

does this screen comes only on BDC run.....

or do you get the same screen when you normal run the transaction fpp3.

Read only

Former Member
0 Likes
1,015

Hi:

Probably you are talking about the pop up which asks Open Business partner which is default setting

Regards

Shashi

Read only

Former Member
0 Likes
1,015

Hi,

Try using 'Call Transaction 'FPP3' ..... and skip first screen' statement.

Regards,

Adapala.

Read only

Former Member
0 Likes
1,015

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.

Read only

faisalatsap
Active Contributor
0 Likes
1,015

Hi,

Have a look at [Call Transaction using BDC data |] Sample Code is available there.

Hope this will solve out your problem,

Best Regards,

Faisal

Read only

Former Member
0 Likes
1,015

Using SET PARAMETER ID and then

CALL TRANSACTION and SKIP FIRST SCREEN.