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 upload

Former Member
0 Likes
492

Hi,

I am working on BDC data upload.

Now here Table control is on the screen and 15 rows are there.

How can i take or manage this count in my program?

Thanks in advamce.

4 REPLIES 4
Read only

Former Member
0 Likes
468

Hi,

Try to play around with the page down and page up function using fcode 'P++' or 'P--'. When you using that to play around, your table control index will always stay in 01 and 02 condition. Enjoy

Read only

Former Member
0 Likes
468

take variable count of type n.

data count(2) type n.

loop at itab.

concatenate 'filedname ('

count

')' into v_fname.

and pass the fname to bdc data along with the value.

count = count + 1.

..............

.............

and aslo use page down okcodes

endloop.

Message was edited by:

Manoharsairam Kavuri

Read only

Former Member
0 Likes
468

Actually i want table control's visible line count on screen.

how can i take?

Read only

Former Member
0 Likes
468

how can i take a count of visible lines of Table control of the screen?