Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-305500

580192May 29 2007 — edited May 29 2007
Hi 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!
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 26 2007
Added on May 29 2007
3 comments
1,120 views