‎2006 Dec 11 7:46 AM
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.
‎2006 Dec 11 7:49 AM
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
‎2006 Dec 11 7:50 AM
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
‎2006 Dec 11 8:42 AM
Actually i want table control's visible line count on screen.
how can i take?
‎2006 Dec 11 9:10 AM
how can i take a count of visible lines of Table control of the screen?