Error oracle FRM-40505 unable to execute the query

Hi gurus,

When query the values in host order of Super order management user

The following error is displayed:

FRM-40505: ORACLE error: cannot perform the query

What is the solution for this error?

Concerning

SBJ *.

Take a look at Metalink Note: "Troubleshooting FRM-40505 [ID 1004134.6].

Khan

Tags: Oracle Applications

Similar Questions

  • Error message: FRM-1808: unable to load the following items

    Hi gurus

    I copied the forms of my server on my local machine and got the following message when I try to open this form:

    Message

    FRM-1808: unable to load the following items.

    Source Module: test_property_class.fmb
    Source object: J_OBJ_GRP

    After that, I see another message to fix some PL/SQL libraries, now I have a plan to fix the missing library, but I don't know how to get rid of the message above...

    Appreciate your help. Thanks in advance.

    Concerning

    Muzz

    Forms is unable to find your form tamplate and your PLL.

    Check FORMS_PATH (in the registry) and add the appropriate paths where to find them.

  • FRM-30312: unable to compile the library in R12

    Hi all

    I want to compile a library of custom in R12. After that I have compiled, a strange error has occurred... Some packages are not available. So I decided to compile a standard library (JE.pll) and the error occurred again. If I wrote $FORMS60_PATH echo nothing appeared. I have to add the path that contains the libraries?

    This is the command I executed
    ---------------------------------------------------

    frmcmp_batch ${1} .pll userid = module_type output_file=/u01/oracle/DESA/apps/apps_st/appl/xbol/12.0.0/resource/${1}.plx APPS/APPS = LIBRARY

    This is the error:
    -----------------------

    10.1 forms (form of the compiler) Version 10.1.2.3.0 (Production)

    10.1 forms (form compiler): Release-Production

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With partitioning, OLAP, Data Mining and Real Application Testing options
    PL/SQL Version 10.1.0.5.0 (Production)
    Oracle V10.1.2.3.0 - Production procedure generator
    Oracle 10.1.2.0.0 graphic virtual system Version (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle tools integration Version 10.1.2.0.2 (Production)
    Common tools Oracle area Version 10.1.2.0.2
    Oracle CORE Production 10.1.0.5.0
    Compile the library I...
    Compile the package Spec JEZZ_GL...
    Compile the package Spec JEZZ_AR...
    Compile the package Spec JEZZ_AP...
    Compile the package Spec JEZZ...
    Compile the package Spec JESK_AP...
    Compile the package Spec JERU_SH...
    Compile the package Spec JERU_GL...
    Compile the package Spec JERU_CE...
    Compile the package Spec JERU_AR...
    Compile the package Spec JERU_AP...
    Compile the package Spec JEPT_AR...
    Compile the package Spec JEPL_AR...
    Compile the package Spec JEIT_AP...
    Compile the package Spec JEHU_AP...
    Compile the package Spec JEES_AR...
    Compile the package Spec JEES_AP...
    Compile the package Spec JECZ_AP...
    Compile the package Spec I...
    Compilation of the Package JEZZ_GL body...
    Compilation of the Package JEZZ_AR body...
    Compilation of the Package JEZZ_AP body...
    The body of Package JEZZ compiling...
    Compilation of the Package JESK_AP body...
    Compilation of the Package JERU_SH body...
    Compilation of the Package JERU_GL body...
    Compilation of the Package JERU_CE body...
    Compilation of the Package JERU_AR body...
    Compilation of the Package JERU_AP body...
    Compilation of the Package JEPT_AR body...
    Compilation of the Package JEPL_AR body...
    Compilation of the Package JEIT_AP body...
    Compilation of the Package JEHU_AP body...
    Compilation of the Package JEES_AR body...
    Compilation of the Package JEES_AP body...
    Compilation of the Package JECZ_AP body...
    Compilation of the body of Package I...
    FRM-30312: unable to compile the library.

    Thanks Mariano. -.

    Hello

    What do you mean ¨instead¨? That it is not necessary to set the FORMS60_PATH?.

    If you're on 11i, you must check the value of FORMS60_PATH

    If you're on R12, you must check the value of FORMS_PATH

    In addition, I sent an email to DBA in order to know if we have invalid objects, but I need to insist that the library is standard (JE.pll).

    Just make sure you can get this error FRM if you have invalid objects that may apply.

    Thank you
    Hussein

  • FRm-40741: unable to locate the plug on block 11

    Hi all

    I use this custom property defined when press the button Search "FRm-40741: unable to locate the plug on block 11" error getting.

    If: XXEAM_SHUTDOWN_DETAILS. WF_STATUS = "Not sent yet!" then
    Set_Custom_Property('XXEAM_SHUTDOWN_DETAILS.) WORK_ORDER_NO',: SYSTEM. TRIGGER_RECORD, "ENABLED", TRUE);
    Set_Custom_Property('XXEAM_SHUTDOWN_DETAILS.) ESTIMATED_START_DATE',: SYSTEM. TRIGGER_RECORD, "ENABLED", TRUE);
    end if;


    Please give me any other property for record wise work instead of Set_Custom_Property.

    Kind regards
    Maha

    Finally, I had a few minutes to play with my sample form and found out that Andreas is correct when he said:

    SET_CUSTOM_PROPERTY does not have the number of the logical record as a parameter, but 'the physical line number' in the layout.

    In my example of form, as I scrolled items folders "Enabled" has not changed with the records.

    *@Maha,* my apologies. In order to apply the desired effect, you will have to imitate the enabled property for each record by using a combination of the Set_Item_Instance_Property() WATERWAY integrated, INSERT_ALLOWED, UPDATE_ALLOWED and VISUAL_ATTRIBUTE (optional) properties. Because you change many properties, I so wrap it in a procedure called ENABLE_ITEM and past the point, the file number and activate settings. For example:

    /* This procedure assumes you have a VISUAL_ATTRIBUTE                 */
    /* created called 'ENABLED' and 'DISABLED'.  In my example,           */
    /* I created the DISABLED visual attribute with following properties: */
    /*  Foreground Color = DarkGray                                       */
    /*  Background Color = gray12                                         */
    /* The ENABLED visual attribute does not specify any properties so it */
    /* sets the above properties back to                     */
    PROCEDURE enable_item (inItem VARCHAR2, inRecord NUMBER, inEnabled BOOLEAN )IS
         paramCount     NUMBER := 0;
    BEGIN
         IF ( inEnabled ) THEN
              Set_Item_Instance_Property(inItem, inRecord, INSERT_ALLOWED, PROPERTY_TRUE);
              Set_Item_Instance_Property(inItem, inRecord, UPDATE_ALLOWED, PROPERTY_TRUE);
              Set_Item_Instance_Property(inItem, inRecord, NAVIGABLE, PROPERTY_TRUE);
              Set_Item_Instance_Property(inItem, inRecord, VISUAL_ATTRIBUTE, 'ENABLED');
         ELSE
               Set_Item_Instance_Property(inItem, inRecord, INSERT_ALLOWED, PROPERTY_FALSE);
              Set_Item_Instance_Property(inItem, inRecord, UPDATE_ALLOWED, PROPERTY_FALSE);
              Set_Item_Instance_Property(inItem, inRecord, NAVIGABLE, PROPERTY_FALSE);
              Set_Item_Instance_Property(inItem, inRecord, VISUAL_ATTRIBUTE, 'DISABLED');
      END IF;
    END enable_item;
    

    You then call the ENABLE_ITEM procedure in your code, passing the name, registration number and activate (true or false) disable your element. For example:

    If :XXEAM_SHUTDOWN_DETAILS.WF_STATUS = 'Not Submited Yet!' then
       enable_item('XXEAM_SHUTDOWN_DETAILS.WORK_ORDER_NO', :SYSTEM.TRIGGER_RECORD, TRUE);
       enable_item('XXEAM_SHUTDOWN_DETAILS.ESTIMATED_START_DATE',:SYSTEM.TRIGGER_RECORD, TRUE);
    end if;
    

    Options François and Steve mentioned are also good ways to do this as well.

    Sorry if I confused the issue earlier.

    For those who suggested to use SET_ITEM_PROPERTY('BLOCK_NAME.) Nom_element', ACTIVE, PROPERTY_FALSE), do not forget the cascade effect of assigning false to the ENABLED property of an element. When you ACTIVATE your story later, you must also set the properties MODIFIABLES NAVIGABLE, UPDATE_NULL, true.

    Craig...

    Published by: Silvere on 16 January 2013 14:15

  • How to implement enter and execute the query in the ADF

    I'm new to ADF and I'm trying to create a simple data entry in ADF 11 g based on a database table. I'm looking to implement the equivalent of the request function enter and execute the query in Oracle Forms. I tried the default operations that are available with the data controls. But they don't seem to have this feature. Can someone help / tell me how this can be implemented.

    Thank you
    Srini.

    How to add a query Panel? Who has the most benefits that the use of Find.

    More info on af:query

    http://docs.Oracle.com/CD/E28389_01/apirefs.1111/e12419/tagdoc/af_query.html

    Arun-

  • 0 x 81000203 error code... unable to do the system restore. No previous restore points created...

    Now you have another problem with Windows 7 Home Premium. I am not able to do the system restore.  It gives error 0 x 81000203 when I press the system protection option in the properties of my computer window. Any body solve this problem. I checked the services like cliché, CPP are working properly. Because of this error, I am unable to anytime upgrade to Ultimate edition. Help, please!

    Here's the Instant link that displays the error.

    [IMG] http://i43.tinypic.com/zioqdg.png [line]

    Hard

    Check your hard drive for errors:
    Click Start
    Type: CMD, according to the results, right-click CMD
    Click on "Run as Administrator"
    At the command prompt, type: chkdsk /f /r
    When you restart your system, your computer will be scanned for errors and will try to correct them. Andre Da Costa http://adacosta.spaces.live.com http://www.activewin.com

  • Unable to load the query in Crystal Designer: error "Could not load the Query builder compenent."

    Hi all
    I am using Crystal report 10 which was an upgrade of crystal 7 and 8.5
    I can open the crystal report and can do everything but I could not display the SQL query option
    It gives me an error message
    "Failed to load the Query builder compenent."
    I also reinstalled the application twice as a sysadmin even then I get this message
    Please, can someone suggest me what should I do?

    Contact technical support for Crystal Reports or watch in their forums. This is not a product of MS and is not related to the installation, upgrade and activation of Windows XP.

  • How to execute the query automatically when a query is added, Panel

    Hello

    Jdev: 12.1.3

    I added a queryPanel (af:query) on my Page. Everything works fine when I do a search.

    I wish I had the original Version to run the query that is executed automatically when loading the page. How can this be achieved?

    What I have to do this explicitly, or is it a property that I can use?

    See you soon

    AJ

    You can generate the default display criteria again, setting the mode to automatic query.

    You generate default criteria by adding each attribute to a criterion without specifying and literal bind variable.

    Timo

  • Unable to produce the query results

    Hi all

    Hello. I'm aunable write a query that can produce reuls froe below question. An account can have several part relationship.

    Here is the data for the x table

    PartyID - AcctNo - indicator - RoleCode

    1111      -----     123   ------     Y         -------  110

    1112    -------     123   ------    N        --------- 120

    1113     ------     123   ------   N          --------   130

    1114     -------   124     -----   N        --------    100

    1115    --------   124    ------- N         ---------   110

    1116   ---------   124      ----   N       ---------    100

    1115      --------  125             Y       -------        100

    1116      -------    125             N      ------         110

    1117      -------   126            Y         -----        100

    Query should return these AcctNo is not any indicator = 'Y' and RoleCode did not have 100. In this case the results should be

    AcctNo

    123

    124

    Thanks in advance

    Don

    Hello

    885137 wrote:

    Hi, Frank, here is creation and insertion of table scripts. ...

    Thank you.

    So what's the problem with the query I posted in response #1?  (You must use the correct name of the table, of course).  Specify where he makes incorrect results and explain why these results are false.

  • Unable to solve the query

    Hello

    I have the following table.

    Complex No.Amount complexThe child BillAmount of the invoiceDate of invoice
    12390002452000October 1, 13
    1234563000November 1, 13
    123567400031 October 13

    My requirement is to generate the next report

    Complex No.Amount complexUntil the DateLater date
    123900060003000

    Where Till Date is the sum of the amount of the invoice dated of the < = 31 October 13 and dated in the future is the sum of the amount of the invoice dated dated > 31 - OCT-13.

    Can someone help me with the query?

    with t as)

    Select 123 complex_no 9000 complex_amount, child 245, invoice_amount 2000, date ' 2013-10-01' invoice_date of all the double union

    Choose 123, null, 456, 3000, date '' 2013-11-01 all the double union

    Choose 123, null, 567, 4000, date '' 2013-10-31 of the double

    )

    Select complex_no,

    Sum (complex_amount) complex_amount,

    Sum (case when invoice_date<= last_day(sysdate)="" then="" invoice_amount="" end)="">

    sum (case when invoice_date > last_day (sysdate) then invoice_amount end) future_date

    t

    Complex_no group

    /

    COMPLEX_NO COMPLEX_AMOUNT TILL_DATE FUTURE_DATE
    ---------- -------------- ---------- -----------
    123 9000 6000 3000

    Scott@ORCL >

    SY.

  • Fill a text element to EXECUTE the QUERY

    Fill a text element when a list item is changed by using the following code in a trigger WHEN-LIST-CHANGED:

    SELECT ROOM_DESC IN: SESSIONS. ROOM_DESC OF ROOMS WHERE ROOM_REF =: SESSIONS. ROOM_REF;

    It works fine but when I start a new form and click on run query that do not appear in the text element data.

    What type of trigger can I use these data through when I press to run the query and if I can use the same code?

    Bravo guys

    Hello

    This because when you pull, the trigger WHEN LIST-CHANGED does not occur. So, write the same line in the trigger after REQUEST of the block.

    Kind regards

    Manu.

    If my answer or the answer to another person has been useful or appropriate, please mark accordingly

  • the system passed variable is unable to execute the nested query

    {color: #0000ff} list = text_table.txt



    Cat $liste | all read LINE {color}



    do



    sqlplus-silent szubair/ssz12345 & lt; & lt; EOF & gt; / dev/null 2 & gt; & 1



    set LINE = $LINE



    set pagesize 0 feedback off check out of position off echo off;



    Set serveroutput size 2000;



    ARRAYSIZE Set 3;



    fixed lines 2000;



    Set colsep @ | @ ;



    game of garnish trims



    coil /tmp/SQL.txt;



    Select 'trim('|| column_name ||'),' all_tab_columns where table_name = '& LINE ";



    spool off;



    coil $LINE;



    {color:#ff0000}@sql1.sql & lt;-this request does not accept the $LINE..} Please see in the blue text)



    spool {color}



    output



    EXPRESSIONS OF FOLKLORE



    fact











    ========= SQL1.sql --------------------------------------------------



    Select / * + parallel ALL_ROWS (16) * / trim (IHOSRSUC), trim (PMM_DATETIME), trim (SWITCH_NAME), trim (BSC).



    Trim (indicated), Trim (Sector), Trim (IHO2GATT), Trim (IHO2GSUC), Trim (IHO2GFAL), Trim (IHO2GBLK), Trim (IHO2GREL),



    Trim (IHO2GINT), Trim (IHO3VATT), Trim (IHO3VSUC), Trim (IHO3VFAL), Trim (IHO3VBLK), Trim (IHO3VREL), Trim (IHO3VINT),



    Trim (IHO3DATT), Trim (IHO3DSUC), Trim (IHO3DFAL), Trim (IHO3DBLK), Trim (IHO3DREL), Trim (IHO3DINT), Trim (IHOSPR02),



    Trim (IHOSPR01), Trim (HDROP_INTERC_2V), Trim (HDROP_INTERC_3V), Trim (REC_RELIABILITY_IND), Trim (PART_MAP),



    Trim (PMM_DATESTAMP), Trim (IHOSOCHG)



    a {color: #ff0000} $LINE {color}



    where to_char(PMM_DATESTAMP,'YYYY-MM-DD')=to_char(sysdate-1,'YYYY-MM-DD') and rec_reliability_ind = 1;







    {color: #ff0000} ERROR MESSAGE







    of pmmcounter_db. $LINE



    *



    ERROR on line 7:



    ORA-00911: invalid character



    {color}







    any thoughts?



    {color}

    Published by: shakil_zubair on October 28, 2008 12:38 AM

    >

    I guess that SQL * more is Inline script after the shell has replaced all occurrences of variables, therefore, you might want to try an (untested) approach like this:

    list=text_table.txt
    cat $list | while read LINE
    do
    sqlplus -silent szubair/ssz12345 < /dev/null 2>&1
    define LINE=$LINE
    set pagesize 0 feedback off verify off heading off echo off
    set serveroutput on size 2000
    set arraysize 3
    set lines 2000
    set colsep @|@
    set trim on trims on
    spool sql.txt
    
    select 'trim('||column_name||'),' from all_tab_columns where table_name='&LINE';
    
    spool off
    
    spool temp.txt
    select '$LINE' from dual;
    # if you need to have the object name qualified you need to add it like that
    # select 'owner.$LINE' from dual;
    spool off
    
    spool $LINE
    
    @sql1.sql
    
    spool off
    exit
    EOF
    done
    
    -- SQL1.SQL:
    
    select /*+ ALL_ROWS parallel(16)*/
    @@sql.txt
    from
    @@temp.txt
    where to_char(PMM_DATESTAMP,'YYYY-MM-DD')=to_char(sysdate-1,'YYYY-MM-DD')
    and rec_reliability_ind=1;
    

    Moreover, it is a good idea to post your password here in the forum.

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

    Published by: Randolf Geist on October 28, 2008 14:10

    security warning

  • How to solve the error windows 8007641? Unable to install the update or access iTunes store.

    I keep trying to install the latest windows update and there no 2 x, so I hit the system restore to a point earlier, now it failed for the 3rd time and I get the error code 8007641. can you help me solve this problem? It all started when I couldn't access the iTunes store. Thank you

    Hello

    Update can't install?

    Method 1:

    Problems with installing updates

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-installing-updates

    Method 2:

    I suggest to perform the clean boot and try to install the update manually and check.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    Note: After a repair, be sure to set the computer to start as usual as mentioned in step 7 in the above article.

    http://www.Microsoft.com/download/en/default.aspx

    Method 3:

    I also suggest you to follow the links and contact support apple technique.

    http://support.Apple.com/kb/ts3297

    http://support.Apple.com/kb/ts1368

    http://www.Apple.com/support/

  • I get error messages ie3sh.exe - Unable to locate the BHO component. DLL not found message when I start my computer. I do not have the reinstall disk that I need to do.

    I also 80070490 error codes and C355. I used CCcleaner to clean my registrys and used the system preparation tool. I regularly use spybot search and destroy for malware protection and search for viruses with my anti-virus program. What should I do? Thank you.

    BHO. DLL & IE3SH problems on my computer starts?
    http://answers.Microsoft.com/thread/ffbe5016-84d9-47E0-8303-43419c1abba5

  • InDesign CC | Error with file indd - "unable to open the file...". Adobe InDesign does not support the file format.

    I encountered a very strange error with InDesign CC after you save a file created in CS4. I would like to attach the file but I don't know how to do this, if I can. The file is 44 KB and doesn't seem like it should be (file I saved was a great book cover). Now, as the original CS4 file has been replaced using InDesign CC, the file is corrupted and I get the error message shown below. The file is not open in another application. If somebody has got this before?

    11-5-2014 2-13-14 PM.jpg

    Replace the .idml extension and see if it opens...

Maybe you are looking for