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 when try to upload XLS

HaniYSMay 6 2015 — edited May 7 2015

Hi

I use forms11, when i try to upload XLS file data error appear ORA-305500. any suggestion??

the error appear when run this code

workbook := ole2.get_obj_property(workbooks, 'Open', args);

all code:

application := ole2.create_obj ('Excel.Application');

ole2.set_property (application, 'Visible', 'FALSE');

workbooks := ole2.get_obj_property (application, 'Workbooks');

args := ole2.create_arglist;

ole2.add_arg (args, filename);

workbook := ole2.get_obj_property(workbooks, 'Open', args);

This post has been answered by HaniYS on May 6 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 4 2015
Added on May 6 2015
9 comments
3,028 views