Forms 9i FRM-40738 Hyperlink Bean problem

Hello,
I've this error coming please help me.
I needed to see, how a bean is integerated in Forms 9i. I was
searching through the example at metalink and it gave me a
paper
"How to Integerate HyplerLink Bean in forms 9i", what steps
i followed are given in that paper.
Now when i run the form, it gaves me the error
FRM-40738 Argument to Built in SET_CUSTOM_PROPERTY CANNOT BE NULL.
the steps i followed are
1- I created a form called hyperlink.fmb
2- Then i created a ON LOGON trigger at this form
3- I opened the canvas and draw a Bean Area on it
4- Then i renamed that Item to Hyperlink by Property Plattelete
5- I named the canvas CONTROL
6- Then at module level i created a TRIGGER WHEN_NEW_FORM_INSTANCE and put following PL.SQL code in it
DECLARE
hHyperlink ITEM := FIND_ITEM('CONTROL.HYPERLINK');
BEGIN
FBEAN.Register_Bean( hHyperlink, 1, 'oracle.forms.demos.beans.Hyperlink');
FBean.Invoke( hHyperlink, 1, 'setURL', 'http://otn.oracle.com/products/forms');
FBean.Invoke( hHyperlink, 1, 'setLabel', 'Forms on OTN');
FBean.Enable_Event( hHyperlink, 1, 'actionListener', true );
END;
7-Then i created a Trigger at CONTROL.HYPERLINK, that was
WHEN_CUSTOM_ITEM_EVENT and put the following code in it
DECLARE
vcEventData varchar2(256);
BEGIN
vcEventData := Fbean.Invoke_Char('CONTROL.HYPERLINK', 1, 'getURL');
WEB.SHOW_DOCUMENT(vcEventData, '_blank');
END;
Then did the following steps of the locating the bean by the
JAR method.
Method 1 - The JAR Method:
a. Locate the hyperlink.jar file located in D:\9iDS\forms90\demos\hyperlink\classes.
b. Move the hyperlink.jar file to 9iDS_HOME\forms90\java.
c. Find the formsweb.cfg file in 9iDS_HOME\forms90\server.
d. Add the following configuration section to the file:
[hyperlink]
archive_jini=f90all_jinit.jar,hyperlink.jar
width=675
height=480
separateFrame=false
splashScreen=no
lookAndFeel=oracle
colorScheme=blue
The archive_jini parameter pointing to hyperlink.jar is the most important part
of this configuration.
e. Now go into Form Builder and accomplish the following:
Edit->Preferences->Runtime Tab
Add the config parameter to your "Application Server URL". It should look
something like this:
http://machine.domain:port/forms90/f90servlet?config=hyperlink
Then i compiled it and ran it, Now it gives this error
FRM-40738 Argument 1 to built in SET_CUSTOM_PROPERTY cannot
be null.
P.S I have set the implementation class property but, still i don't know
whats the problem, and where i am making mistake, please help me.
Please any help will be appreaciated.
Sincerely
Tensed Beginner

Hello Frank,
Thanks for your reply back to me. Frank, i am
currently
new to Forms 9i even the Oracle world. In my compan
basically i was hired a J2EE resource, but they put
me
on oracle, and i feel like, i am not performing to
the level i should.
Can you please tell me, how should i verify that, it
is not returning
a Null? Can you tell me the statement Syntax, yea my
BLock
name is CONTROL and Item name is HYPLERLINk, please
do
tell me how to verfiy it, i will be highly obliged.
Sincerely,
Ben ( Tensed Beginner )
Hello Frank,
Thanks for your reply back to me. Frank, i am
currently
new to Forms 9i even the Oracle world. In my compan
basically i was hired a J2EE resource, but they put
me
on oracle, and i feel like, i am not performing to
the level i should.
Can you please tell me, how should i verify that, it
is not returning
a Null? Can you tell me the statement Syntax, yea my
BLock
name is CONTROL and Item name is HYPLERLINk, please
do
tell me how to verfiy it, i will be highly obliged.
Sincerely,
Ben ( Tensed Beginner )Hi Ben
Please check the path that u have given. Think the mistake is in the path.
FBEAN.Register_Bean( hHyperlink, 1, 'oracle.forms.demos.beans.Hyperlink');
If the problem still persist will let u know how to resoleve it.
feel free to get in touch....
Regards
Aravind

