FRM-47023 No Such parameter named G_QUERY_FIND exists in form APXINWKB

Hi,
I am getting this error "FRM-47023 No Such parameter named G_QUERY_FIND exists in form APXINWKB" when I am opening Invoice Form.
I tried a fix from Doc # 159023.1 but it didn't worked.
Any suggestions?
Regards,
Neeraj.

Hi,
Have you applied any Payables patch recently that delivers a new version of the Invoice Workbench (APINWKB) form ? If yes, please check that you've applied all the post-reqs correctly. The problem you're hitting is most likely a faulty form delivered by some patch - which could potentially require yet another patch to fix the bug.
Rgds,
Rakesh

Similar Messages

  • How to solve FRM-47023 No Such parameter named P_NAME exists in form

    Hello all,
    When i passing parameters from xxxx to yyyy i got the error message "FRM-47023 No Such parameter named P_NAME exists in form yyyy "..How can i solve this..
    In form xxxx I have one button named "view"..I write the following code in "when-button-pressed trigger" of view button..
    <code>
    DECLARE
    name varchar2(30);
    pl PARAMLIST:=GET_PARAMETER_LIST('PARAM');
    BEGIN
         select employee_first_name into name from employee where employee_id=2010101;
    -- Delete list if existing
    IF NOT ID_NULL(pl) THEN
    DESTROY_PARAMETER_LIST(pl);
    END IF;
    -- Create new
    pl:=CREATE_PARAMETER_LIST('PARAM');
    -- Add parameter for Mode
    ADD_PARAMETER(pl, 'P_name', TEXT_PARAMETER, name);
    -- Now call the second form, giving the parameter-list
    CALL_FORM('PARAM2',NO_HIDE,DO_REPLACE,NO_QUERY_ONLY,pl);
    END;
    <\CODE>
    In form yyyy i do the follwing..
    Add parameter named p_name..
    And in form yyyy I write following code in " New form instance trigger"..
    :block3.name:= :parameter.P_name;
    I run the xxxx form and click the View button shows the above error..
    Plese help me
    Edited by: Balraj on Feb 9, 2011 10:37 PM
    Edited by: Balraj on Feb 9, 2011 10:39 PM

    Hi;
    What is your EBS version?
    Similar error solved by note FRM-47023: No such parameter named G_QUERY_FIND exists in form FNDSCSGN [ID 106963.1]
    Please check note which could helps you
    Regard
    Helios

  • FRM-47023: No such parameter named G_QUERY_FIND Exists and frm-40105 error

    I have a problem in forms FRM-47023: No such parameter named G_QUERY_FIND Exists and frm-40105 error please can any one tel me the reason for this ....G_QUERY_FIND parameter is present in my form.fmb
    it is very urgent

    I have to call the page
    fnd_message.set_string('SRNO'||:xxecms_Related_Objects.SR_NUMBER);
                             fnd_message.show;
                   --          IF m is NULL THEN
         fnd_function.execute(FUNCTION_NAME=>'CSXSRISV',
    OPEN_FLAG=>'Y',
    SESSION_FLAG=>'Y',
    OTHER_PARAMS=>'SR_NO="'||:xxecms_Related_Objects.SR_NUMBER||'"');
    I have to go to the page to view where this sr is created.

  • FRM-47023: No such parameter named REPORTSSERVER exists in form MY_FORM.

    Hi,
    After upgrade form to Forms [32 Bit] Version 10.1.2.0.2 (Production), I have come cross this following error when I try to run the from my form from developer in Windows through OC4J:
    "FRM-47023: No such parameter named REPORTSSERVER exists in form MY_FORM"
    The form works fine before upgrade. I did Google the message but I have not been able to find the solution for this problem. Some of my application forms work fine but many of the forms have the above error message when I started to run then from form builder.
    Could you help me to resolve this problem? Your help is very much appreciated!
    Michael

    Hi,
    What is the URL you are using for running the form? Check if it contains a parameter REPORTSSERVER (i.e if the url contains something like http://.....?otherparams=REPORTSSERVER=..).
    Or, if you are getting this error while doing a call/open/new_form, then check if the MY_FORM contains the parameter named REPORTSSERVER (by opening it in the forms builder, check the Parameters node). If it does not contain, create a parameter with the name REPORTSSERVER, compile the form and run it.
    -Arun

  • FRM-47023: No such parameter named PAR1 exists in form

    I have a form PARAMETER_PASSING with a command button
    On the button pressed trigger i have the following code
    DECLARE
         parList ParamList;
         parListName VARCHAR2(30):='tempParameterList';
    BEGIN
         parList:=Create_Parameter_List(parListName);
         IF NOT Id_Null(parList) THEN
              Add_Parameter(parList,'par1',TEXT_PARAMETER,'hi');
              --Add_Parameter(parList, 'par2', TEXT_PARAMETER, '20');
         END IF;
         Open_Form('X:\dbforms\PARAMETER_RECEIVING',ACTIVATE,NO_SESSION,parList);
    END;
    Now I have another form PARAMETER_RECEIVING on which WHEN-NEW-FORM-INSTANCE
    i have written the following code
    DECLARE
         parList ParamList:= Get_Parameter_List('parList');
         retValue VARCHAR2(15);
         parameterType NUMBER;
    BEGIN
         parameterType:=TEXT_PARAMETER;
         GET_PARAMETER_ATTR(parList, 'par1',parameterType,retValue);
         :block4.text_item5:=retValue;
         message(retValue);
    END;
    Now when I am running PARAMETER_PASSING form I encounter the following message
    FRM-47023: No such parameter named PAR1 exists in form PARAMETER_RECEIVING.
    I will appreciate any assistance in this regard
    cheers
    Dalbir

    In the form PARAMETER_RECEIVING you must create a parameter "par1" at design time.
    I hope this will help you.

  • FRM-47023: No such parameter named G_QUERY_FIND

    Hi All:
    I am getting following Error when i am opening my form from apps(11.5.10.2)
    FRM-47023: No such parameter named G_QUERY_FIND exists in form XXEMP
    FRM-40105 : Unable to resolve reference to item PARAMETER.G_QUERY_FIND
    i am using apps11.5.10.2 (linuxOS) and forms 6i
    So any one can help to resolve this issue

    Try asking your question in the Apps forum. This forum is for Forms.

  • Frm-47023 no such parameter named query_only exist

    Hi Everyone,
    I am creating a simple form, I just put a textbox on the canvas throug layout editor.
    and run the form,it gives the error frm-47023:no such parameter QUERY_ONLY exists in form moudle1.
    I click the ok button of alert box , it gives - frm-47023: no such parameter named QUIET exists in form module1.
    I am facing this type of error recently, it was working very well earlier. I am not creating any parameter in this form.
    Yes if I create a dummy parameter namely query_only, quiet, it works fine.
    Initially I thought there may be virus issue, but I formatted my machine. I still get the same error.
    your help urgently requird.
    thanks in advance.
    thanks/regards
    jitendra
    Message was edited by:
    user510185

    Thanks a lot Herbert for your prompt reply. I am using oracle forms 6i (6.0.8.8.0 Production).In preference - runtime, quiet mode and query only mode is not checked.
    array processing,optimize sql processing,optimize transaction mode processing is checked, other options are unchecked.
    Still I could not figure out what the problem is .
    thanks/rgds
    jitendra

  • FRM-47023: NO SUCH PARAMETER NAMED SESSIONID EXISTS

    Hi all,
    I'm getting FRM-47023: NO SUCH PARAMETER NAMED SESSIONID EXISTS while doing OM Superuser > Enter Orders. This issue is specific when we login to EBS in Dutch and does not appear in English! Language specifi error - FRM-47023: parameter met de naam SESSIONID bestaat niet in formulier OEXOEORD
    I've gone through the below notes and applied the Patch 8937577 as per the note *9355687*: SALES ORDER FORM CREATES FRM-47023 ERROR [ID 1062982.1]. But, that did not resolve the issue.
    I've found another note: Enter Oders-OEXOEORD-FRM-47023: NO SUCH PARAMETER NAMED SESSIONID EXISTS [ID *1078022.1*], which insists on applying AR translation of <<*8310984:R12.ONT.A*>> to sync the form version.
    But, I could not apply this patch(8310984:R12.ONT.A) as my code level is at R12.B. and for that I applied Patch *9544144_R12.ONT.B*. But the issue is not resolved.
    Can someone let me know,
    1. Is this issue specific to any missing configuration setup(Functional)?
    2. Needs additional/alternate Patch?
    3. Is it NLS specific? Do I need to apply any NLS Patch?
    Regards,
    Mahesh

    Hi,
    1. Is this issue specific to any missing configuration setup(Functional)?If the issue with NLS languages only then most probably it is not a setup issue.
    2. Needs additional/alternate Patch?Cannot tell until you go through the doc referenced below -- Have you applied all NLS patches mentioned in your post in addition to the English ones?
    3. Is it NLS specific? Do I need to apply any NLS Patch?Please see (Requesting Translation Synchronization Patches [ID 252422.1]) to find out if you have any missing NLS patches that need to be applied.
    Thanks,
    Hussein

  • Frm-47023 no such parameter named cg$startup_mode exists in form.

    This messages occurs when the form is run.
    We've renamed our OFG library's to lowercase, for UNIX.
    Then this message occured when generating a new form.
    SO we copied the uppercase OFG libaries backin. Compiled then all and also the app65.pll, the qmsevh65.pll and the qmslib65.pll. The error will not disappear for new forms.
    If we regenerate an existing form this message does not show.
    Can anybody help us with this?

    I got this error once when I generated a ReadOnly form. This was a result of the fact that the CG$STARTUP_MODE parameter is not generated: this is a Designer bug.
    A workaround for this bug is supressing the 47023 error message with qms$forms_errors.add_suppress_message.
    regards,
    Harm van Zoest

  • Frm-47023 no such paramer named g_guery_find

    Hello Guys
    EBS 12.1.3, server Enterprize Linux ,I have one custom form which is working fine, this custom form is calling another custom form with parameters, when I call the other form the frm-47023 error is displayed, in the compilation of both the forms there is no error, have registered the child form in Application as well, but could not find the reason of the error,
    Any help will be appreciated.

    Hi,
    In the called form must exists a parameter named g_query_find or remove this paramerter from parameters list when you call your form. Parameter names are not validated during compilation, so you're unable to get any errors at compilation time.
    kikolus

  • Oracle apps upgrade to 11.5.10 produced FRM-47023 error in custom apps

    Hi,
    I didn't know whether to post this in here or in the Applications forum so I posted it in both.
    We're upgrading Oracle Apps from 11.5.5 to 11.5.10. We have a custom application that's registered in Oracle Applications and the modules that I've tried to run so far all produce this error:
    FRM-47023: No such parameter named G_QUERY_FIND exists in form <form_name>.
    When I press OK:
    FRM-40105: Unable to resolve reference to item PARAMETER.G_QUERY_FIND.
    When I press OK:
    FRM-40039: Cannot attach library fis_libs while opening from <form_name>.
    I've recompiled the library and the form but I'm still getting these errors.
    Any help would be appreciated.
    Thanks,
    Lorena

    Hi,
    We were able to resolve this by putting the library in the $AU_TOP/resource directory. It was previously residing in a custom directory.
    Thanks,
    Lorena

  • Unable to open a custom form. FRM-47023 error.

    Hello experts,
    I am currently in a 11i to R12.1.3 upgrade and trying to open a custom form in R12. I compiled the form in forms builder 10.1.2.3.0 and in the db with no errors. When I try to open it in the apps it displays the following error messages:
    1) FRM-47023: No such parameter named G_QUERY_FIND exists in form ....XXX_CUSTOM_FORM.
    2) FRM-40105: Unable to resolve reference to item PARAMTER.G_QUERY_FIND.
    3) FRM 41052: Cannot find Window: Invalid ID.
    4) FRM-40700: No such trigger: menu_to_appcore
    5) FRM-47023: No such paramter named HR_MODE exists in form AMZ_RESPAPPRV.
    6) FRM-40105: Unable to resolve reference to iem PARAMETER.HR_MODE.
    I do have all the pl/sql libraries downloaded. If I didn't then forms builder would complain and not let me compile.
    I am not sure what is causing it. Any ideas what is causing it?
    Any help is much appreciated.
    Thanks

    I am using Windows 7.
    I logged in as applmgr ran the following command:
    frmcmp_batch module=AMZ_RESPAPPRV.fmb userid=apps/xxxmonkey o
    utput_file=AMZ_RESPAPPRV.fmx module_type=form compile_all=yes
    output message:
    Forms 10.1 (Form Compiler) Version 10.1.2.3.0 (Production)
    Forms 10.1 (Form Compiler): Release - Production
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP, Data Mining
    and Real Application Testing options
    PL/SQL Version 10.1.0.5.0 (Production)
    Oracle Procedure Builder V10.1.2.3.0 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.0 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE 10.1.0.5.0 Production
    FRM-18108: Failed to load the following objects.
    Source Module:APPSTAND
    Source Object: STANDARD_PC_AND_VA
    Source Module:APPSTAND
    Source Object: STANDARD_TOOLBAR
    Source Module:APPSTAND
    Source Object: STANDARD_CALENDAR
    Compiling package specification APP_CUSTOM...
    No compilation errors.
    Compiling package specification APPROVER...
    No compilation errors.
    Compiling package specification APP_CUSTOM...
    No compilation errors.
    Compiling package body APP_CUSTOM...
    No compilation errors.
    Compiling package specification APPROVER...
    No compilation errors.
    Compiling package body APPROVER...
    No compilation errors.
    Compiling WHEN-WINDOW-RESIZED trigger on form...
    No compilation errors.
    Compiling FOLDER_ACTION trigger on form...
    No compilation errors.
    Compiling FOLDER_RETURN_ACTION trigger on form...
    No compilation errors.
    Compiling KEY-HELP trigger on form...
    No compilation errors.
    Compiling KEY-DUPREC trigger on form...
    No compilation errors.
    Compiling KEY-EXIT trigger on form...
    No compilation errors.
    Compiling KEY-EDIT trigger on form...
    No compilation errors.
    Compiling KEY-COMMIT trigger on form...
    No compilation errors.
    Compiling KEY-CLRFRM trigger on form...
    No compilation errors.
    Compiling KEY-MENU trigger on form...
    No compilation errors.
    Compiling KEY-LISTVAL trigger on form...
    No compilation errors.
    Compiling WHEN-WINDOW-CLOSED trigger on form...
    No compilation errors.
    Compiling POST-FORM trigger on form...
    No compilation errors.
    Compiling PRE-FORM trigger on form...
    No compilation errors.
    Compiling ON-ERROR trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-FORM-INSTANCE trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-RECORD-INSTANCE trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-ITEM-INSTANCE trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on form...
    No compilation errors.
    Compiling QUERY_FIND trigger on form...
    No compilation errors.
    Compiling CLOSE_WINDOW trigger on form...
    No compilation errors.
    Compiling ACCEPT trigger on form...
    No compilation errors.
    Compiling PRE-INSERT trigger on APPROVER data block...
    No compilation errors.
    Compiling PRE-UPDATE trigger on APPROVER data block...
    No compilation errors.
    Compiling ON-INSERT trigger on APPROVER data block...
    No compilation errors.
    Compiling ON-LOCK trigger on APPROVER data block...
    No compilation errors.
    Compiling ON-DELETE trigger on APPROVER data block...
    No compilation errors.
    Compiling ON-UPDATE trigger on APPROVER data block...
    No compilation errors.
    Compiling WHEN-VALIDATE-RECORD trigger on APPROVER data block...
    No compilation errors.
    Compiling KEY-DELREC trigger on APPROVER data block...
    No compilation errors.
    Compiling WHEN-VALIDATE-ITEM trigger on APPROVER_NAME item in APPROVER data block...
    No compilation errors.
    Compiling KEY-LISTVAL trigger on EFFECTIVE_START_DATE item in APPROVER data block...
    No compilation errors.
    Compiling KEY-LISTVAL trigger on EFFECTIVE_END_DATE item in APPROVER data block...
    No compilation errors.
    Compiling WHEN-VALIDATE-ITEM trigger on EFFECTIVE_END_DATE item in APPROVER data block...
    No compilation errors.
    Created form file AMZ_RESPAPPRV.fmx
    Edited by: user578908 on May 2, 2011 2:03 PM

  • FRM-47023,FRM-40105

    Hi,
    I have developed a custom form which is a datetracked. So initially I have added the code for Update and correction modes for one item in when-validate-item trigger.So when I try to update that particular item following in Applications following are the error messages I have received:
    1)FRM-47023: No such parameter named G_QUERY_FIND exists in my_form_name
    2)FRM-40105: Unable to resolve reference to item parameter.g_query_find
    3)FRM-47023: No such parameter named DT_MODE_TYPE_EXISTS in form my_from-name
    4)FRM-47023: No such parameter named G_QUERY_FIND exists in my_form_name
    5)FRM-40105: Unable to resolve reference to item parameter.g_query_find
    6)FRM-47023: No such parameter named DT_UPDATE exists in my_form_name
    7)FRM-47023: No such parameter named DT_CORRECTION exists in my from_name.
    I have attached all the libraries like DT,....... to my custom form but still gets the above errors.
    Please advice me how to get over it.
    Thanks
    Uday Ravipati

    Is the calling form trying to pass a parameter into your form ?
    Is this parameter passing happening in the new envirionment and not in the old?
    Does your form use parameters (ie to your knowledge)?
    rgds
    Tony

  • ERROR MESSAGE: FRM-47023

    I am working on a customized Sales order form. The customization was done in version 11.5.9.2 and the form was working well. Now, the oracle apps has been upgraded to version 11.5.10.2.
    In the upgraded version, when I try to open the customized sales order form, I get the error message "FRM47023-47023: No such parameter named OPM_RMA_LOT_RESTRICT exists in form XXOMIVSEMSU.
    Can anyone suggest me the cause of the error.
    Thanks.

    I think you need to define the parameter OPM_RMA_LOT_RESTRICT in form XXOMIVSEMSU. How this form is called...from menu or from other form? When the form is called there are any parameter passed?

  • No such Parameter names Org_id

    After choosing any responsiblity in Oracle Apps, I am getting error message FRM 47021: No Such Parameter named Org_Id defined in Parameter list DEFAULT. The same error continues for ORG_CODE and ORG_NAME. After these error messages, the application closes.
    This is in 10.7.
    Pl. let me know how to solve this.
    Thanks
    Raviraj D

    Hi,
    1. Is this issue specific to any missing configuration setup(Functional)?If the issue with NLS languages only then most probably it is not a setup issue.
    2. Needs additional/alternate Patch?Cannot tell until you go through the doc referenced below -- Have you applied all NLS patches mentioned in your post in addition to the English ones?
    3. Is it NLS specific? Do I need to apply any NLS Patch?Please see (Requesting Translation Synchronization Patches [ID 252422.1]) to find out if you have any missing NLS patches that need to be applied.
    Thanks,
    Hussein

