FRM-47313

Hi all,
I work in Forms 6.0.
I have constructed an tree item and I used a query to populate it.
The format of query is:
select 1,level,ename,null,to_char(empno)
from emp
connect by prior empno=mgr
start with MGR IS NULL
I used the apropriate PRE-BLOCK trigger:
declare
     htree item;
begin
     --Find the tree itself.
     htree:=find_item('tree_block.tree_item');
     --Populate the tree with data.
     ftree.populate_tree(htree);
end;
And all works fine.
But, I gave the form module to a friend and he sais
that receives the FRM-47313 error message.
What could be the cause?
Thanks in advance,
Eugen

Eugen,
'FRM-47313: Invalid query for the hierarchical tree' was not documented in the Form builder Help Topics.
This is a new error message since D2K 6.0 hierarchical tree (htree)object.
The format of the query must have to have the following format:
4 column format:
Initial State NUMBER values 1, -1, 0
node tree depth NUMBER values starting at 1 and increasing by 1
for children
node label VARCHAR2 max 256 ( truncated without error )
node icon name VARCHAR2 max 256 ( truncated without error )
An example query:
select initial_state, node_tree_depth, node_label, node_icon_name
from my_tree_data_table
If the tree works for you, then still there can be a problem with the database (or table) that your friend uses.
Fran

