‎2008 Jun 23 1:55 PM
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,
‎2008 Jun 23 8:19 PM
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.
‎2010 Jun 23 10:54 AM
Hello,
have you already got a solution? I have the same problem as you. Could you give me some tips? Thanks a lot!