Forms6i : FileUpload error FRM-40735

Hi,
I try to run the FileUpload demo on Solaris, and I get stuck with the error FRM-40735, ORA-105100 (WHEN-BUTTON-PRESSED trigger)
I already read everything concerning this problem in this forum, but I don't know how to check my configuration.
I read somrthing about "import java classes" but I obtained an error about Jvm.
I also get this error on the server : "Could not load library libzip.so"
My config is :
server side : Solaris 8, ias9i, forms6i (6.0.8.24)
client side : Windows XP pro, IE with Jinitiator 1.1.8.22
I would appreciate any help...
Thanks a lot

Hi,
The problem seems to require proper analysiz. I suggest customer support at metalink.oracle.com
Frank

Similar Messages

  • ERROR FRM-40735 while migrating from 6i to 9i using FMA

    Hi,
    We have migrated a sample form which is in 6i to 9i using Oracle Forms Migration Assistant. It is compiling without errors and while running hitting the error
    FRM-40735:PRE-FORM trigger raised unhandled exception ORA-06508.
    and not opening up the form...Please post any suggestions on this.
    madhu.

    Thank you very much for the help...I could resolve it by just adding the appropriate pll's in forms90 folder.
    Now, we are trying to implement the calender in forms 9i. As we are moving from Forms 6i C/S to Forms 9i, as a first step I've implemented calender in web forms 6i (using demo's in oracle doc's--using CalenderWidget Bean)
    I tried doing the same for Oracle 9i too but it didn't work..I mean it is deleting the code for the trigger
    WHEN_CUSTOM_ITEM_EVENT which is written for Bean.
    Please suggest me regarding how to proceed with this...
    thank you
    madhu.

  • Error FRM-40735, ORA-04062 While Making Payments

    Hi, while making payments it raised following errors:
    FRM-40735:POST-FORMS-COMMIT trigger raised unhandeled exception ORA-04062these are steps in navigation:
    invoice >> action 1...pay in full>>>payment method (bill payables)
    does anyone know how to overcome this error ??
    thx

    Was this working before? If yes, any changes been done recently?
    Do you have any invalid objects in the database?
    Please see these docs.
    Receipts Workbench Error: Listing of ORA Errors [ID 1364345.1]
    Receipts Workbench Error: Listing of FRM Errors [ID 1361887.1]
    Thanks,
    Hussein

  • Error frm-40735 ora-01403

    I read that this is a general purpose error for Forms, but I couldn't find an answer for my situation. I have a datablock based on a view, and a command button that has a trigger for selecting values into the block where one of the blocks fields matches those records. Here is the pl/sql code for the button's when-button-pressed trigger:
    BEGIN
    SELECT VIEW.ATTRIBUTE1, VIEW.ATTRIBUTE2
    INTO :DATABLOCK.TEXTFIELD1, :DATABLOCK.TEXTFIELD2
    FROM VIEW
    WHERE :DATABLOCK.TEXTFIELD = VIEW.ATTRIBUTE3;
    END;
    When I try to run this in Forms, I get the Error frm-40735 ora-01403. I can run similar code from SQL Plus. I would really appreciate some help.
    regards

    Let me give a better example: If I have two tables:
    create table dept (
    dept_no NUMBER,
    dept_name VARCHAR2(10),
    CONSTRAINT dept_pk PRIMARY KEY (dept_no)
    create table Location (
    loc_no NUMBER,
    loc_name VARCHAR2(10),
    dept_no NUMBER,
    CONSTRAINT loc_pk PRIMARY KEY (loc_no),
    CONSTRAINT loc_fk FOREIGN KEY (dept_no)
    REFERENCES dept(dept_no)
    and I create a master-detail form between the two. If I try to search by the loc_name, with the two tables joined by the master-detail, and have a trigger on a command button with the code:
    BEGIN
    SELECT d.dept_no, d.dept_name
    INTO :DEPARTMENT.DEPT_NO, :DEPARTMENT.DEPT_NAME
    FROM Location l, Dept d
    WHERE :LOCATION.LOC_NAME = l.loc_name;
    END;
    why do I encounter the error?

  • Error frm-40735 ora-01422

    Hi,
    I have two tables:
    dept(
    dept_name VARCHAR2(10),
    dept_info VARCHAR2(10),
    CONSTRAINT dept_pk PRIMARY KEY (dept_name)
    location(
    loc_name VARHCHAR2(10),
    loc_info VARCHAR2(10),
    dept_name VARCHAR2(10),
    CONSTRAINT loc_pk PRIMARY KEY (loc_name),
    CONSTRAINT loc_fk FOREIGN KEY (dept_name)
    REFERENCES dept (dept_name)
    dept has the values ('dname1', 'dinfo1'), ('dname2', 'dinfo2'), ('dname3', 'dinfo3')
    location has the values ('locname1', 'dname1', 'linfo1'), ('locname2', 'dname2', 'linfo2'), ('locname3', 'dname2', 'linfo3'), ('locname4', 'dname3', 'linfo4'), ('locname5', 'dname3', 'linfo5'),
    I have a data block based on the location table. I also have a command button with the WHEN-BUTTON-PRESSED trigger:
    BEGIN
    SELECT loc_name, loc_info
    INTO :DATABLOCK.LOC_NAME, :DATABLOCK.LOC_INFO
    FROM location
    WHERE dept_name = :DATABLOCK.DEPT_NAME;
    END;
    If I try to do a search for a dept_name that has only one value in location, the Form will work properly and retreive that row. However, if I do a search for a dept_name that has two or more values in the table, I get the FRM-40735 ORA-01422 ERROR. I can tell that the Form will not allow me to retreive more that one row at a time, but what is a way that I can retreive more than one row at a time? I have set the datablock to Tabular and display 10 records, so it could retrieve the right amount of rows. Please help.

    I have a data block based on the location table.So do you want to show all the locations in that block which match the given DEPT_NAME ?
    If your block is based on the location-table you would just set the WHERE-condition on that block and do a requery, there is no cursor needed for that, so try the following code in your WHEN-.BUTTON-PRESSED-trigger.
    SET_BLOCK_PROPERTY('LOCATION', ONETIME_WHERE, 'dept_name=' || DATABLOCK.DEPT_NAME);
    EXECUTE_QUERY;If you have to use a select to do something other with the result than populating the block, then for a select returning more than one row, you have to use a cursor, something like:
    DECLARE
      CURSOR crDept IS
        SELECT loc_name, loc_info
          FROM location
        WHERE dept_name = :DATABLOCK.DEPT_NAME;
    BEGIN
      FOR rec IN crDept LOOP
        IF :SYSTEM.RECORD_STATUS!='NEW' THEN
          CREATE_RECORD;
        END IF;
        :DATABLOCK.LOC_NAME:=rec.LOC_NAME;
        :DATABLOCK.LOC_INFO:=LOC_INFO;
      END LOOP;
    END;

  • ERROR FRM-40735

    Hi,
    I'm using Oracle Forms 10.1.2.0.2 (10g).
    I'm using client_get_file_name function to get the filename and using webuitl.pll library files and simple code written in when-button-pressed trigger,
    DECLARE
    INPUT client_TEXT_IO.FILE_TYPE ;
    L_FILE_NAME VARCHAR2(50);
    BEGIN
    L_FILE_NAME := client_GET_FILE_NAME('C:\',NULL,'PDF Files (*.PDF)/*.PDF/',NULL,OPEN_FILE,FALSE);
    :TXT_DESTN_NAME := L_FILE_NAME;
    END;
    and i'm getting the error is
    FRM-40735 : when -button-pressed trigger raised unhandled exception-ORA-06508
    Thanks in advance

    Hello sir,
    When i complie webutil.pll file.Its gives errors like
    identifier WEBUTIL_DB.OPENBLOB must bedclared
    identifier WEBUTIL_DB.CLSOEBLOB' must bedclared
    in thePACKAGE BODY WEBUTIL_DB_LOCAL.
    But WEBUTIL_DB package is not in the webutil.pll
    thanks in advance

  • Sir how I avoid I this error FRM-40735: POST-QUERY trigger raised unhandled

    Hi master
    Sir this error crate may problem for me
    FRM-40735: POST-QUERY trigger raised unhandled exception ORA-01403
    sir how I avoid I this error and show my message
    or system not show this error and bypass this error
    please send me code how I avoid this error
    thanks
    aamir

    There may be many causes of this error. You better diagnose and remove them.
    1- A field length may be less than what your query return a data into it.
    2- A POST-CHANGE trigger on any data may return un-desired data (character into numrice field, longer value than a field etc).
    likewise.
    Regards
    Sayeed
    [email protected]

  • When trying to setup a new Operating Unit gives an error: FRM-40735: PRE-FORM trigger raised unhandled exception ORA-06502

    EBS - Payables - Version 12.1.3.
    We Have many others Operating Units configured and no errors occurs.
    This error occurs only if we set a new OU.
    All profiles have been configured properly. (MO: Operating Unit, HR: Security Profile, etc..)
    The trace shows:
    SELECT PROFILE_OPTION_VALUE
      FROM FND_PROFILE_OPTION_VALUES
    WHERE PROFILE_OPTION_ID = 5852                           
       AND APPLICATION_ID = 178
       AND LEVEL_ID = 10003
       AND LEVEL_VALUE = 124280
       AND LEVEL_VALUE_APPLICATION_ID = 200        
       AND PROFILE_OPTION_VALUE IS NOT NULL
    The PROFILE_OPTION_ID = 5852   is  "ICX:Session Timeout".
    If I set this profile the error does not occur. But its is very strange to have to configure it for a responsibility level.

    Hi All.
    I discovered what the problem was.
    The size of the name of the responsibility was with many characters.
    Reduced the size and the error stopped occur.
    Tks!

  • Error FRM-40735 , ORA-01438

    Hi,
    In my form, for the Master-Details Data Block, the DML source is Procedure,
    For eg, the DetailsBlock name is "Files", and given below is the procedure to update that block. I have two doubts regarding to it,
    1. When user click Save button , i want to execute this procedure for all the records, now it is updating only one row, because of dmlset(1) (how should i do loop, I am new baby).
    2. Insert into TableA query is not executing, i am getting the error ORA -01438
    Scenario is :
    The datas are loaded into block from TableA and TableB.If the value of the column VALIDREJECTION is "InValid" then that row shoube be updated in the TableA, if it is not in TableA, then it should be inserted to TableA. That is TableB contains all records(both Valid & InValid) , but TableA contains only records with VALIDREJECTION ='InValid"
    My Procedure is :
    procedure filesUpdate(dmlset in out disputeFiles_tab) is
    cursor c_files is
    select FILEID
    from TableA
    where FILEID=dmlset(1).FILEID;
    tempout TableA.fileid%type;
    begin
    if dmlset(1).VALIDREJECTION='Valid' then
         DELETE FROM TABLEA WHERE FILEID=dmlset(1).FILEID;
    else
    --if Valid changed to InValid and updated, then it should be inserted
    open c_files;
    fetch c_files into tempout;
    IF c_files%NOTFOUND then
    insert into TableA(FILEID,VALIDREJECTION,USERID)
    values(dmlset(1).FILEID,dmlset(1).VALIDREJECTION,
    dmlset(1).USERID);
    ELSE
    update TableA
    set FILEID=dmlset(1).FILEID,
    VALIDREJECTION=dmlset(1).VALIDREJECTION,
    USERID=dmlset(1).USERID,
    where FILEID=dmlset(1).FILEID;
    END IF;
    close c_files;
    end if;
    end;
    Thanks in Advance ,
    bye bye

    Hi,
    From oracle error documentation...
    ORA-01438: value larger than specified precision allowed for this column
    Cause: When inserting or updating records, a numeric value was entered that exceeded the precision defined for the column.
    Action:     Enter a value that complies with the numeric column's precision, or use the MODIFY option with the ALTER TABLE command to expand the precision.
    May be you are trying to enter CHAR value to NUMBER field.
    Check it out!

  • In R12.1.3 we get FRM-40735: ON-ERROR trigger raised unhandled exception.

    Hello,
    after we upgrade to R12.1.3 users are getting FRM-40735: ON-ERROR trigger raised unhandled exception ORA-01001, can you please help to resolve this issue immediately.

    Can you provide the list of patches you have applied?
    In addition to the log files mentioned above, please confirm that you have no invalid objects in the database.
    Loading the System Administrator Forms Responibility Produces Error FRM-40735,ORA-06508 (Doc ID 271652.1)
    Oracle Application Return The following Error FRM-40735: ON-ERROR trigger raised unhandled exception ORA-6508 (Doc ID 797293.1)
    After Migrating To Linux, Users Are Seeing FRM-40735 When Trying To Access Forms. (Doc ID 1282488.1)
    Thanks,
    Hussein

  • FRM-40735 on the Web, in client/server without error

    We have 2 types of Form modules.
    Type 1 are simple multirecord modules,
    which uses PL/SQL library module PL1.plx.
    Type 2 are complex (master-detail) modules,
    which uses PL/SQL library module PL2.plx.
    In client/server, both types of Form modules work fine.
    On the Web (Intranet), type 1 modules works fine, but loading of type 2 modules finishes with error: FRM-40735 PRE-FORM trigger raised unhandled exception ORA-06508.
    In both cases database schema and fmx/plx modules are the same.
    Implementation of WebForms is noncartridge
    (without Oracle Application Server).
    Clients use Jinitiator and IE4.
    Forms version is 5 + patch 7.
    DBMS version is 7.3.4.0.
    Thanks and regards.

    Two questions:
    Are you running your application against one DB, while it was compiled against another?
    If any of your forms or libraries is calling DB stored package that are passing parameters in between database and modules?
    If the answer to both questions is yes, then you're dealing with Oracle bug. Oracle support points to interaction between forms
    PL/SQL 8.0.5.1.0 and database PL/SQL 2.3.4.
    This problem should be fixed in the forms
    PL/SQL 8.1.6 which is not available at present time. The only work around is to maintain forms executable and/or compiled libraries for each of your DB.
    Good luck.
    null

  • When does FRM-40735 error come

    when does the error FRM-40735 and ORA-304500 come.What does it mean.
    thank you

    The FRM is an unhandled exception error message and the ORA message is to do with a problem in ORA_FFI.
    Place and exception handler with the code:
    EXCEPTION
    WHEN OTHERS THEN
    FOR i IN 1..Toll_Err.NErrors LOOP
    PAUSE;
    Tool_Err.Pop;
    END LOOP;
    END;
    Regards
    Grant Ronald
    Forms Product Management

  • FRM-40735 error in PROD sys

    hi,
    When Saving Data there is an error in production system:
    Error
    FRM-40735:WHEN-BUTON-PRESSED
    trigger raised unhandled exception
    ORA-01403
    Regards
    ***SBJ***

    Hi,
    When Click Details button the following message is coming
    FRM-40735:WHEN-BUTON-PRESSED trigger raised unhandled exception ORA-01403
    ORA-01403 :no data found
    ORA-06512 :at “APPS.MMI_RCV_COR_INTERFACE”,line 68
    EBS:11.5.9 base
    OS: Windows 2003 server
    This is customized module.
    Regards
    ***SBJ***
    Edited by: user13098774 on Jun 14, 2010 1:33 AM

  • FRM-40735 & ORA-06544 errors

    Hello Friends,
    I have installed oracle database 9iR2 and 10gR2 on my windowsXP system When I run the Dynamic_build form through Dynamic_build form using the oracle 10g connection the form runs correctly but if I am connected to database 9i with the same forms it gives me the error
    Frm-40735: WHEN-NEW-FORM-INSTANCE trigger raised unhandled exception ORA-06544
    I am using forms 10gR2.
    Thanks
    Hardip

    From Oracle Database Documentation you'll get the following message:
    ORA-06544 PL/SQL: internal error, arguments: [string], [string], [string], [string], [string], [string], [string], [string]
    Cause: A PL/SQL internal error occurred.
    Action: Report as a bug; the first argument is the internal error number.
    I suppose you are performing some query which causes this error in 9i. You can verify this when performing this query also in sqlplus connected to your 9i Database.
    To Avoid this Error you'll probably get the advice from OSS to update your database to 9iR2 in minimum.
    regards

  • FRM-40735 AFTER EBS UPGRADE 12.1.1 TO 12.1.3

    hi all ,
    i have succesfully upgrade oracle ebs from 12.1.1 to 12.1.3
    but i cannot open jsp page from form navigator, but if i open jsp page form home page nothing problem.
    error will be saw :
    this error FRM-40735: WHEN-LIST_ACTIVATED trigger raised unhandled exception ORA-29532
    this any clue for solve this problem ?
    regards
    imron s

    application log from forms
    12/11/22 11:11:44.732 formsweb: 10.1.3.4.0 Started
    12/11/22 11:14:52.305 formsweb: ListenerServlet init()
    12/11/22 13:40:34.619 formsweb: 10.1.3.4.0 Stopped
    12/11/22 14:43:29.207 10.1.3.4.0 Started
    12/11/22 14:43:30.388 formsweb: FormsServlet init():
    configFileName: /oraapps/PROD/inst/apps/PROD_smjkt-prrp01/ora/10.1.2/forms/server/appsweb.cfg
    testMode: false
    12/11/22 14:43:30.414 formsweb: 10.1.3.4.0 Started
    12/11/22 14:45:16.246 formsweb: ListenerServlet init()
    application log from oacore
    html: chain failed
    java.lang.ArrayIndexOutOfBoundsException
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:122)
    at oracle.apps.fnd.oam.sdk.util.support.OAMOutputStreamWrapper.write(OAMOutputStreamWrapper.java:135)
    at java.io.OutputStream.write(OutputStream.java:110)
    at sun.nio.cs.StreamEncoder$CharsetSE.writeBytes(StreamEncoder.java:355)
    at sun.nio.cs.StreamEncoder$CharsetSE.implClose(StreamEncoder.java:450)
    at sun.nio.cs.StreamEncoder.close(StreamEncoder.java:183)
    at java.io.OutputStreamWriter.close(OutputStreamWriter.java:227)
    at oracle.cabo.ui.UnsynchronizedBufferedWriter.close(Unknown Source)
    at oracle.cabo.ui.UnsynchronizedPrintWriter.close(Unknown Source)
    at oracle.cabo.ui.ServletRenderingContext.finishResponse(Unknown Source)
    at oracle.cabo.servlet.ui.UINodePageRenderer.renderPage(Unknown Source)
    at oracle.cabo.servlet.AbstractPageBroker.renderPage(Unknown Source)
    at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source)
    at oracle.apps.fnd.oam.servlet.ui.OAMServlet.doGet(OAMServle
    12/11/22 14:43:20.958 html: 10.1.3.4.0 Started
    12/11/22 14:44:11.164 html: oracle.apps.fnd.security.LeakDetectionFilter.initialized:1353570251164
    12/11/22 14:44:11.164 html: LeakSetting:
    global:true,session:false,aggressive:false,stderr:false,appslog:false,corelog:false
    ignoring:null
    12/11/22 14:44:17.559 html: Servlet error
    java.lang.NullPointerException
    at OAErrorPage.jspService(_OAErrorPage.java:356)
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:816)
    at OA.jspService(_OA.java:256)
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.serv
    12/11/22 15:02:14.451 html: setupGLRRO.uix: Parsing error, line 25, column 42: Could not find class oracle.apps.fnd.oam.servlet.ui.handlers.setup.dashboard.RequestsSetu
    pHandler
    12/11/22 15:02:14.458 html: setupSLRRO.uix: Parsing error, line 25, column 42: Could not find class oracle.apps.fnd.oam.servlet.ui.handlers.setup.dashboard.RequestsSetu
    pHandler
    12/11/22 15:02:14.469
    html: setupGLPRO.uix: Parsing error, line 25, column 42: Could not find class oracle.apps.fnd.oam.servlet.ui.handlers.setup.dashboard.RequestsSetu
    pHandler
    12/11/22 15:02:14.473 html: setupSLPRO.uix: Parsing error, line 25, column 42: Could not find class oracle.apps.fnd.oam.servlet.ui.handlers.setup.dashboard.RequestsSetu
    pHandler
    ~
    this error in application log
    any suggest ?

Maybe you are looking for

  • Text not displayed in the Web Report

    Hi All, I have a query where user is expecting both Key and Text to displayed in the report for the Info object "Local Product High". This infoobject has text data available. But Iam not sure why this is not getting displayed even when I select both

  • I have lost the use of the 'forward' and 'back' button

    On Win 7 I have lost the use of the forward and back button - both are greyed out - except on this page ??? when I leave this page the greyed out appears on all tabs or links in use. I am using Firefox 3.6.16. To get to this page I have 7 tabs open a

  • Cross Docking Functionality - ECC6.0

    Hi, Can some explain in detail what are the Cross Docking Functionalities has been provided in ECC 6.0 compared to the previous versions. Thanks, Chak.

  • How can I import Safari bookmarks to my iPhone 6

    I simply want to export Safari bookmarks from my Mac to iPhone 6. I do not want to use cloud. ITunes lets me sync contacts and calendars (along with music, movies and all the other crap I do not want to sync) but does not offer me the option  of sync

  • How to set Preview as default app to open pdf's?

    Hi, Somehow I switched to Adobe Reader as the default app with which to open PDFs and I don't know how to switch back to Preview. Help? I'd like to be able to click on a PDF or download one with Safari without opening Reader but opening Preview inste