‎2008 Apr 16 10:44 PM
Hello Experts,
The following code
report zsample message-id ZMSG.
tables: sscrfields.
selection-screen pushbutton /79(10) press user-command push.
at selection-screen.
if sscrfields-ucomm = 'push'.
message I003 with 'sucess'.
endif.
In the output , the message is not getting displayed.
plz help.
Edited by: lakshmi reddy on Apr 16, 2008 11:45 PM
‎2008 Apr 16 10:53 PM
Hi Lakshmi,
Welcome to SDN,
Check this standard program for push buttons. DEMO_SEL_SCREEN_PUSHBUTTON
and do the modifications accordingly.
‎2008 Apr 16 10:53 PM
Hi Lakshmi,
Welcome to SDN,
Check this standard program for push buttons. DEMO_SEL_SCREEN_PUSHBUTTON
and do the modifications accordingly.
‎2008 Apr 16 11:04 PM
Hi,
Change the user-command to upper case.
if sscrfields-ucomm = '*PUSH'*.
Thanks,
Ashok
‎2008 Apr 16 11:21 PM