Application Development 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: 

Execute button in a report program

Former Member
0 Kudos
148

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

former_member583013
Active Contributor
0 Kudos
89

Try this...


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

Greetings,

Blag.

4 REPLIES 4

former_member194669
Active Contributor
0 Kudos
89

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

0 Kudos
89

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

0 Kudos
89

Hi,

Then Blag's solution will work

former_member583013
Active Contributor
0 Kudos
90

Try this...


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

Greetings,

Blag.