2007 Aug 17 11:15 PM
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
2007 Aug 17 11:37 PM
Try this...
AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'ONLI'.
*Do something...
ENDCASE.
Greetings,
Blag.
2007 Aug 17 11:24 PM
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
2007 Aug 18 12:26 AM
Yes , Execute button is on top left corner, that is the botton
2007 Aug 18 12:30 AM
2007 Aug 17 11:37 PM
Try this...
AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'ONLI'.
*Do something...
ENDCASE.
Greetings,
Blag.