‎2007 Nov 07 7:47 AM
I want to use the the OpenText method of the workbooks collection in Excel.
This method expects an array for the method parameter FieldInfo.
How do i pass an array to this parameter from ABAP ?
‎2008 Feb 18 1:31 PM
Hi,
currently i have the same problem.
Did you find a solution?
thanks
Bernd
‎2008 Feb 18 1:40 PM
Hi,
Is this what you want
open file in Excel
IF application-header = space OR application-handle = -1.
CREATE OBJECT application 'Excel.Application'.
m_message.
ENDIF.
CALL METHOD OF application 'Workbooks' = workbooks.
Open the Excel file
CALL METHOD OF workbooks 'Open' EXPORTING #1 = filename.
This will open the workbook.
regards,
theja.