Enter Journal - FRM-40105: Unable to resolve reference to item GLXJEENT_A

Hello,
When I am opening the form Enter Journals in General Ledger, the following messages is prompted:
FRM-40105: Unable to resolve reference to item GLXJEENT_A
Note that if I turn the Custom code Off, the error does not appear.
Please help,
Vikram

Thanks Dirk,
I have open the CUSTOM.pll file in form builder and found the following:
fdrcsid('$Header: CUSTOM.pld 115.5.1150.1 2000/02/07 16:10:16 pkm ship $');
I have applied a patch on the environment to update version to R12.1.2.
Should this Header information in the CUSTOM.pll be updated? how do we do update it?

Similar Messages

  • See error Frm-40105 : unable to resolve reference to item 20.

    hi master
    sir when i put this code on when_button_press then give this error
    go_block('emp');
    enter_query;
    :emp.deptno := 10;
    execute_query;
    error
    Frm-40105 : unable to resolve reference to item 20.
    sir please give me idea
    Thanking you

    Frm-40105
    Cause:  Runtime error. A GO_ITEM statement references a nonexistent item.
    Which suggests that there might be some code in your form which causes this error (in)directly.

  • FRM - 40105 : Unable to resolve reference to item item name

    Hi,
    FRM - 40105 : Unable to resolve reference to item <item name>
    When I am opening a form I am getting the above mentioned error. Instead of <Item name> how we can display the error like <:CTRL_BLK.DOC_DATE>
    Thanks & Regards,
    Jenson

    Hi,
    Actually I know what is the reason for getting this error. What I tried to ask you is any way to display the item name, which error is occurred.
    In the form around more than hundred item setting the SET_ITEM_PROPERTY , there only I am getting this error. Like this around more than five form I have to debug. I would like to know through error handling routine or some other code we can display the exact item name, which error is occurred.
    Thanks & Regards,
    Jenson V.A.

  • FRM- 40105: Unable to resolve reference to item

    hi dear all,
    the following query give no error and return records when i execute it in toad. but the lov didn't return any records. frm-41830 the list didn't contain entries.
    SELECT ALL AP_VENDORS.VENDOR_ID, AP_VENDORS.VENDOR_NAME, AP_VENDORS.ADDRESS,TYPE_ID ,AP_VENDOR_TYPE.VENDOR_TYPE_ID, AP_VENDOR_TYPE.TYPE_NAME
    FROM AP_VENDORS , AP_VENDOR_TYPE
    WHERE AP_VENDOR_TYPE.TYPE_NAME = :AP_ENTER_BILL_MASTER.VENDOR_TYPE';
    what is the problem.
    Regards:
    Muhammad Nadeem
    Message was edited by:
    Muhammad Nadeem

    Hi ,
    Put a static value which will return some rows..... replacing your block item value.....
    See the link below.....it may help you....
    Zdebug -- A Forms debugging message tool
    or run the Debugger tool of your Fomr Builder.... examining the data value your block item has.....
    Regards,
    Simon

  • Frm-40105  unable to resolve reference to item parameter.webutil config

    Hi.
    I have one form(10G) that's using webutil and the system returns this message, but I have others forms that's works fine.
    I just copied all objects of webutil of one form that's ready works to this new form.
    Someone already had this problem.
    Best regards.

    HI, when you copied the objects, did you drap the object group WEBUTIL to the new form's Object Group? If you did that you should have all the components that webutil require. oh. minus the most important one..webutil.pll :-)

  • FRM-40105:Unable to resolv refrnce to item INV_SUM_FOLDER.match_status_flag

    After entering into Payables Vision Operations(USA)--> Invoices-->entry-->invoces. Enter the header details, while click on lines, the error is "FRM-40105: Unable to resolve reference to item INV_SUM_FOLDER.match_status_flag" populated.
    While click on ok on error form, another error is "frm-41072 cannot create group appcore_condition" populated.
    Please fix the issue.

    If this is a standard eBusiness Suite form (not a custom form in EBS) report it to Oracle Support. Other questions about EBS should be posted in the EBS forum.

  • FRM-40105 Impossible to resolve reference to item

    I have a control block with a save button in. I have another block 'AAA' on wich I have a when-validate-item on an item at the block 'AAA' level. If I have an error on this item and I push the save button, why I always receive the FRM-40105 Impossible to resolve reference to item ?

    Hello,
    Why am i not able to answer if i don't get the whole information ?
    What is the code behind the push button and the W-V-I trigger ?
    Francois

  • FRM-10405 UNABLE TO RESOLVE REFERENCE

    im using forms 6i.
    i have a tabular block named "SUB". in which i have a text field named "LTYPE".
    on LTYPE field i have a post change trigger in which i have a tiny code
         if :sub.ltype='B' then
              set_item_property(':sub.subcode',navigable,property_true);
              go_item(':sub.subcode');
              end if;
    it shows FRM-10405 UNABLE TO RESOLVE REFERENCE TO ITEM :SUB.SUBCODE.
    can anybody help me whats the problem

    Gul wrote:
    im using forms 6i.
    i have a tabular block named "SUB". in which i have a text field named "LTYPE".
    on LTYPE field i have a post change trigger in which i have a tiny code
         if :sub.ltype='B' then
              set_item_property(':sub.subcode',navigable,property_true);
              go_item(':sub.subcode');
              end if;
    it shows FRM-10405 UNABLE TO RESOLVE REFERENCE TO ITEM :SUB.SUBCODE.
    Little mistake.
    replace go_item(':sub.subcode');
    to
    go_item('sub.subcode');Hope this works

  • Error unable to resolve reference to items.

    hello experts,
    i have a problem in oracle form.i have to search item that are coming thorugh db. a same items comes multiple time.
    suppose a item XXX comes five times in form then when i search for this item XXX then cursor search this part five times one by one
    i using below code for searching.then that error comes unable to resolve reference to items.pls help me to resolve this issue.
    DECLARE
    temp_last number(2);
    item varchar2(30);
    chk_exc exception;
    i number(2);
    j number(2);
    BEGIN
    go_block('BLOCK3');
    last_record;
    temp_last:=to_number(:system.cursor_record);
    for i in 1..temp_last
    loop
    go_record(i);
    item:=:BLOCK3.item;
    if ITEM=:BLOCK1.SEARCH_PART
    THEN
    GO_ITEM(':BLOCK3.item');
    end if;
    end loop;
    exception
    when chk_exc then
    mess(' Not Exist !');
    Raise form_trigger_failure;
    END;
    Thanks
    Ravi

    Hi Ravi,
    try this code
    DECLARE
         temp_last number(2);
         item varchar2(30);
         chk_exc exception;
         i number(2);
         j number(2);
    BEGIN
         go_block('BLOCK3');
         last_record;
         temp_last:=to_number(:system.cursor_record);
         for i in 1..temp_last loop
              go_record(i);
              item:=:BLOCK3.item;
              if ITEM=:BLOCK1.SEARCH_PART THEN
                   GO_ITEM('BLOCK3.item');
              end if;
         end loop;
         exception
         when chk_exc then
         message(' Not Exist !');
         message(' Not Exist !');
         Raise form_trigger_failure;
    END; Hope works...
    hamid
    If someone's response is helpful or correct, please mark it accordingly.

  • Unable to resolve reference/Cannot find Canvas

    Hi,
    I have generated a form with Designer 6i. It has 3 tabs. On the second or third tab, when I diminish the width property of a BOUND TEXT ITEM , I get 2 error messages one after the other :
    - FRM-40105. Unable to resolve reference to item <item name>. ...
    - FRM-41053. Cannot find Canvas--invalid ID.
    If the width is equal or bigger than its original value, it works fine. As soon as I change the value to a smaller one, it doesn't work anymore.
    Any help would be appreciated,
    Denise

    Hi,
    When you reference an item using:
    set_item_property(<varchar2 field>, ...)
    you should format the item name as:
    'BLOCKNAME.ITEMNAME';
    For example, set_item_property('NCP.B', enabled, property_true);
    The colon is only used when you actually want the value of the item.
    I can't remember, but this might be case sensitive too - so use uppercase.
    Cheers
    Chris

  • Suppressing unable to resolve reference to parameter... message

    We have converted our applications to Oracle 9I (Internet) from Oracle 5 (Client Server).
    We force a closing of an extra browser window by creating a .pll with a customized function called close_browser which runs close.htm and then does an exit_form to replace exit_form. We have forms call other forms, if the form is called, then it checks a forms parameter called parameter.pr_called. We want to just modify the library and not modify 100s of forms but :parameter.pr_called does not exist in a number of forms but we need to check parameter.pr_called with a NAME_IN in the library just in case it is called so we don't close the browser window if the form is a called form. It would then simply exit form and go back to the original form. When we check for name_in('parameter.pr_called) = 'Y' to check for this condition, we get unable to resolve reference to parameter pr_called.
    We have tried changing message levels, but that only works for error messages and not messages. There seems to be no programming way to do a find_parameter for a form parameter. Any suggestions on how to prevent the message from appearing. We would not want to modify all the forms.
    Thank you,
    - Brian

    If you want to add this parameter to all your forms in batch - this is simple to do with the Java API - here's some sample code.
    package oracle.forms.jdapi.demos;
    import oracle.forms.jdapi.*;
    public class AddParam
      public AddParam(String formName, String parameterName, String parameterValue)
        try
          // Open the module - this implicitly starts JDAPI
          FormModule form = FormModule.open(formName);
          System.out.println("Processing " + form.getName());
          // see if the parameter already exists
          ModuleParameter param = null;
          try
            param = ModuleParameter.find(form, parameterName);
          catch (JdapiException cjdex)
            System.out.println("Parameter not present needs creating...");
          if (param == null)
            // create the required Param
            param = new ModuleParameter(form,parameterName);
            param.setParameterDataType(JdapiTypes.PADA_CHARACTER_CTID);
            param.setMaximumLength(3); //assuming Y/N, YES/NO??
            param.setParameterInitializeValue(parameterValue);
            System.out.println("Parameter created...");
            //we've made a change so save...
            form.save(formName);
            System.out.println("Form Saved...");
          else
            System.out.println("Parameter already exists...");
          form.destroy();
          Jdapi.shutdown();
        catch (JdapiException jdex)
          System.out.println(jdex.toString());
       * @param Pass the name of the Form as an agument to the class
      public static void main(String[] args)
        String paramName = "PR_CALLED";
        String paramDefaultValue = "N";
        AddParam addParam = new AddParam(args[0], paramName, paramDefaultValue);
        System.exit(0);
    }

  • Getting FRM-40105 in the sales order form when applying sales credits

    Hi,
    i'm trying to apply sales credits at the line level.
    1.I get FRM-40105 unable to resolve reference to item SALES_CREDITS while trying to save the data in the sales credits window of the sales order form-OEXOEORD(this happens only if i say save and proceed).
    2.If i simply say 'ok' in the sales credits window the data entered in the salesrep field and quota and percentage gets saved but the data i entered in the 'ADDITIONAL SALES CREDIT INFORMATION' flexfield
    doesn't get saved.If i query the order number and if i go back to the sales credits window i'm not able to see the data i entered in the flexfield popup.
    Any idea of why this is happening so? we are in vision 11.5.5.
    Regards,
    Nithya

    Hi All,
    Does any1 have any suggestion for my question...
    Thanks,
    Lp

  • Error FRM-40105

    Dear all,
    I get an error on running my forms 'FRM-40105: Unable to resolve reference to item database'. Th error above comes when i moved from the development server to production server. Is there anything I have to configure for my forms to read from the production database?
    Can anyone assist plse.
    Thanks in advance

    I think the error associates with the menu.
    if i click ok for the first error the other error opens. 'User is not authorised to run form builder menu'.
    Security on my application are based on menu using database roles. This user has been assigned a role that gives him access to some menu items. How comes i get this error?

  • FRM-40105

    I have a question. I have my form item :DATABLOCK.ITEM in the property palette set Visible to No. I have a WHEN-BUTTON-PRESSED trigger on a button that trys to set the property at run time to visible=yes. here is the pl/sql code:
    BEGIN
    SET_ITEM_PROPERTY(DATABLOCK.ITEM, VISIBLE, property_true);
    END;
    When I run the form and click the button I get the following error:
    FRM-40105 Unable to resolve reference to item.
    All that I want to do is make the item visible at the click of the button. Any help?

    Put quotes around DATABLOCK.ITEM
    SET_ITEM_PROPERTY('DATABLOCK.ITEM', VISIBLE, property_true);

  • 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

