‎2008 Jul 16 10:40 AM
Hi,
In create mode I am entering data in table control and when i saved this,it saved in ztable.If i Go thro Change mode i filled tabcontrol itab by retriving those records from ztable,if i had 2 records only 2 rows of tabcontrol r editable,others display mode.but in create mode i can enter 10 records.how to make rows editable in table control?
Regards,
kavitha
‎2008 Jul 16 10:50 AM
open the screen where u have ur table control...double click on that table control ...in side u will get 1 screenn in that program option tick input ....
thia will help u..
Reward IF........
Regards
Anbu
‎2008 Jul 16 10:53 AM
Instead of Custom Table Control make use of Table control Wizard
That will solve ur porblem
‎2008 Jul 16 11:07 AM
Hi,
i used table control wizard only..program input option is in display mode..i am not able to check it.
‎2008 Jul 16 11:26 AM
The number of open lines on your table control is controlled by your table control LINES parameter eg my table control is called TC_ITEMS so for me this field is TC_ITEMS-LINES. If you've used the table control wizard, this value will be being set in the generated TC_XXXX_get_lines PBO module. If you increase this number, you will get more open lines on screen. I usually set it to SY-LOOPC plus the number of records in my line items table, so that I always get a full screen of open lines.
‎2008 Jul 16 11:34 AM