Similar Messages

  • Error : FRM-40738

    I am getting following error while first time running the form.
    FRM-40738 : Argument 1 to built-in find_form can not be null.
    But interesting thing is if I close this form without saving and again open it and run it then it does not give this error.
    Any solution ?
    I am using Oracle 8i and Forms 6i.
    Kiran

    Do you mean you get this error at build-time or runtime? If it's at build-time, try forcing a compile all.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • FRM-40738 cant identify the problem

    Hi Guys i am getting this error again and again :
    FRM-40738 Argument 1 to builtin Report_Object_Status cannot be null.
    I have check the code and to my understanding it is ok, this is the code:
    DECLARE
         report_id Report_Object;
         report_job_id VARCHAR2(100);
         v_rep VARCHAR2(200);
         rep_status VARCHAR2(100);
    BEGIN
         report_id := FIND_REPORT_OBJECT('REPORT1');
         set_report_object_property(report_id,REPORT_FILENAME,'EMP_ALLOW_DET.RDF');
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,'html');
         --SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_other,' p_prov_id='||V_PROVINCE
         v_rep := RUN_REPORT_OBJECT(report_id);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    --WEB.SHOW_DOCUMENT('http://'||ltrim(rtrim(v_host_name))||'.sct.gov.sa:8888/reports/rwservlet/getjobid'||
    --substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=mas1','_blank');
    WEB.SHOW_DOCUMENT('http://BSS-DC1:9000/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=mas1','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Please help me out with this problem.
    Regards, Imran

    Hi,
    print out the value of "v_rep" to see if this has a valid Reports ID. In cases where a Reports crashes (see queuemanager for details about the Reports run) it happens that a null value is returned instead of a job ID. This is a bug and should be fixed soon.
    Also, since you are using REPORT_COMM_MODE being SYNCHRONOUS you don't need the LOOP in the while statement. Forms waits for the Reports call to return.
    I know that the while loop is in the example code in the Forms / Reports integration Whitepaper too, but this is not needed. I'll remove it from this paper for its next release.
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    Just use
    rep_status := report_object_status(v_rep);
    Frank

  • Forms Crashing FRM-41211 Integration Error  (6i)

    In the last week, almost all of our sales reps have had their screens crash when they exit their order screens. When they exit the screen, it is supposed to print the orders they entered.
    This also happens in other screens when they are trying to print.
    Here is the Microsoft error that comes up first:
    Then it gives the Forms error
    FRM-41211 Integration Error. SSL failure running another product.
    Our department has been working on this issue for a week. I just found out about it and was wondering if y'all had any suggestions....
    Thank you for any assistance
    PS - there has been no change in the clients, and I'm not aware of any changes with the servers. At least, that is what the Admin says.
    Message was edited by:
    loweride

    More info:
    This is one of the lines that is calling the report:
    RUN_PRODUCT(REPORTS, 'ORDER_PRINT.RDF', SYNCHRONOUS, BATCH, FILESYSTEM,ORDER_ID,'');
    Here is another one:
    RUN_PRODUCT(REPORTS
    ,'OE_AUTO_QUOTE'
    ,SYNCHRONOUS
    ,RUNTIME
    ,FILESYSTEM
    ,ORDER_ID
    We have a client/server setup. We are running 6i forms and reports, with a 9 database.
    There have been no changes to these forms or reports. And it doesn't happen all the time. It just happens every-so-often.
    EDIT - I guess it has been doing this for the past 3 weeks. One user says it happens everytime she tries to print anything from a form......
    I've searched the forum about this and there are a lot of unanswered questions. I'm thinking my chances are slim on figuring this out.
    2nd EDIT - I looked at the documentation at
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=164945.1
    everything seems to be right - according to that. So I'm wondering if this has anything to do with any sort of networking issues.....
    .....3rd EDIT........
    Still searching. It looks like this person has the same problem. http://www.webservertalk.com/archive149-2005-11-1283220.html
    Having problems with the rwrbe60.exe
    I'm wondering if there was some sort of patch Microsoft let out that is causing this issue?
    null
    Message was edited by:
    loweride

  • Empty Error box raising FRM-40738

    Hi all
    While migrating to HSD6i/Dev6i, encountered following situation
    - Open any form (e.g. HSD0022F)
    - Query any record
    - Use F6 and F4 to force duplicate value for an UK
    - Press X in windowtitle-bar to close window
    - Message QMS-00158('Do you want to save your changes')
    - Pressing No, all is ok
    - Pressing Yes, causes alert with message for UK-violation to popup (is OK) (e.g. HSD-00016)
    - Press OK-button and an empty 'error and warning box in this transaction'-window apears
    - Press OK-button and alert with FRM-40738 appears
    - Pressing OK-button returns you to named window
    Only way to close this window is via the menu-option 'File->Close Form' or 'File-Close all)
    Has anyone encountered this behaviour and a fix or WA ??
    rgrds
    Jan

    This is a new one. I have recorded a bug against Headstart for this.
    I did discover one thing.
    After the empty Errors and Warnings in this Transaction window opens, you can click back on the original window instead of pressing OK.
    If you do that, you can close the window by pressing the 'X' in the upper right hand corner.
    You will again see the message 'Do you want to save your changes?'. This time, select 'No'.
    Now that one form will close and you won't have to exit your whole application.
    Regards,
    Lauri

  • Wuc-015 Your form must contain the following bean ...

    Hi,
    I'm having this problem in forms 10g:
    WUC-015: Your Form must contain the following Bean for this function to be availabe:
    oracle.forms.webutil.file.FileFunctions
    I have installed webutil and followed all the steps, I can the run the test form, but I'm having this problem when I want to run a form that has a attached library and this library is using the webutil_c_api functions (this library has the webutil.pll attached).
    I've found this problem in metalink and they suggested to drag the webutil.olb in the form, but my form is not using the webutil, the library does, so I think I don't have to drag it in the form.
    Besides I made all the sugestion about the configuration files of webutil.
    waiting with anticipation for the solution ..
    Thanks !!

    If you want to use WebUtil functions like webutil_c_api you must follow the development instructions in the install.pdf. That includes attaching webutil.pll and webutil.olb.
    In your case you have, to my understanding, created a library that uses webutil functions, and that you aren't using them. If you attach that library you must "webutilize" your Forms.
    I would suggest that you split the library you made into two. One containing WebUtil functions, and one that doesn't. Problem solved?
    Regards,
    Martin Malmstrom

  • Wuc-15 form must contain the following bean

    hi
    i am trying to use the client_text_io api's in a form but i keep getting the wuc-15 error (your form must contain the following bean for this function to be available - oracle.forms.webutil.file.FileFunctions). i do have the webutil object group in the form, i added it after attaching the library but i did go back and recompile all the pl/sql code just in case. forms90_path does include webutil/forms.
    the only thing that i can see that might be a problem is that because of utf8 issues i have to use the sun jdk. i have the following block in my formsweb.cfg file to force the form to use the sun jdk instead of jinitiator
    [jdk_plugin]
    basehtmljinitiator=basejpi.htm
    basehtmlie=basejpi.htm
    baseHTMLjpi=basejpi.htm
    jpi_download_page=http://java.sun.com/j2se/1.4.2/download.html
    jpi_classid=clsid:CAFEEFAC-0014-0002-0004-ABCDEFFEDCBA
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-142-windows-i586.cab#Version=1,4,2,0
    jpi_mimetype=application/x-java-applet;version=1.4.2
    i have left it this way since when i change the basehtml entries to use the webutil templates i get thrown back into jinitiator. is this causing the wuc-15 error? if it is how do i use the webutil templates with the sun jdk?
    thanks
    penny svetlik

    the forms90_path variable contains less than 100 characters.
    i ran the form with increased trace level but did not get anything additional in the way of errors (just the usual 'unable to attach library' error in the alert box). here is the trace information. by the way why do the findlocalhost and getipaddress calles repeat 8 times?
    Registered modality listener
    Registered modality listener
    Referencing classloader: sun.plugin.ClassLoaderInfo@17431b9, refcount=1
    Referencing classloader: sun.plugin.ClassLoaderInfo@12884e0, refcount=1
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar with no proxy
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar from cache
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar from cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar is read from JAR cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar is read from JAR cache
    Modality pushed
    Modality pushed
    Modality popped
    Modality popped
    User selected: 0
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/splash.gif
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/oracle_logo.gif
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/bgnd.gif
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/forms/registry/Registry.dat with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/forms/registry/default.dat with no proxy
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/f90servlet?config=jdk_plugin&form=C:\OraHome1\forms90\webutil\Webutil_demo\WU_TEST.fmx&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES&acceptLanguage=en-us,en;q=0.5&ifcmd=startsession with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae?ifcmd=getinfo&ifhost=epn-svetlikp-3&ifip=156.40.35.44 with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Forms Applet version is : 902122
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/frame.gif
    2004-Apr-08 08:43:50.544 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.604 WUI[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.654 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.684 WUF[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.724 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.764 WUH[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.784 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.804 WUS[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.835 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.855 WUT[VBeanCommon.getIPAddress()] 156.40.35.44
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar with no proxy
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar from cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar is read from JAR cache
    2004-Apr-08 08:43:51.415 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.435 WUO[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:51.495 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.505 WUL[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:51.536 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.556 WUB[VBeanCommon.getIPAddress()] 156.40.35.44
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.class with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    2004-Apr-08 08:43:54.630 WUI[VBeanCommon.destroy()] WebUtil GetClientInfo Utility being removed..
    2004-Apr-08 08:43:54.640 WUF[VBeanCommon.destroy()] WebUtil Client Side File Functions being removed..
    2004-Apr-08 08:43:54.660 WUH[VBeanCommon.destroy()] WebUtil Client Side Host Commands being removed..
    2004-Apr-08 08:43:54.680 WUS[VBeanCommon.destroy()] WebUtil Session Monitoring Facilities being removed..
    2004-Apr-08 08:43:54.700 WUT[VBeanCommon.destroy()] WebUtil File Transfer Bean being removed..
    2004-Apr-08 08:43:54.720 WUO[VBeanCommon.destroy()] WebUtil Client Side Ole Functions being removed..
    2004-Apr-08 08:43:54.730 WUL[VBeanCommon.destroy()] WebUtil C API Functions being removed..
    2004-Apr-08 08:43:55.381 WUB[VBeanCommon.destroy()] WebUtil Browser Functions being removed..
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy

  • WEBUTIL  Error WUC-15: "Your Form must contain the following Bean ...

    Dear Colleague,
    Up until now, I have installed WebUtil in my DEV environment (Designer Suite) and successfully used it to develop and run a form called DOCU_MGMT.fmx that performs various document management tasks like:
    1. File Upload into a DB BLOB column
    2. File Download and display
    3. Full text search (via Oracle Text) etc.
    In the meantime, I installed WebUtil in my TEST environment (Application Server) and successfully started the DOCU_MGMT.fmx form. However, when I press the button that executes the webutil_file_transfer.DB_To_Client function, I get the "WUC-15" error message, namely:
         "WUC-15 Your Form must contain the following Bean for this function to be available.
    oracle.forms.webutil.file.FileFunctions"
    According to the error message guide:
    "WUC-15 Your Form must contain the following Bean for this function to be available."
    Description: WebUtil uses Bean areas to carry out client side functionality and these must be present.
    Resolution: Drag the WEBUTIL object group into your Form.
    But this form was compiled with the WEBUTIL pll attached and the WEBUTIL object group subclassed into it.
    Any ideas or tips on the problem and how I should proceed? Any support would be appreciated.
    Thanks and best regards,
    Randy

    I am facing the same problem...
    Please help me out with this problem .it’s urgent
    Requirment:- I have to display open_dialog box.
    Software:-Oracle10g suite
    Formweb.cfg
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    default.env
    WEBUTIL_CONFIG=D:\DevSuiteHome_1\forms\server\webutil.cgf
    CLASSPATH=D:\DevSuiteHome_1\j2ee\OC4J_BI_Forms\applications\formsapp\formsweb\WEB-INF\lib\frmsrv.jar;D:\DevSuiteHome_1\jlib\repository.jar;D:\DevSuiteHome_1\jlib\ldapjclnt10.jar;D:\DevSuiteHome_1\jlib\debugger.jar;D:\DevSuiteHome_1\jlib\ewt3.jar;D:\DevSuiteHome_1\jlib\share.jar;D:\DevSuiteHome_1\jlib\utj.jar;D:\DevSuiteHome_1\jlib\zrclient.jar;D:\DevSuiteHome_1\reports\jlib\rwrun.jar;D:\DevSuiteHome_1\forms\java\frmwebutil.jar;D:\DevSuiteHome_1\forms\java\jocab.jar
    Form Code
    declare
    x varchar(234);
    begin
    x:= WEBUTIL_FILE.FILE_OPEN_DIALOG ( 'c:\', '*.*', '|All files|*.*|', 'My Open Window' ) ;
    end;
    Compilation no Error. Error while running the form…Java Console say’s
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\perwaiz
    User has overriden browser's proxy settings.
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\perwaiz\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://biju-nxg.wjtowell.com:8890/forms/java/frmall_jinit.jar from JAR cache
    Loading http://biju-nxg.wjtowell.com:8890/forms/java/my_icons.jar from JAR cache
    Loading http://biju-nxg.wjtowell.com:8890/forms/java/frmwebutil.jar from JAR cache
    java.io.FileNotFoundException: File not found: http://biju-nxg.wjtowell.com:8890/forms/java/jacob.jar
    at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
    at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)
    at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)
    at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)
    at oracle.jre.protocol.jar.JarCache.get(Unknown Source)
    at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
    at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
    at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
    at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
    at sun.misc.URLClassPath$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.misc.URLClassPath.getLoader(Unknown Source)
    at sun.misc.URLClassPath.getLoader(Unknown Source)
    at sun.misc.URLClassPath.getResource(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at oracle.ewt.util.FocusUtils.<clinit>(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.<clinit>(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel._initCommonFixedDefaults(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel._getCommonDefaults(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel._getIndexedDefaults(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel.getDefaults(Unknown Source)
    at oracle.ewt.lwAWT.BufferedApplet.getUIDefaults(Unknown Source)
    at oracle.ewt.lwAWT.BufferedApplet.<init>(Unknown Source)
    at oracle.ewt.swing.JBufferedApplet.<init>(Unknown Source)
    at oracle.forms.engine.Main.<init>(Unknown Source)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    WARNING: Unable to cache http://biju-nxg.wjtowell.com:8890/forms/java/jacob.jar
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    java.lang.NoClassDefFoundError: com/jacob/com/ComException
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at oracle.forms.handler.UICommon.instantiate(Unknown Source)
    at oracle.forms.handler.UICommon.onCreate(Unknown Source)
    at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
    at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
    at oracle.forms.engine.Runform.processMessage(Unknown Source)
    at oracle.forms.engine.Runform.processSet(Unknown Source)
    at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
    at oracle.forms.engine.Runform.onMessage(Unknown Source)
    at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
    at oracle.forms.engine.Runform.startRunform(Unknown Source)
    at oracle.forms.engine.Main.createRunform(Unknown Source)
    at oracle.forms.engine.Main.start(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Thanks

  • Errors wcu-015: your form must contain the following bean for this function to be available : oracle.forms.webutil.file.filefunctions;

    my technical
    envirement:
    1_ Oracle
    Entreprise Manager version 9.2.0.1.0
    2_ Forms [32
    Bit] Version 9.0.2.9.0 (Production)
    3_ Oracle
    JInitiator: Version 1.3.1.9
    4_ WebUtil
    Version 1.0.2(Beta)
    5_ window xp
    service pack 2 build 2600.
    6_Internet
    Explorer 8 Version 8.0.6001.18702
    I m developping
    a form txt.fmb
    The obejective
    of this form is to open metars.txt file loctated in “c:\metars.txt”,
    through which read climate data for exapmle (temperature =25, humudity = 60) to
    finaly insert them into metars table in my data base.
    For recall
    while i m developing this form this step is well achieved:
    i open the
    WEBUTIL.olb, in  a window so different tabs is displayed and then i drag
    the webutil-object group into my forms object group-node. until I have the
    following items under the object group-node in my form test.fmb
    webutil_error                                               
    -- as alert style: stop
    WEBUTIL_HIDDEN_WINDOW                       
    WEBUTIL_CANVAS
    WEBUTIL                                                    
    -- as a block
    at run time I
    have the following message error which is come out form the function CLIENT_TEXT_IO.FOPEN(file_name,
    'W') and written through a  trigger fired
    on “ when new form instance”. 
    wcu-015: your form must contain the following bean for this function to be
    available : oracle.forms.webutil.file.filefunctions; 
    also i would like to inform that  at run time,
    java console didn't show me any of errors loading java files, which mean
    that all configuration required, to getting webutil work  with oracle 9i form builder,  are well executed.
    Oracle
    JInitiator: Version 1.3.1.9
    Using JRE
    version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and
    Settings\wwProxy Configuration: no proxyJAR cache enabled
    Location: C:\Documents and Settings\ww\Oracle Jar Cache
    Loading:
    http://wissam-773df302:8888/forms90/jars/webutil.jar
    from JAR cacheLoading
    http://wissam-773df302:8888/forms90/jars/jacob.jar from
    JAR cacheLoading
    http://wissam-773df302:8888/forms90/jars/demo90.jar from
    JAR cacheLoading
    http://wissam-773df302:8888/forms90/jars/FormsGraph.jar
    from JAR cacheLoading
    http://wissam-773df302:8888/forms90/jars/icons.jar
    from JAR cacheLoading
    http://wissam-773df302:8888/forms90/jars/frmwebutil.jar
    from JAR cacheLoading
    http://wissam-773df302:8888/forms90/java/f90all_jinit.jar
    from JAR cacheRegister
    WebUtil -
    Loading Webutil Version 1.0.2 BetaproxyHost=nullproxyPort=0connectMode=HTTP,
    native.Forms Applet version is : 90290
    Finally  still i m facing the same problem about the
    error message mentioned earlier; I appreciate any support and I will be very
    thankful for helping me to find  a suitable solution!!

    1.) Please don't double post:Urgent message : oracle9i form builder read  txt file error
    2.) As for your original post: don't post urgent questions over here. If they are really urgent call oracle support. See How To Ask Questions The Smart Way
    and after all:
    wcu-015: your form must contain the following bean for this function to be
    available : oracle.forms.webutil.file.filefunctions; 
    are you certain, 100% positive, and absolutely sure you have a bean item with above implementation class in your form? I'd double check that...
    JInit and IE8? I am not 100% sure, but I am almost certain that this combination didn't work at all. And please don't tell us you used that stupid hack where you replace the jvm.dll of JInit with one of a current JPI installation.
    The Oracle Versions you have in place are rather ancient as well, you really should think about upgrading your database and your forms installation. As you already are on webforms moving to the current version of forms shouldn't require much changes in your forms.
    cheers

  • In port let beans problem

    heloo every body
    i have a problem \
    look
    when i deploy a portlet and a text field is displayed in edit mode user enter id and it goes to a new page showing records in text filed from database in a form which can be edited and again submitted it works fine but when click on the view mode i set a form that is to inser values now the problem is here the the from is already filled with the values that i have previously edited now this is because the scope of the ban is set to session and if i dnt set to session then i dont get values in the edit form and if set session values are displayed in the view mode in the insert form
    in short i want that in the view the insert page the values must not be previously populated.
    is there any way for that except
    1. uninitilaize the bean after submission in edit form
    2. scope of the beans reduced to request
    thanks in advance
    Shakeel Abbas

    Is the permission included in the AccessControlException?
    Have you tried a policy like:
    grant {
         permission java.security.AllPermission;
    };

  • FRM 40738 - Argument 2 to builtin CREATE_TIMER

    Recently I migrated from forms 4.5 to forms6i (6.0.8.17.1). Everything worked fine until a few weeks ago. Every new fmx-file I create, gives a very strange error when the user moves his mouse over the icons in the toolbar: 'FRM 40738 - Argument 2 to builtin CREATE_TIMER'. The developers cannot reproduce this bug because it only occurs on the PC's of the users.
    Can somebody help me?

    -- BEGIN WHEN_MOUSE_ENTER
    BEGIN
    IF SUBSTR(NAME_IN('SYSTEM.MOUSE_ITEM'),1,INSTR(NAME_IN('SYSTEM.MOUSE_ITEM'),'.')-1) = 'TOOLBAR'
    THEN
    HINT.ShowButtonHelp;
    END IF;
    EXCEPTION
    WHEN VALUE_ERROR THEN
    null;
    WHEN OTHERS THEN
    null;
    END;
    -- END WHEN_MOUSE_ENTER
    -- ShowButtonHelp is a procedure in a PL\SQL library
    PROCEDURE ShowButtonHelp( timedelay NUMBER := 500) IS
    t Timer := Find_Timer(BUTTONHELPTIMER);
    BEGIN
    IF NOT on_windows THEN
    RETURN;
    END IF;
    IF NOT Id_Null(t) THEN
    Delete_Timer(t);
    END IF;
    sync_mouse_info;
    IF mouse_item IS NOT NULL AND
    mouse_item_is_iconic_button THEN
    IF mouse_item_label IS NOT NULL THEN
    t := Create_Timer(BUTTONHELPTIMER,timedelay,NO_REPEAT);
    END IF;
    ELSE
    HideButtonHelp;
    END IF;
    END;
    -- sync_mouse_info is a procedure in a PL\SQL library
    PROCEDURE sync_mouse_info IS
    BEGIN
    mouse_item := Name_In('SYSTEM.MOUSE_ITEM');
    mouse_canvas := Name_In('SYSTEM.MOUSE_CANVAS');
    appInst := TO_NUMBER(
    Get_Application_Property(APPLICATION_INSTANCE));
    IF mouse_item IS NOT NULL THEN
    hWind := TO_NUMBER(
    Get_Item_Property(mouse_item,WINDOW_HANDLE));
    mouse_item_hint := Get_Item_Property(mouse_item,HINT_TEXT);
    IF SUBSTR(mouse_item_hint,1,1) = CHR(0) THEN
    mouse_item_hint := NULL;
    END IF;
    ELSE
    hWind := NULL;
    END IF;
    END;

  • FRM-40738 issue on AIX servers

    Hi All,
    I have an issue with populating the LOV of a particular field. The form works fine on linux server but throws error FRM-40738 on unix server.
    Compiled all libraries in both the servers but still this issue persists. Can anyone throw some light on this?

    Hi,
    Thank you for the responses. After thorough checking we understood that the program code was not initializing the variables properly, so we had to modify few lines of the script to make it work on the new server. Somehow on original server(AIX5.2) it was not showing error with the script, but had issue with the OS upgrade to AIX 5.3. Apart from this one-off incident we have not faced any other issues till now. Will update if anything else crops up.
    Thank you again !
    Regards,
    Himansu

  • WC-015 -Your Form must contain the following bean for this funtion..FileFun

    I have done all the configuration for webutil,attached the library webutil.pll,copied olb etc.I want to envoke a file dialog box
    with the following code
    c:= client_get_file_name('c:\',null,'PDF|*.pdf|MS Word (*.doc)|*.doc|MS Word (*.rtf)|*.rtf','Select...');
    Giving error
    WC-015 -Your Form must contain the following bean for this funtion function to be available
    oracle.forms.webutil.file.FileFunctions
    checked all paths,formsweb.cfg,default.env ...
    still not able to find out where the problem is?

    Heres the output of the console..
    Loading http://pc-india12.india.local:8888/forms90/java/f90all_jinit.jar from JAR cache
    connectMode=HTTP, native.
    Forms Applet version is : 90290
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

  • Export error :- FRM-40738

    Hi All:
    I've created a custom form based on PO Summary form. When try to export, system gives me following error (while export works fine for PO Summary):
    "FRM-40738: Argument 1 to builtin FND_VIEW cannot be null."
    Any idea what am I missing?
    Thanks,
    -Manish

    Are referring to Oracle Applications? If so, then you should ask this question on one of the Oracle Applications forums.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Bean problem with creating Adapter Module in NW developer studio

    Hi Gurus!
    I started to develop an adapter module like described in
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/02706f11-0d01-0010-e5ae-ac25e74c4c81
    Unfortunatelly, I'm getting error described on page 9 of the document:
    Bean problem: no interface classes found
    I cannot resolve this problem. I've tried it also like described in the document, but no success.
    Any ideas of what could be wrong?
    Thank you!
    Marthy

    Marthy.,.
    Close and open project..standard problem ONLY with nwdi..
    Regards
    Ravi Raman

Maybe you are looking for

  • How do I have the audio of a clip play underneath a black title page?

    I have a project where I am asking a couple the same question seperately. I have a black title page that writes out the interviewer's question for 2 seconds, but while the title page is displayed, I would like to hear interviewer asking the question

  • ITunes crashes when I plug in 80GB iPod classic

    My 80GB iPod classic had been working flawlessly with my MacBook Pro until yesterday afternoon, when I plugged it in to sync and iTunes crashed with this error: Exception: EXCBADACCESS (0x0001) Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000014 I ha

  • HP 8500 A909g kills wirless network

    Hi all, I have a Telstra (Australia) mobile broadband modem.  The modem's built-in DHCP server assigns 10.0.0.1 to the printer,  10.0.0.2 to the old Compaq laptop and 10.0.0.3 to the new, replacement laptop, and HP Envy 17. The issue is that while th

  • How to combine two albums in one ?

    Hi, I bough a new mac and with it came the fastideous task of re-adding all the albums to iTunes once again. Everything was going fine until I added a album which has 2 CDs 14 tracks in one CD and 5 more in a Bonus CD what happen when I added the CDs

  • What is exactly STATISTICS in SQL Server

    hi all,   What is exactly STATISTICS in SQL server query optimiser ? Thanks Selva