Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Selectable row table control

former_member384574
Active Participant
0 Likes
395

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

1 REPLY 1
Read only

former_member384574
Active Participant
0 Likes
364

Solved