ORA-305500
580192May 29 2007 — edited May 29 2007Hi again,
I have other problem. When I deploy my form to application server the error ORA-305500 is raised when I click in the button to generate the excel file, but in the developer machine this doesn't happen.
Here is the code:
APP := OLE2.CREATE_OBJ('Excel.Application');
OLE2.SET_PROPERTY(APP, 'Visible', 'True');
FILENAME := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(FILENAME, :GLOBAL.ARQUIVO);
WORKBOOKS := OLE2.GET_OBJ_PROPERTY(APP, 'Workbooks');
WORKBOOK := OLE2.INVOKE_OBJ(WORKBOOKS, 'Add');
The error is raised when the application try to execute the last line.
Please, can anyone help me?
Thanks!