‎2007 Feb 20 11:45 AM
HI ALL,
Please tell me the function modulesfor download the ALV report into excel sheet . the sheet contains all the headings .
kind regards,
‎2007 Feb 20 11:46 AM
Hi
In tha ALV list itself you can find one option for download the ALV list into Excel file.
Please check it out and let me know.
Regards,
kumar
‎2007 Feb 20 11:46 AM
Hi
In tha ALV list itself you can find one option for download the ALV list into Excel file.
Please check it out and let me know.
Regards,
kumar
‎2007 Feb 20 12:04 PM
Hi ,
Check this function module XXL_FULL_API.....
I hope it will work.....
Regards,
Kiran.
‎2007 Feb 20 11:47 AM
Hello Vandana,
Is option alread existing for ALV. Check the APplication tollbar of the ALV output.
There U can download the output to any type of Microsoft format.
Vasanth
‎2007 Feb 20 11:59 AM
Hi,
Use this FM,
call function 'EXCEL_OLE_STANDARD_DAT'
exporting
file_name = 'c:\Total_Plant Waste.xls'
tables
PIVOT_FIELD_TAB =
data_tab = t_excel1
fieldnames = flditab
exceptions
file_not_exist = 1
filename_expected = 2
communication_error = 3
ole_object_method_error = 4
ole_object_property_error = 5
invalid_filename = 6
invalid_pivot_fields = 7
download_problem = 8
others = 9.
clear: t_excel1,flditab.
refresh: t_excel1,flditab.
Regards,
U. Uma