Maybe you are looking for

  • Javabean is not working after adding webutil.olb in form 10g

    I have created a form in which I am using javabean for running marquee and is working well. I have also attached webutil library in that form and it's working well also. But when I am adding webutil.olb in that form marquee stops to work. I have give

  • What is the best way to install a SSD?

    I'm sure this is answered somewhere but I'd like a confirmation as of Mavericks.  I have a Samsung 840 Pro 256GB SSD I'd like to install in my Late 2011 Macbook Pro.  I also have the HD Caddy to install my existing 750GB into the Superdrive bay.  I r

  • Form submit button won't work in most browsers

    I have a PDF form which I created in InDesign, then added Form fields in Acrobat XI Pro, including a submit and print button. These work fine in Acrobat Reader, but in many browsers (Chrome, Firefox) the "submit" button doesn't work. It works fine in

  • Opening a PDF/Excel/Word Doc/etc file in an iView

    Hello everyone, I'd like to open an Excel or PDF or etc file in an iView. Ideally i'd just create a URL iview (by the way i'm on EP5 SP6) and then just use that to link to a static file. However, the issue i'm having is that we need to open the file

  • New_Time Zone not supporting for our time.

    Hi There is a requirement for us to store the time in GMT. I am aware there is this function NEW_TIME(SYSDATE, 'EST', 'GMT'); But this supports very few time zones. I am in GMT+5:30. (INDIA) Is there any other ready function available for convertion?