Similar Messages

  • Frm-47313 Invalid Query for Hierarchy tree

    Hello. i am trying to create a hierarchy tree with the following query:
    SELECT 1, level, n.name, null, hn.nde_id
    FROM cerpt_nodes n, cerpt_hierarchy_nodes hn
    WHERE n.id = hn.nde_id
    AND hn.hir_id = 1
    CONNECT BY PRIOR hn.nde_id = hn.nde_id_parent_of
    START WITH hn.ntp_code='ROOT';
    I check the table and column names, they are correct. I tried to create tree with scott.emp table, I have no problem. The only different is this query has nested tables and where clause. Is that I cannot use WHERE clause and nested tables? Can anybody tell me what I have done wrong? Thank you very much

    I had problems with joins in the same SQL statement using the Connect Prior By statement. Try creating a view over your nested tables then create the SQL statement for the tree using the view.
    I ended up having a lot of problems using the tree control. I ended up modifing my database design to accomodate the short falls of the Connect Prior By statement.
    Hope this helps.
    Jamie

  • Htree - many hours later still getting "invalid query for htree"

    I'm using the Pre_Form trigger ftree.populate_tree('HTREE_BLK.TREE4'); and the query you see below. I am still getting "FRM-47313: Invalid query for the hierarchical tree". I must be missing something because I don't see what is wrong with the query.
    greg
    SQL> select
    2 decode(level, 1, 1, -1)
    3 ,level
    4 ,description
    5 ,null
    6 ,menu_id
    7 from htree_menu
    8 start with belongs_to is null
    9 connect by prior
    10 menu_id = belongs_to;
    DECODE(LEVEL,1,1,-1) LEVEL DESCRIPTION N MENU_ID
    1 1 Retired Profit Sharing System 1
    -1 2 Screens 2
    -1 3 Main 5
    -1 3 Search 6
    -1 2 Processing 3
    -1 3 Apply Interest 7
    -1 3 Calculate Quarterly Payments 8
    -1 3 Six Month Projections 9
    -1 2 Reports 4
    -1 3 Summary Report 10
    -1 3 Monthly Payments 11
    DECODE(LEVEL,1,1,-1) LEVEL DESCRIPTION N MENU_ID
    -1 3 Participant Listing 12
    -1 3 Participant Quarterly Report 13
    -1 3 Six Month Projection 14
    14 rows selected

    I tried this select on the SCOTT schema:
    select decode(level,1,1,-1),level,ename,null,empno from emp connect by prior empno=mgr start with mgr is null
    In a pre-form in Oracle9i Forms and it works for me.
    Check this select in your case.
    Make sure that you don't have any extra characters in the select (";")

  • Query for hierarchical tree

    I am trying to build a hierarchical tree and tried various option but is unable to show the tree. I have tried using record group and also query text. When I used
    Ftree.Set_Tree_Property(htree, Ftree.query_text, 'SELECT 1, hierarchy_level, hierarchy_code, '', hierarchy_desc FROM oms_cust_hierarcy_tree_vw
    connect by prior hierarchy_code = hierarchy_parent
    start with hierarchy_parent is null');
    I got following error:
    "FRM-47313: invalid query for hierarchical tree".
    I am stuck now. Any help will be appreciated.
    Thanks
    Brinder

    dear member try this query
    SQL>
    1 SELECT level, LPAD(' ',2*level-2)||emp.ename ename, emp.empno, emp.mgr, emp.deptno
    2 FROM Emp
    3 CONNECT BY PRIOR emp.empno = emp.mgr
    4* START WITH emp.empno = 7839
    SQL> /
    LEVEL ENAME EMPNO MGR DEPTNO
    1 KING 7839 10
    2 BLAKE 7698 7839 10
    3 MARTIN 7654 7698 10
    3 ALLEN 7499 7698 10
    3 TURNER 7844 7698 10
    3 JAMES 7900 7698 10
    3 WARD 7521 7698 10
    2 CLARK 7782 7839 10
    3 MILLER 7934 7782 10
    2 JONES 7566 7839 10
    3 FORD 7902 7566 10
    4 SMITH 7369 7902 10
    5 Ken 999 7369 10
    3 SCOTT 7788 7566 10
    4 ADAMS 7876 7788 10
    M Rizwan

  • Getting error message FRM-40700:No such trigger: SPECIAL20

    Hi,
    We have designed a custom report (Quote) and would like to use Special Menu's(Reports Menu) to open this custom Report. When I try to open this Report using
    REPORTS->Quote, The Report is opening seccuessfully but i am getting following error message at the bottom of screen bar.How can I clear this message ?
    FRM-40700:No such trigger: SPECIAL20
    The code which I wrote in the custom.pll is
    IF (form_name = 'OEXOEORD') THEN
    -- Enable View Order Report -- V1.4 --
    if (event_name = 'WHEN-NEW-FORM-INSTANCE') then
    app_special.instantiate('SPECIAL20', 'View Order Report');
    app_special.enable('SPECIAL20',PROPERTY_OFF);
    else
    if (event_name='WHEN-NEW-BLOCK-INSTANCE') THEN
    if block_name='ORDER' then
    app_special.enable('SPECIAL20',PROPERTY_ON);
    else
    app_special.enable('SPECIAL20',PROPERTY_OFF);
    end if;
    end if;
    end if;
    if (event_name='SPECIAL20' and block_name='ORDER') then
    param_to_pass1 := name_in('ORDER.HEADER_ID');
    select order_number into param_to_pass2 from oe_order_headers_all where header_id=param_to_pass1;
    editor_pkg.report(BSI_Quote(param_to_pass2), 'Y');
    null;
    end if;
    end if;
    Please give me valuable inputs on this issue.
    Thanks,
    HTH

    Hi,
    your package " app_special" does a call to "execute_trigger('SPECIAL20');" ,
    but there is no trigger with this name in your form. ( perhaps an Menu-item exists with this name.)
    Lock for "execute_trigger" in:
    app_special.instantiate('SPECIAL20', 'View Order Report');

  • FRM-92010 Error while saving a form in HRMS

    Hi,
    I created a new 12.1.1 instance and impletented HRMS as per doc id#145837.1.
    Applied patch 8934107, Ran DataInstall and hrglobal.drv.
    Now while saving the forms we are getting the following error: (in application.log)
    10/05/13 18:12:03.269 formsweb: Forms session <1> aborted: unable to communicate with runtime process.
    10/05/13 18:12:03.270 formsweb: Forms session <1> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    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.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    I have also applied patch 8682249 as per doc 867501.1 (since error was the same) but still no luck.
    Please help.
    Regards,
    Neeraj
    Edited by: user556153 on May 13, 2010 6:19 AM

    Hi;
    Did you checked
    Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1] << seems similar error like yours
    Forms FRM-92050, FRM-92100, FRM-92101, FRM-92102 Reference Guide [ID 444690.1]
    If its not help please enable trace
    How To Perform System Tracing For All Forms Runtime Processes? [ID 400144.1]
    Regard
    Helios

  • FRM-41211 Integration Error SSL - OracleAS 10g

    Hi.
    I have error Frm-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms.
    I have error: FRM-41211 SSL integration error .....
    OracleAS server began on Windoes XP SP2.
    Do you help me ?

    Hi,
    I remember having seen this issue in teh apst. My best recommendation is to work with customer support (metalink.oracle.com)
    Frank

  • FRM-41211 Integration Error SSL - Oracle Forms 10g

    Hi all.
    I have FRM-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms in this code:
    =====================================================
    DECLARE
    BEGIN
    repid := find_report_object('MODULE21');
    v_rep := RUN_REPORT_OBJECT(repid);
    -- jobid := substr(v_rep, length('rep60_WS70004')+2, length(v_rep));
    -- web.show_document('/reports/rwservlet/getjobid'||jobid||'?server=rep3945','_blank');
    END;
    =====================================================
    I have error: FRM-41211 SSL integration error .....
    OracleAS 10g server began on Windows XP SP2.
    Do you help me ?
    Very thanks !!

    Do you help me ?
    Thanks.

  • FRM-92101 error while running report from a button or menu

    Hi All,
    I am getting the error FRM-92101 while running report without parameter from a button or menu. I am using Developer Suit 10g. I get the error as it shows there has some configuration problem in my form. Will you please help me anyone how can i solve the problem. My previous forms running very well both with parameter and without parameter.
    Arif

    Hello Sir,
    Thanks for your cooperation. I have solved my problem by myself. The fact was that, when i tried with the following code which made my report---
    SELECT br.bid, br.bname, br.branchtxnstatus, dif.difference
    FROM branch br,
    (SELECT gladbrid branchid,
    SUM
    (CASE
    WHEN ga.gl_acc_categry IN ('L', 'I')
    THEN gd.gladbalance
    ELSE -1 * gd.gladbalance
    END
    ) AS difference
    FROM glaccount ga, glaccountdetail gd
    WHERE ga.glid = gd.gladglid
    GROUP BY gladbrid) dif
    WHERE dif.branchid = br.bid AND br.branchtxnstatus = :Br_Status
    and dif.difference!=0
    ORDER BY br.bid;
    and the code against the button or menu item is---
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('ASSET');
    v_rep := RUN_REPORT_OBJECT(repid);
    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://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    which has shown the error FRM-92101 and didn't run the report.
    In that case I have changed the query to run the report. first of all i create a view following the query and build the report using a simple select query. that's etc. my report running fine now.
    It is mentioned that there had no error on my codes.
    Arif

  • Can not delete record from the master block ,frm-40202 field must be entere

    hi ,
    i have built a form which contain master and details blocks
    the problem is
    when i try to delete a record from the master block it gives me new serial for the transaction and when i try to save it, it says
    >frm-40202 field must be entered
    where this field is required and i cant save it
    although in another form when i delete from the master it gives me the previous record and it works properly
    if any one has any ideas pls help me
    thank u
    ------- the master block has a trigger when-create-recoder
    Declare>v_dummy number;
    Begin
    Select nvl(max(ERNT_NO),0) + 1 >Into v_dummy
    From LM_RENT_EXPNMST >Where cmp_no = :LM_RENT_EXPNMST.cmp_no
    And brn_no = :LM_RENT_EXPNMST.brn_no>and fiscal_yr = :LM_RENT_EXPNMST.fiscal_yr;
    >:LM_RENT_EXPNMST.ERNT_NO := v_dummy;
    END;
    IF :PARAMETER.RNT_NO IS NOT NULL THEN
         :LM_RENT_EXPNMST.RNT_NO:=:PARAMETER.RNT_NO;
              :LM_RENT_EXPNMST.RNT_YR:=:PARAMETER.RNT_YR;
         :LM_RENT_EXPNMST.CUST_DESC:=:PARAMETER.RNT_ADESC;
    END IF;Edited by: ayadsufyan on May 8, 2013 2:03 PM

    If this is a FORMS question you should mark this one ANSWERED and repost your question in the FORMS forum
    Forms

  • Can not delete the  last record ,  frm-40202 field must be entered

    hi ,
    i have built a form which contain master and details blocks
    the problem is
    when i look for a record by executing query on on transaction serial and try to delete this record from the master block it gives me new serial for the transaction and when i try to save it, it says
    >frm-40202 field must be entered
    where this field is required and i cant save it
    although in another form when i delete from the master it gives me the previous record and it works properly
    the question is :
    why it gives a new serial when i delete the record ??if any one has any ideas pls help me
    thank u
    ------- the master block has a trigger when-create-record
    Declare>v_dummy number;
    Begin
    Select nvl(max(ERNT_NO),0) + 1 >Into v_dummy
    From LM_RENT_EXPNMST >Where cmp_no = :LM_RENT_EXPNMST.cmp_no
    And brn_no = :LM_RENT_EXPNMST.brn_no>and fiscal_yr = :LM_RENT_EXPNMST.fiscal_yr;
    >:LM_RENT_EXPNMST.ERNT_NO := v_dummy;
    END;
    IF :PARAMETER.RNT_NO IS NOT NULL THEN
         :LM_RENT_EXPNMST.RNT_NO:=:PARAMETER.RNT_NO;
              :LM_RENT_EXPNMST.RNT_YR:=:PARAMETER.RNT_YR;
         :LM_RENT_EXPNMST.CUST_DESC:=:PARAMETER.RNT_ADESC;
    END IF;

    Hi ayadsufyan,
    As it looks Andreas assumption of internal status change was correct. So taking into account this fact I would assume you are doing some data manipulation on the row you are unable to delete.
    What I would suggest to do is to put the following code in your KEY-DELREC trigger :
    clear_message;
    message(:system.record_status);pause;Now when you delete the record you should get the INSERT status of the record. If so it definitely means you are doing some manipulation on the record you are trying to delete. From this point on you will have to pinpoint the offending code.
    Best regards.
    Edited by: GregorM on May 11, 2013 10:41 AM

  • Frm-40508

    Oracle Forms6i
    Hai All
    I have an error while iam inserting data into a table through my forms.
    I have two blocks in my form namely Leader, Member
    This is my statement in my save button
    If :Global.Mode = 'QUERY' then
    update hierarchy_tree set unitid = :unit_id,empl_leader= :empl_code,empl_member=:emplcode,
    fromdt=:from_date,todt =:to_Date;
    elsif :Global.Mode = 'ADD' then
         insert into hierarchy_tree (unitid,empl_leader,empl_member,fromdt,todt) values
         (:unit_id,:empl_code,:emplcode,:from_date,:to_date);
    end if;
    commit;
    I have taken data from two blocks.
    When i press the save button
    I have an error
    Frm-40508 oracle err unable to insert record.
    Thanks In Advance
    Srikkanth.M
    Edited by: Srikkanth.M on May 10, 2010 12:37 PM

    Srikkanth,
    Instead of
    insert into H_Table (unitid,empl_leader,empl_member,fromdt,todt) values (:unit_id,:empl_code,:emplcode,:from_date,:to_date);use
    FORMS_DDL('INSERT INTO H_TABLE(UNITID, EMPL_LEADER, EMPL_MEMBER, FROMDT, TODT) VALUES(''' || :UNIT_ID || ''', ''' || :EMPL_CODE || ''', ''' || :EMPLCODE || ''', TO_DATE(''' || TO_CHAR(:FROM_DATE, 'DD-MON-YYYY') || '''), TO_DATE(''' || TO_CHAR(:TO_DATE, 'DD-MON-YYYY') || '''))');So that we can change the insert / update statements as per our need. That means assign the insert statement in to a variable, and then run that insert statement using FORMS_DDL built-in.
    Hope you understand.
    Regards,
    Manu.

  • Getting FRM-40400 but data is not in table

    I have a form with three data blocks. The first one is Database Data Block = no because it is used for query purposes only. The second one is Database Data Block = yes and is the only data block in which data gets entered into a table. The final data block is Database Data Block = no because it is a control block that houses my display items and buttons. Now, I am trying to get the data to save by way of a SAVE button. On the button I have code to GO_BLOCK() to the second database block and then perform a commit; I get a message back FRM-40400 which says Transaction complete: 1 records applied and saved. However when I open up the table in the database, nothing is there.... I imagine that this tells me that the form is not actually committing as it says. So, how do I find out what exactly my form is doing?
    Thanks!

    I've modified my form a bit since I posted this...I created a master-detail relationship between my first data block and the second one. I had a suggestion from someone else on this topic that when I press the save button, I should go_block('detail block') before performing the commit and that should work. Well, that didn't work either. It's still trying to commit the first data block. I used commit and commit_form because I wasn't sure which one was appropriate for my form.

  • FRM 92120  Registry dat is missing

    The error> FRM-92120 <to log into an EBS instance and click on a Form (with all the forms).
    ------- error ------
    FRM-92120 Registry file http://hhh.xxx.com.br:8000/OA_JAVA/oracle/forms/registry/Registry.dat is missing
    Details:
    Java Exception:
    oracle.forms.engine.RunformExeception: FRM-92120:Registry file http://hhh.xxx.com.br:8000/OA_JAVA/oracle/forms/registry/Registry.dat is missing.
    at oracle.forms.engine.Runform.initRegistry(Unknow Source)
    at oracle.forms.engine.Runform.startRunform(Unknow Source)
    at oracle.forms.engine.Main.createRunform(Unknow Source)
    at oracle.forms.engine.Main.start(Unknow Source)
    at sun.plugin2.applet.Plugin2Manager$AppleExecutionRunnable.run(Unknow Source)
    at java.lang.Thread.run(Unkwon Source)
    I have done the following steps
    ----------------------------------------------------- >>>> http://finance-kc.gsa.gov/webbill/faq.shtml#l10
    Step 1: Verify that SSL v2.0 and v3.0 options are checked in Java Control Panel.
    a. Click 'Start' menu on Windows taskbar and select 'Control Panel'. If you do not find 'Control Panel' directly under 'Start' menu, then you should find it under 'Settings'
    b. Locate an entry named 'Java' on Control Panel window and double click on it
    c. Click 'Advanced' tab on Java Control Panel window
    d. Locate setting named 'Security' and click on the plus sign prefixing it to show options
    e. Verify the option 'Use SSL 2.0' is checked and if not check it
    f. Verify the option 'Use SSL 3.0' is checked and if not check it
    g. Click 'Apply'
    h. Click 'OK'
    Step 2: Close your browser session.
    Step 3: Open a new browser session and try the register or login action again to see if it works okay. If not, proceed to next set of steps.
    Step 4: Re-start your computer.
    Step 5: Open a browser session.
    Step 6: Clear your browser temporary Internet files by taking the steps stated below.
    a. Select 'Tools' from Internet Explorer browser menu
    b. Select 'Internet Options'
    c. On the 'General' tab, under section labeled 'Temporary Internet Files', click 'Delete Files' button
    d. Click 'OK' on Delete Files confirmation box
    e. Upon completion of delete files, click 'OK' on Internet Options
    Step 7: Close your browser session.
    Step 8: Open a new browser session and try the register or login action again to see if it works okay. If not, proceed to next set of steps.
    Step 9: Clear your Java temporary Internet files by taking the steps stated below.
    a. Click 'Start' menu on Windows taskbar and select 'Control Panel'. If you do not find 'Control Panel' directly under 'Start' menu, then you should find it under 'Settings'
    b. Locate an entry named 'Java' on Control Panel window and double click on it
    c. On the 'General' tab, under section labeled 'Temporary Internet Files', click 'Delete Files' button
    d. Click 'OK' on Delete Files confirmation box
    e. Upon completion of delete files, click 'OK' on Java Control Panel
    Step 10: Close your browser session.
    Step 11: Open a new browser session and try the register or login action again to see if it works okay. If not, provide the following to the help desk: the browser name and version used, Java plug-in version used, sequence of events leading up to the issue or problem being reported and any message displayed in a screenshot or text format and/or describe browser behavior that will help us with troubleshooting.
    ====================================================================================================
    And also did not resolve the error then appealed to the Deployment Guide in página157 --http://otndnld.oracle.co.jp/products/forms/htdocs/install/Materials/doc/EN/B14032_02.pdf
    A.2.3.6 FRM-92120
    Cause:
    This is a server configuration error, which occurs when the client is unable to find the
    file Registry.dat on the middle tier.
    Solution:
    When this error occurs, check if the file Registry.dat is present on the middle tier in the
    directory ORACLE_HOME/forms/java/oracle/forms/registry. If it is not
    present, then it needs to be placed.
    In a running Forms application, if you suddenly come across this error, there is a
    possibility that the HTTP server has gone down. You may verify this by typing the
    Diagnosing Server Crashes with Stack Traces
    A-8 Deployment Guide
    URL http://myserver.com:NNNN in your browser. Here you need to replace
    myserver.com with your host name and NNNN with your HTTP server’s port
    number. If your browser says that it could not connect to the server, then your HTTP
    server is down and you need to contact your system administrator to bring it up.
    When the HTTP server is up and running, on giving the URL
    http://myserver.com:NNNN your browser will show the “OracleAS welcome”.
    =============================================================================================
    also had no positive effect.
    I test in different browsers, different machines, the Jinitiator removed and installed again.
    The versions I'm using are
    EBS - R12.0.4
    Java 1.6.0_15
    Browsers - IE 8 e Mozzila Firefox 3.0
    Can someone suggest something else.
    Extremely grateful for any suggestion.

    Hi,
    What changes have been done recently?
    Did AutoConfig complete successfully on all tiers?
    If SSL has been enabled recently, please run SSL diagnostics tests and make sure all runs successfully -- Search "My Oracle Support" for "SSL Diagnostics R12".
    Enable debug and see if you get more details about the error -- See (Note: 422419.1 - R12, 12.1.1 - How To Enable and Collect Debug for HTTP, OC4J and OPMN) and (Note: 438652.1 - R12: Forms Runtime Diagnostics (FRD), Tracing And Logging For Forms In Oracle Applications).
    Regards,
    Hussein

  • 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

Maybe you are looking for

  • Firefox 19.0 pdf viewer ignores pdf encryption - how do I get it to honor the encryption?

    I encrypted a pdf with Adobe Acrobat so that the document's text couldn't be copied. However with the new Firefox pdf reader, the reader completely ignores this encryption so that the document's text can be copied.

  • Ipod video is corrupt?

    I have the ipos video and when it connects to itunes it says that it is corrupt and I need to restore the programs. At first it wouldnt even allow me to restore the program. Now I have reinstalled itunes 7.1 and it allows me to resore the ipod settin

  • Can i use adobe form to produce a report with grouping and subtotal?

    Hi, i need to produce a report that allows me to group against a field and do a subtotal for the group, then finally a total for the whole report. i m using web dynpro java, i can do grouping in the table component, but i have no idea how to do subto

  • Headphone Jack Problem in OSX!

    2 different headphones 2 different mac laptops, both had a louder right speaker and a very quiet left, Anyone else notice this with Mav?

  • Military billing problems help?

    I need to find out where and how to complain about the online website billing treatment of military APO/FPO addresses. I understand apple not wanted to ship to overseas addresses but, the website will not ever except my billing address if I want to s