Hi All, I have a screen typed modal dialog box with a table control.
I want to disable field input in the table control when some conditions meet.
I write the following code in the PBO, but it's not working. The group1 has been set.
LOOP AT SCREEN.
IF screen-group1 = 'DSP'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Would anyone help me? Thanks in advance!