‎2008 Aug 12 11:45 AM
How to lock a table control upto where data is showing in vertical column .
After that new input can be made.
‎2008 Aug 12 12:15 PM
Unable to understand your question. Can u put your question more precisely.
‎2008 Aug 12 12:19 PM
You can manage the SCREEN-INPUT attribute of your cells in the PBO, in the LOOP WITH CONTROL/ENDLOOP call a MODULE which will perform a LOOP AT SCREEN ON the current row of the table control.
* PBO
LOOP AT itab
WITH control
CURSOR control-current_line.
MODULE row_itab_attr.
(...)
ENDLOOP.
* Module
MODULE row_itab_attr OUTPUT.
LOOP AT SCREEN.
IF <your test, eg column < colum input-able or itab-xxx not initial>
screen-input = 0.
ELSE.
screen-input = 1.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
ENDMODULE. Regards
‎2008 Aug 12 12:33 PM
IF itab-field NE ' '.
LOOP AT SCREEN.
screen-input = 0 .
MODIFY SCREEN.
ENDLOOP.
ENDIF.
ENDIF.
ENDMODULE.
try this.
‎2008 Aug 13 10:28 AM