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 view recording

Former Member
0 Likes
819

hi all,

I am recording a view and it is working fine upto 11 records . 12 th record i am getting disable screen .

if i give from records in next try it accepting the values and again stooping at 11 th record

i am clicking 'NEXT ENTRY' .

is there any restrictons on that , it will accept only 11 records .

please help .

hi all,

I am recording a view and it is working fine upto 11 records . 12 th record i am getting disable screen .

if i give from records in next try it accepting the values and again stooping at 11 th record

i am clicking 'NEXT ENTRY' .

is there any restrictons on that , it will accept only 11 records .

please help .

4 REPLIES 4
Read only

andreas_mann3
Active Contributor
0 Likes
782

hi,

which trx?

-> for programming a table control / step loop in bdc

you have to programm the browsing (page down) - normally it's ok-code '/00'

example:

 ERG = BUZEI MOD 11.
again *process dynpro after 11 entries
  IF ERG = 1.
    PERFORM BDC_DYNPRO USING 'SAPMF10B' '0150'.
  ENDIF.
...
  IF ERG = 0 .
    PERFORM BDC_FIELD USING 'BDC_OKCODE'     '/00'.
    CLEAR BUZEI.
  ENDIF.

A.

Message was edited by: Andreas Mann

Read only

0 Likes
782

for the view V_TROLZ tcode sm30

Read only

0 Likes
782

Hi reddy ,

Y do u want to do recording for this VIew , U can dirctly use Commands Like INSERT / UPDATE / MODIFY.

Regards

Prabhu

Read only

Former Member
0 Likes
782

Hi Sridhar,

I think the view for which you are doing the bdc has only 11 entries at that particular time and hence the limitation.

Regards,

Ravi