Maybe you are looking for

  • Calculating and Displaying Dates in Javascript

    Hello, I'm working on a flowchart form for my work, and am having issues getting a date to a) add correctly and b) display only certain portions of the date. I have four fields: CurrentDate - Displays the Current Date in MM/DD/YYYY format DropDownLis

  • Loading library.swf (unpacked from swc) using loader() and using it's assets

    I try to load libary.swf from an swc file in order to use it's library items. i load the library.swf using urlrequest and loader() and then use getDefinition() to fetch the class definition of the UIMovieclip element. i simply created the swc file by

  • Installing Rosetta from a script

    Hi, I need to be able to install the rosetta component in Snow Leopard from a script file. We have a management tool that allows us to run scripts on our macbooks. We need to install a new piece of software across the company and this software requir

  • How can I solve the problem? under rh6.2

    Exception thrown from action: make Exception Name: MakefileException Exception String: Error in invoking target install of makefile /home/oracle/app/ oracle/product/8.1.6/sqlplus/lib/ins_sqlplus.mk Exception Severity: 1 Exception thrown from action:

  • 1084: Syntax error: expecting rightbrace before end of program.

    So I'm doing this basic coding thing to make an object "shoot" bullets. It's from a tutorial video. My code matches his exactly unless I'm missing a tiny detail. Basically the code looks like this: package { import flash.display.Sprite; import flash.