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

selection screen push button not working

Former Member
0 Likes
949

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
732

Hi Lakshmi,

Welcome to SDN,

Check this standard program for push buttons. DEMO_SEL_SCREEN_PUSHBUTTON

and do the modifications accordingly.

3 REPLIES 3
Read only

Former Member
0 Likes
733

Hi Lakshmi,

Welcome to SDN,

Check this standard program for push buttons. DEMO_SEL_SCREEN_PUSHBUTTON

and do the modifications accordingly.

Read only

former_member368216
Participant
0 Likes
732

Hi,

Change the user-command to upper case.

if sscrfields-ucomm = '*PUSH'*.

Thanks,

Ashok

Read only

0 Likes
732

Hi ashok,

Thank you for helping me out.