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

Execute button in a report program

Former Member
0 Likes
766

HI, i have a report, in this report i have a select option .

When i execute the report (F8), the program shows me a screen with the select option and a "Execute button" ( clock) , i want to execute some code when the user clicks this buttom, how i can do that?

Is in at selection screen or something like that??

Thanks

Reward Points

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
707

Try this...


AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'ONLI'.
*Do something...
ENDCASE.

Greetings,

Blag.

4 REPLIES 4
Read only

former_member194669
Active Contributor
0 Likes
707

Hi,

Can you explain me little bit more on '"Execute button" ( clock) " ?

Execute button is on top left corner

clock display in the bottom status bar

aRs

Read only

0 Likes
707

Yes , Execute button is on top left corner, that is the botton

Read only

0 Likes
707

Hi,

Then Blag's solution will work

a®

Read only

Former Member
0 Likes
708

Try this...


AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'ONLI'.
*Do something...
ENDCASE.

Greetings,

Blag.