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

SELECT-OPTIONS AND PUSHBUTTONS

Former Member
0 Likes
440

1.IN WHICH TABLE SELECT-OPTIONS DATA IS STORED?

2.TABLES SSCRFIELDS.

DATA FLAG.

PARAMETERS TEST.

SELECTION-SCREEN FUNCTION KEY 1.

SELECTION-SCREEN FUNCTION KEY 2.

INITIALIZATION.

SSCRFIELDS-FUNCTXT_01 = 'Button 1'.

SSCRFIELDS-FUNCTXT_02 = 'Button 2'.

AT SELECTION-SCREEN.

IF SSCRFIELDS-UCOMM = 'FC01'.

FLAG = '1'.

ELSEIF SSCRFIELDS-UCOMM = 'FC02'.

FLAG = '2'.

ENDIF.

START-OF-SELECTION.

IF FLAG = '1'.

WRITE / 'Button 1 was clicked'.

ELSEIF FLAG = '2'.

WRITE / 'Button 2 was clicked'.

ENDIF.

MESSAGE IS NOT GETTING DISPLAYED EVEN WHEN BUTTONS ARE CLICKED,WHY?

Thank You

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
393

Hi Gopi,

The message is displaying yar just click the button and press f8 once the message has been displayed, check and correct me if am wrong.

2 REPLIES 2
Read only

Former Member
0 Likes
394

Hi Gopi,

The message is displaying yar just click the button and press f8 once the message has been displayed, check and correct me if am wrong.

Read only

Former Member
0 Likes
393

Hi Gopi,

According to the code, the messages will be displayed when you execute(F8) it.