file open [message #598907] |
Sat, 19 October 2013 05:26 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
I have created an interface in forms 6i which does the following.
1)Open the file location to choose the excel path
2)Open the excel files from that location
3)import the excel file into oracle
now my problem is when i recompiled the forms6i to run on oracle 9iAS, the browse button is not working , is there any other method using java by which i can accomplish this task.
the following code is used for opening the file.
DECLARE
FILENAME VARCHAR2(256);
BEGIN
FILENAME := GET_FILE_NAME(File_Filter=> 'EXCEL Files (*.XLS)|*.XLS|');
:UPLOAD_FILE_NAME := FILENAME;
END;
|
|
|
|
|
Re: file open [message #598925 is a reply to message #598914] |
Sat, 19 October 2013 23:27 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
thanks littlefoot , but the problem is i am not able to find the webutil.pll for forms 6i or 9ias.please suggest me what steps to be taken after downloading.
|
|
|
Re: file open [message #598926 is a reply to message #598917] |
Sat, 19 October 2013 23:28 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
thanks mughals , i am basically using get_file_name only which is similar to your syntax but the problem is when i am clicking on the browse button using 9ias , nothing happens.
|
|
|
|
|
|