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

ABZON BDC Question

Former Member
0 Likes
600

Hi all,

I've recorded a BDC for transaction ABZON. When you first run the transaction, it asks for the company code. However, every subsequent time you run the transaction, it no longer asks for the company code. Is there a way to code this so that 1) on the first run, it inputs the company code and then 2) subsequent runs do not go to the company code.

Thanks!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
531

Hi,

Try setting the parameter id BUK..before calling the transaction..

I think if you set the value, it will not give you the popup even for the first time...

SET PARAMETER ID 'BUK' FIELD '0001'.

CALL TRANSACTION 'ABZON'.

Thanks,

Naren

Hi all,

I've recorded a BDC for transaction ABZON. When you first run the transaction, it asks for the company code. However, every subsequent time you run the transaction, it no longer asks for the company code. Is there a way to code this so that 1) on the first run, it inputs the company code and then 2) subsequent runs do not go to the company code.

Thanks!

2 REPLIES 2
Read only

Former Member
0 Likes
532

Hi,

Try setting the parameter id BUK..before calling the transaction..

I think if you set the value, it will not give you the popup even for the first time...

SET PARAMETER ID 'BUK' FIELD '0001'.

CALL TRANSACTION 'ABZON'.

Thanks,

Naren

Read only

0 Likes
531

Pretty sure that Naren is correct here, I've seen this in other transactions as well and the setting of the parameter id does the trick. If it does not, in this particular case, you can do a BDC on the transaction one and only one time, to fill the company code and then back out. Then process as normal for the rest of the transactions.

Regards,

Rich Heilman