2011 Mar 31 7:38 PM
Hi Experts,
I´ve made a table control using the wizard tool, but the buttons aren´t working. Do i have to do some developing for it works ?
The push buttos are wizard standard like 'INSR' 'DELE' 'P--' 'P-' 'MARK' 'DMRK' its wich Wizard ask for create automatic.
the sample code wich i asking is in this part :
*&SPWIZARD: INPUT MODULE FOR TC 'ZTAB027'. DO NOT CHANGE THIS LINE!
*&SPWIZARD: PROCESS USER COMMAND
module ztab027_user_command input.
ok_code = sy-ucomm.
perform user_ok_tc using 'ZTAB027'
'T_ZFIT027'
'MARC'
changing ok_code.
sy-ucomm = ok_code.
endmodule. "ZTAB027_USER_COMMAND INPUT
Please help-me.
Best regards
2011 Mar 31 8:01 PM
In the element list for the screen, in addition to your fields, there should also be an entry for OK_CODE. Please check to make sure it's there.
Also make sure you have declared OK_CODE in the program:
data: ok_code type sy-ucomm.Rob
Edited by: Rob Burbank on Mar 31, 2011 3:04 PM