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

TABLE CONTROL WIZARD SY-UCOMM

0 Likes
597

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

1 REPLY 1
Read only

Former Member
0 Likes
445

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