‎2014 Nov 11 9:38 AM
Dear experts,
I've a table control with an insert button. I want to enable one row when the button "insert" is pressed but disable the rest of data.
With this code I can do this, but the problem is that when the the insert is done, I cannot select any other row, the row is not longer selectable because the input is marked as '0'. Do you know how can I solve this problem?
LOOP AT SCREEN.
IF wa_data-code IS INITIAL.
screen-input = '1'.
ELSE.
screen-output = '1'.
screen-input = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
Thanks in advance,
Regards,
Rebeca
‎2014 Nov 11 10:00 AM