‎2009 Nov 07 12:25 PM
Hi,
I want to download the report using the pushbutton on the selection screen and not with the execute button..
can you please suggest me, how to achieve this?
Thanks in advance,
Regards,
mnraju.
‎2009 Nov 07 1:41 PM
Hello,
Check this sample code
SELECTION-SCREEN:
BEGIN OF BLOCK B1 WITH FRAME TITLE text-000,
PUSHBUTTON 2(10) but1 USER-COMMAND cli1,
END OF BLOCK B1.
INITIALIZATION.
but1 = 'DOWNLOAD'.
AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'CLI1'.
"call FM GUI_DOWNLOAD or the respective FM with which you want to download
ENDCASE.
Vikranth
‎2009 Nov 07 6:34 PM
Hi Raju,
in ABAP editor you have a download button on the toolbar. F8 will not download but execute a report.
Or could your question have been misunderstood?
Regards,
Clemens