You are on page 1of 1

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