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

checkbox - Web Dynpro ABAP

Former Member
0 Likes
573

Hi,

I have created a checkbox in a table of webdynpro view. On toggle, i have created an action in which i'm disabling a button when the user check the checkbox. That is working fine. But when i check on checkbox in the table, all of checkboxes in that column got checked. How to solve this problem, please suggest.

Thanks,

2 REPLIES 2
Read only

Former Member
0 Likes
437

Hi,

declare MARK(c) in your program and Add a field mark type check in the element list.

at the process after input do a loop at the internal table and add a module.

Example:

PROCESS AFTER INPUT.

module exit at exit-command.

MODULE USER_COMMAND_0100.

LOOP at sdyn_itab.

MODULE READ_TABLE_CONTROL.

ENDLOOP.

MODULE READ_TABLE_CONTROL INPUT.

  • Check input values

IF MARK = 'X' .

*Your code here

ENDIF.

ENDMODULE.

Read only

Former Member
0 Likes
437

Hello,

have you already got a solution? I have the same problem as you. Could you give me some tips? Thanks a lot!