‎2008 Dec 22 2:16 AM
Hi,
I am using the fm ALSM_EXCEL_TO_INTERNAL_TABLE to upload the excel file into an Internal table. Its working fine but some times it is throwing an error UPLOAD_OLE error.
Can somebody has an idea on this?
Thanks
bpr
‎2008 Dec 22 2:48 AM
Use Fm like This:
call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'
exporting
filename = filename
i_begin_col = 5
i_begin_row = 2
i_end_col = 6
i_end_row = 4000
tables
intern = t_excel
exceptions"Handle all exceptions(This is must).
inconsistent_parameters = 1
upload_ole = 2
others = 3.
‎2008 Dec 31 3:24 AM
‎2012 Aug 15 4:18 PM
‎2019 Jul 04 8:46 AM
‎2019 Jul 04 10:07 AM