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: 

table control in BDC

Former Member
0 Kudos

Hi friends,

what is the concept of table control in BDC.

regards,

siri.

1 ACCEPTED SOLUTION

FredericGirod
Active Contributor
0 Kudos

This question has been ask several times ... please use the search magic button.

BDC table will contain the program, the screen number, the field, and the value you would like that SAP will do.

Have a look to the SHDB transaction.

Fred

3 REPLIES 3

FredericGirod
Active Contributor
0 Kudos

This question has been ask several times ... please use the search magic button.

BDC table will contain the program, the screen number, the field, and the value you would like that SAP will do.

Have a look to the SHDB transaction.

Fred

former_member181962
Active Contributor
0 Kudos

Former Member
0 Kudos

Hi

The concept is easy: it has to indicat the index of the table control in the field name, so if you have to populate the first record of table control:

BDC-FIELDNAME = <FIELDNAME>(01).

If you fill the second row:

BDC-FIELDNAME = <FIELDNAME>(02).

and so....

Now the problem is usually on how many records you have to load, because u can fill only the rows of table control available in the screen, If you have more records than it can be displayed yuo have to simulate the command to go next page.

The number of recod can be displayed can depend on pc resolution and many program haven't command to go to next page (in this case it could be impossible create a BDC program9.

A way to create a bdc program resolution indipendent is to work on the first and second row.

- Place the first hit in the first row of bdc;

- Place the second insert in the second row of bdc;

- Place the last hit to the top of table control;

- Place the next hit in the second row;

- Place the last hit to the top of table control;

- Place the next hit in the second row;

- .... and so

Max