‎2006 Aug 22 6:09 PM
Hi guys,
CAN ANYBODY TELL ME HOW TO ADD VERTICAL SCROLL BAR TO MY TABLE CONTROL SO THAT I CAN ENTER MULTIPLE RECORDS\
tHANKS IN ADVANCE
‎2006 Aug 22 6:18 PM
Hi ,
Check the programs DEMO_DYNPRO_TABCONT_LOOP and DEMO_DYNPRO_TABCONT_LOOP_AT adn RSDEMO_TABLE_CONTROL.
Regards,
Raghav
‎2006 Aug 22 6:18 PM
Hi ,
Check the programs DEMO_DYNPRO_TABCONT_LOOP and DEMO_DYNPRO_TABCONT_LOOP_AT adn RSDEMO_TABLE_CONTROL.
Regards,
Raghav
‎2006 Aug 22 6:24 PM
hi!
u need not apply vertical scroll bar to ur table control explicitly.it will be handled by system automatically.
u have to provide no of rows in ur internal table to LINES field of ur table control structure.
use this in ur PBO:-
MODULE status_0100 OUTPUT.
SET PF-STATUS 'SCREEN_100'.
DESCRIBE TABLE itab LINES fill.
flights-lines = fill. "*****
ENDMODULE.
here flights is the name of the table control.
fill contains no. of records in internal table
‎2006 Aug 22 6:40 PM
hi,
My requirement is like this,
I using table control as input field,when i click save it save in a ztable.
when i use this statment i can see in display ,
DESCRIBE TABLE itab LINES fill.
flights-lines = fill. "*****
My problem is that when i press create in screen no 100 then i takes me to screen no 200 where i have my table control.
in this table control i need the vertical bar so that i enter as many records as possible.
pls help me out as i am stuck at this point
‎2006 Aug 22 8:13 PM
‎2006 Aug 22 8:21 PM
Hi,
vertical scrollbar will be displayed automatically if the no of entries in your tab.contrl is more.
also check the option vertical.scrlbar in the properties of the table.contrl.
Cheers,
Abdul Hakim