Java class in oracle apps forms

java class in oracle apps forms
We developed a java class and its running perfectly on local machine (Over the web through java applet ) But when we deployed it in apps and run with the client machine its not running .so please suggest where we put our java class files and how to run it in apps? Is there any API's .
regards,
krishna

Hi user;
What is your Client Operayting system, what is your browser?
This error happens for one client or for all? Did you try to login from one other machine(for instance XP) and dif. browser version?
Please check below which could be helpful for your issue:
FRM-92101:
Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
FRM-92101: There Was a Failure in the Forms Server During Startup After Fresh R12 Installation [ID 429627.1]
R12 fresh install FORMS DO NOT LAUNCH - FRM-92101/500 [ID 427714.1]
FRM-92101: Forms Server oracle.forms.net.ConnectionException: Forms session <1> failed during startup: no response from runtime process [ID 880088.1]
Also check:
http://onlineappsdba.com/index.php/2009/06/15/frm-92101-with-internet-explorer-8-how-to-uninstall-ie8/
Re: R12 database and JRE Issue
Regard
Helios

Similar Messages

  • Calling java code from oracle apps form

    I've created my own java .class file and am attempting to call it from an oracle applications form. I am getting a runtime error while running the form, but I don't know what the error is because nothing is being reported to me.
    I've created the .java file in JDeveloper, compiled it into a .class file, deployed it to a .jar file, and placed it on the application server in a directory that the CLASSPATH can see it. I've added it to the archive parameter of the appsweb.cfg file and see that the .jar file is being downloaded when the JInitiator of Oracle Apps is started.
    I have also imported the .class file into the form via the Program -> Import Java Classes which resulted in PL/SQL package stubs created to call the .class methods.
    When I run the form, the java code is activated on a triggering event, PRE-INSERT. There is no java bean item in a block or on a canvas anywhere. I dont' think I need there to be since I am simply using the java code to perform actions during PRE-INSERT, not to display anything on the canvas.
    I have placed debug messages throughout my code and see that the error is occuring in the PL/SQL packaged stub at the line "JNI.GET_CLASS()" where the parameter to that call is the name of my class. I know it's erroring there because I am handling the "java_error" exception. I am displaying "ora_java.last_error" in the exception handling, but it is null.
    I am at a loss as to determine why I am having problems and how to display an error. Any suggestions? I'm happy to outline my steps and problem in more detail if I have missed something obvious.
    We are using Forms 6.0.8.21.3 with Oracle Apps 11.5.7.
    Shane.

    Shane,
    Don't loose the heart. You have come too close to end.
    The scenario you have mentioned is very unique and something which will fit more in the forms forum. So I think that was a sincere answer to help you and not a "pass the buck" card type game :)
    You are lucky that you got Tapash interested into this issue, otherwise you see there is no OAF component involved out here.
    I have an article promised to some of the guys but will follow this issue.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Oracle.apps.fnd.framework.OAException: Could not create Java class: (xxaai.oracle.apps.fnd.upload.webui.XxaaiBUDemandMassLoadPGCO)

    I have recently created a custom OAF app in JDev for R12.2.2.  In JDev this is working fine, so I have deployed this to the environment.  I created the function to access the page, but I am receiving this error.  I validated that the class and xml files match the name used in JDev and are in the correct location under $JAVA_TOP in the RUN environment.  As a test I created the same page in Jdev for 11.5.10 and the page deployed and worked fine.
    What could be the difference in R12.2.2? The only things that we have deployed so far are converted 11.5.10 apps that needed changes to the VO definitions for R12.2.2

    Just bringing this up to the top of the list to see if anyone else has had this same issue.

  • Reusing oracle apps forms

    Hi,
    Is there a way that we can add more functionality to an
    already existitng Oracle Apps form without remaking it from
    scrap?
    Please let me know.......
    TIA
    vamsi

    Yes, all of the fmb files are stored somewher in your APPL_TOP
    tree, I think. They're out there though. Keep in mind that
    there are specific recommended methods on changing the default
    functionality of a form. Oracle will also not support your
    modifications. There is a 5 day Oracle Education course that
    specifically details how to accomplish what you're trying to
    do. "11i Extend Oracle Applications: Forms", Class 14464.

  • :system.last_record in Oracle Apps Forms

    Hi all,
    My requirement is when I give order number in header level in Oracle Apps Form, i want the lines to be displayed in lines block.
    I have written the query and a cursor.
    The Query returns 6 lines when passing the Order Number.
    But when i use the following code in forms, the form returns only one line in the lines block.
    BEGIN
    first_record;
    for i in xx_cur
    loop
    :REQUEST.CUSTOMER_NUMBER := i.party_number;
    :REQUEST.CUSTOMER_NAME := i.party_name;
    If :system.last_record = 'TRUE'
    Then
    Exit;
    ELSE
    next_record;
    End if;
    end loop;
    END;
    If i use the above code only the first line gets displayed in the form.
    If i didnt use the system_last_record condition the 6 lines are displaying.
    --If :system.last_record = 'TRUE'
    --Then
    --Exit;
    --ELSE
    next_record;
    --End if;
    end loop;
    END;
    Y the :system.last_record is not working.
    Please help me to solve this issue.
    Thanks in Advance,
    Jegan

    i'm assuming this is a non-database block? if so, you don't need FIRST_RECORD and :SYSTEM.LAST_RECORD is always true ...
    try
    BEGIN
        FOR i IN xx_cur
        LOOP
            IF :request.customer_number IS NOT NULL THEN
               CREATE_RECORD;
            END IF;
            :request.customer_number := i.party_number;
            :request.customer_name := i.party_name;
        END LOOP;
    END;

  • Run a java class in Oracle db to connect to Sybase

    Hi All, I'm looking for a way to connect to Sybase database at no-license-cost (meaning Oracle Gateway or similar 3rd party products), first coming idea was JDBC, I know I can run a java class in Oracle, the simple idea is to write a java class which connects to Sybase via JDBC thin driver and return the resultset of given query in a java class, the resultset will be presented in Oracle Apex framework.  Does anyone know if this can be done or not, and how?  Any howto articles are welcomed.
    Henry

    Henry:
    To connect to Sysbase or MsSQL Server you could use jTDS open source driver.
    http://sourceforge.net/projects/jtds/
    upload above driver (jar file) using loadjava, and grants the port connection using dbms_java.grant_permission procedure.
    Because jTDS is pure java driver (mode 4) is possible to use directly inside the RDBMS.
    Best regards, Marcelo.
    PD: Latest jtds driver is compiled against 1.6 sources, but oldest version will work with 1.5 for 11g.

  • Java.lang.NullPointerException oracle.apps.xdo.servlet.GlobalContext.getPro

    Hi,
    We have installed BI Publisher as part of OBIEE 10.1.3.4.1. Our J2EE Application Server is Apache Tomcat 5.5.2.7
    After manually deploying the xmlpserver.war in Tomcat and doing the changes to xmlp-server-config.xml
    When i am trying access the URL, its resulting into following Tomcat Error:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         oracle.apps.xdo.servlet.GlobalContext.getProperty(GlobalContext.java:182)
         oracle.apps.xdo.servlet.security.SecurityFilter.handleSSO(SecurityFilter.java:318)
         oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:108)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.27 logs.
    Before doing the changes, when i tried to access via URL, it was showing up BI Publisher Login Screen.
    Any idea whats wrong?
    I have also copied the fonts to the JRE/lib/fonts folder.
    Thanks,
    Shalabhsneha

    I went through Tomcat Logs & found following full trace in catalina.out
    - Servlet.service() for servlet jsp threw exception
    java.lang.NullPointerException
    at oracle.apps.xdo.servlet.GlobalContext.getProperty(GlobalContext.java:182)
    at oracle.apps.xdo.servlet.security.SecurityFilter.handleSSO(SecurityFilter.java:318)
    at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:108)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:875)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
    at java.lang.Thread.run(Thread.java:595)

  • How to send HTML Format Mail using Java Mail in oracle 9i Forms

    Dear All
    could you please tell me how to send HTML Format Mail using Java Mail in oracle 9i Forms and how to implement the java mail ?
    if it is possible, could you please send me the sample code? please very urgent
    Thanks
    P.Sivaraman

    Hello,
    <p>Here is a Form sample.</p>
    Francois

  • How to display WHO columns in oracle apps form

    Hi all,
    I have WHO columns in the Table and i need to add in the existing form and i have WNI trigger (execute_query) and i am trying to add columns in the Existing Database Block
    After opening the Form(oracle apps form) i am not getting/populate any records on the Block
    Please help and please give me the steps
    Thanks

    Hi ,
    This community is to discuss Oracle Application Server specific issues, you can post this query in for better response:
    Forms
    Oracle Forms - EBS (MOSC)
    Regards,
    Prakash.

  • Why record had been unlock in Oracle Apps form?

    I have a problem with lock in oracle apps forms.
    The problem occurs with all forms in the Oracle Financials (forms with standard oracle apps user-exit), the problem does not occur with standard Oracle default form (outside of the oracle apps, form without user-exit included in Oracle Financials).
    For exemple, I will take the Define Lookups forms.
    If USER1 modify a record (ex. modify the date from), the record is locked, if USER2 try to update the same record in an other session, he will received an error message indicating that the record is locked and he will not be able to update it. This is normal.
    But ..., if USER1 WAIT 1 minute, and just press TAB to go to an other field (WITHOUT SAVING, WITHOUT DOING ANYTHING ELSE), the record is unlock.
    USER2 can modify the same record without having the locked message. This is the problem, USER2 should receive an error message because USER1 did not save the record yet but the message do not appear. At this moment USER2 lock the record. If USER1 press SAVE key, his session will be freeze until USER2 save the record.
    Why the record had been unlock for USER1 session?
    My Oracle Apps version is 11.5.5.
    Does somebody ever seen this problem ?
    Thanks.

    There are forums specifically for posing questions relating to EBS. I would recommend you ask your question there.

  • Oracle Apex to Oracle Apps Forms migration

    Is it possible to migrate a form exsisting in Oracle Apex to Oracle apps forms?If so pl tell me how this could be achieved.

    Hey men!!
    In my opinio in not posible because in oracle Apex you have another kind of programming, and in Oracle forms you others type of tools for example: triggers, I said isn'tr posible because there isn't a tool or an application that can help you in convert from Apex to Form, it's very extrange circumstance.
    This is posible but... you have to program, typing and all of anything for converting to Oracle Form if you don't want to do anything you have to pay someone for developing that ,
    in others words you have/must (to) start from the beginning,
    from zero.
    Unfortunately today there is not application that can let you do that.
    I hope this helps,
    Best Regards my buddy.

  • Converting D2K form to Oracle apps Form

    Hi,
    How to convert normal d2k form into oracle apps Form.
    Thanks & Regards,
    Jayakumar

    Hi nvpjai
    u need 2 ask ur question there in General EBS Discussion
    Hope this helps...
    Regards,
    Amatu Allah

  • Oracle Apps Forms errors out with FRM-40735 while running from Oracle D2K

    Hi
    Will anybody please provide me a solution on Oracle Apps Forms which errors out with FRM-40735 while running from Oracle D2K
    Regards
    Nakul Venkataraman

    Hello,
    certain trigger in your form is throwing an exception and its not being catched by the exception part for your block. check the code of your trigger and pur exception handling into your trigger code

  • Oracle Apps Forms Re-usability

    Hi,
    Is there a way that we can add more functionality to an
    already existitng Oracle Apps form without remaking it from
    scrap?
    Please let me know.......
    TIA
    vamsi

    If you do not want to modify and existing form but want to add functionality to the existing form and can not use
    descriptive flexfields to add new functionality, you could use the custom.pll to accomplish this. Depending on
    how many enhancements you will be adding using this method, you could impact performance across the
    board due to the fact that the all forms execute the custom.pll to look for custom code. To find more information
    about the custom.pll review the developers guide.( Oracle Applications Developer's Guide A75545-02)
    Hop that helps.

  • Adding a  value to an LOV in an Oracle apps form

    Hi Guys
    Im new to forms and customizations in apps as im sure will be apparent with the questions i have :-)I have a requirement to add a value to an LOV on a field in an oracle apps form.
    My question is
    1: How do i get the lov query?
    2: How do i edit an existing query.
    3: How can i solve this problem.
    Thanks

    Since you are working with the E-Business Suite, most likely the LOV is based on a Value Set. I strongly recommend you confer with a coworker for guidance on how to investigate an Oracle EBS Form. Value Sets are defined within the EBS setup screens and you have to be assigned to a responsibility that will allow you to modify and create Value Sets. I also strongly recommend you visit the Oracle Applications Documentation web site and review the Oracle Applications Developer's Guide and Oracle Applications User Interface Standards for Forms-Based Products for your particular version of the EBS.
    Also, the General EBS Discussion is the more appropriate forum to post this type of question.
    Hope this helps.
    Craig...

Maybe you are looking for