‎2015 Jun 21 1:42 PM
Hello to all,
I'm facing the following problem. I'm trying to run a simple program to download data into excel sheet using FM 'SAP_CONVERT_TO_XLS_FORMAT' .
But right after the pop up window of confirmation , concerning access to the file , the program terminates , runtime error . A RAISE statement in the program "SAPLOLEA" raised the exception condition "SYSTEM_FAILURE".
I found another similar thread, but in this,the problem was filename type. Mine is correct. Does anyone know why this is happening?
Regards,
Ilias Papadomarkakis
‎2015 Jun 22 6:35 AM
Hi,
Just for info I put the dummy code
DATA: t100_lines TYPE STANDARD TABLE OF t001 WITH DEFAULT KEY.
PARAMETERS: p_file LIKE rlgrap-filename DEFAULT 'c:\tmp\test.xls'.
SELECT * FROM t001
INTO TABLE t100_lines.
break-point .
CALL FUNCTION 'SAP_CONVERT_TO_XLS_FORMAT'
EXPORTING
i_filename = p_file
TABLES
i_tab_sap_data = t100_lines.
cross check once if problem persist, share you code so that we inspect and give solution
‎2015 Jun 22 6:54 AM
Hi
Which version of GUI you are using . Check the same with GUI 730 .
Check note 2061219.
https://websmp230.sap-ag.de/sap/support/notes/2061219
May help you-
http://scn.sap.com/thread/3620981
‎2015 Jun 22 7:16 AM
‎2015 Jun 22 7:30 PM
Thank you all for quick replies!
I'm using GUI 730 and my office version is 2007. I thought that would be the problem. But today everything worked perfectly without making any changes. Strange enough!
Thanks all for your time,
Papadomarkakis Ilias