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!

Client_Get_File_Name webutil

delenaSep 23 2013 — edited Sep 29 2013

Hello all, i am new to oracle development and i am trying to do the forms exercises in oracle 10g. However, when i got to uploading images in Client_get_file_name, there is an error:

I have a code in an image button.

Here it is:

DECLARE

  v_file VARCHAR2(250):= client_get_file_name('C:\','','JPEG Files|*.jpg|',

     'Select a product image',open_file,TRUE);

  it_image_id ITEM := FIND_ITEM('control.product_image');

BEGIN

  client_image.read_image_file(v_file,'',it_image_id);

END;

Then when i press the image button, an error occurs it says:

“FRM-92101: There was a failure in the Forms Server during stratup.”

If ayone could help me..

Thanks in advance!


Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 27 2013
Added on Sep 23 2013
1 comment
1,131 views