You are on page 1of 1

DATA col LIKE LINE OF tab-con-COLS .

READ TABLE tab_con-COLS INTO col WHERE index = 3. "tab_con is the name

" of table control.


col-INVISIBLE = 3.
MODIFY tab-con-COLS FROM col INDEX 3. DISABLING INPUT
To disable/enable fields of a column we will use the field SCREEN-INPUT of the
structure CXTAB_COLUMN and set its value to 0 or 1.
e.g. To disable input at column 3 of the table control .
DATA col LIKE LINE OF tab_con-COLS.
READ TABLE tab_con-COLS INTO col INDEX 3.
col-SCREEN-INPUT = 0.
MODIFY tab_con-COLS FROM col INDEX 3.

You might also like