Application Development 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: 

BDC read screen value and press button

Former Member
0 Kudos

Hi,

How can i read a screen value and press button by BCD??

Regards,

Kit

3 REPLIES 3

Former Member
0 Kudos

Hi ,

There is table bdcmsgcoll which holds the values so if do like below you can find out the values

data: it_tab2 type table of bdcmsgcoll with header line.

call transaction 'BGM1' using it_tab3 mode 'E' messages into it_tab2.

now it_tab2 will hold the values and you can check that in debugging mode

do reward if helpful

Former Member
0 Kudos

Hi,

I think you are doing a bdc for table control...

In every transaction we will have a way to find the particular record.

e.g. in Transaction CS02 - BOM Change

we have button called Position. If we specify a particular item number/component/.. that record will become the first record in table control. select that record and change the required values.

REWARD IF USEFUL

Edited by: SHREE WADEKAR on Apr 9, 2008 12:54 PM

0 Kudos

Let me clear my requirement, what i try to do is develop a BDC for PA41 and change the start date. To do this, i need to locate the correct action type and save the record. So, the program requires to read the type field and press the next button.

Kit