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

Table Control in BDC

Former Member
0 Likes
546

HI ,

i developed BDC program , in that on Table control is there upto 6 rows we can enter after that scroller has to get the below records ,

so how we can do this dynamically in BDC pls help me ,

THX

4 REPLIES 4
Read only

Former Member
0 Likes
518

HI chaaya, can you please elaborate your question a little

Regards,

Bhumika

Read only

Former Member
0 Likes
518

use code ok_code P+ for page down.

and search in SDN with term bdc table control you will get your answer.

Amit.

Read only

Former Member
0 Likes
518

hi,

when you are populating the table control... use this logic

LOOP AT itab_fields.

ADD 1 TO w_tabix.

IF w_tabix gt 6.

PERFORM bdc_dynpro USING 'SAPLSD41' '2200'.

PERFORM bdc_field USING 'BDC_CURSOR'

w_fname.

PERFORM bdc_field USING 'BDC_OKCODE'

'=P+'.

w_tabix = 2.

ENDIF.

CONCATENATE 'DD03P-FIELDNAME(' w_tabix ')' INTO w_fname.

this should solve your problem

regards

padma

Read only

Former Member
0 Likes
518

HI,

Ya u r right in general -- Table control can show only 6 or 7 record after that we have to scroll down . Now in BDC also we have to do like that after 6 records are filled in table control u have to enable the scoll down by dyanmically. For this we r passing the function code +p. so that the table will be ready for another 6 records.

Thanks,