2007 Jul 02 4:54 AM
Hi All,
I am using table control to display some data which is in two internal tables, but if the range of values in any one internal is more than 31 then its not showing the rest 9. before the scrollable bar was not coming then i tried assigning some value to TABLE1-LINES and now its coming , but when i am trying to scroll its going back to input selection screen.
Can anyone please help me out ASAP.
Regards
Siddhartha Sengupta
Hi All,
I am using table control to display some data which is in two internal tables, but if the range of values in any one internal is more than 31 then its not showing the rest 9. before the scrollable bar was not coming then i tried assigning some value to TABLE1-LINES and now its coming , but when i am trying to scroll its going back to input selection screen.
Can anyone please help me out ASAP.
Regards
Siddhartha Sengupta
2007 Jul 02 5:01 AM
Hi,
In PBO,
describe table itab lines ln.
tctrl-lines = ln + 100.
Message was edited by:
Jayanthi Jayaraman
2007 Jul 02 5:09 AM
Hi ,
I am sorry to say that its not working still, what other ways are there? please help.
regards
Siddhartha Sengupta
2007 Jul 02 5:08 AM
Hi,
In PBO event,
TABLE1-LINES = SY-DBCNT + 1.
it will help u.
Revert point if its usefull
Gowri
2007 Jul 02 5:26 AM
2007 Jul 02 8:05 AM
Hi,
You use this code to get scroll bar.
TABLE1-CURRENT_LINE = 1.
DESCRIBE TABLE ITAB_ITEM LINES TABCOUNTER.
IF TABCOUNTER = 0.
TABLE1-LINES = 100.
ELSE.
TABLE1-LINES = TABCOUNTER + 1.
ENDIF.
TABLE1- Table controll name.
ITAB_ITEM- Internal table name.
IF USEFULL REWARD
2007 Jul 02 8:32 AM
Hi,
The code that you have given, i have already tried with that, its not that the scrolling bar is not coming, its just that when i try to scroll down, its taking me to the input selection screen.
regards
Siddhartha Sengupta
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |