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.

Similar Messages

  • 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?

  • 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.

  • 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?

  • 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);
    }

  • Error ERR-1412 Unable to resolve page alias (APP_ID).

    Dear Friend,
    I Have Create Report
    select INVOICE_NO,INVOICE_TYPE,CURR_CODE,EXCH_RATE,NO_OF_PAX,FREE_PAX,EFFECTIVE_PAX,ACTIVE_FLG,
    CASE WHEN APPROVAL_FLG='Y' THEN
    'BLUE'
    ELSE
    '<a href="f?p=:APP_ID:4::SESSION::NO::::">Create New Invoice</a>'
    END
    AS LINK
    from AR_INVOICE_MAS TM WHERE FILE_CODE=:P7_FILE_CODELink created but when i click on Link Then Show mw Error
    Error ERR-1412 Unable to resolve page alias (APP_ID). 
    How to resolve it.
    Thanks

    Dear Friend ,
    Jus PAss
    '<a href="f?p=&APP_ID.:4:&SESSION.::&DEBUG.::::">Create New Invoice</a>'

  • Oracle forms error frm-40508: unable to insert record

    Hi Everyone,
    I have been having this problem for 2 weeks and I realize that I spent alot of time I couldn't get to fix the problem so I need your help.
    Here is my situation. First, I installed Oracle 10g in my laptop with Oracle forms10g and Oracle forms904i. I had oracle_home folder as the top level structure then I have inside oracle folder, Oracle10g in it own folder, Oracle9i release2 in it own folder. then I created the user account "student" using the system/manager account finally I granted privilleges as follow:
    GRANT ALL PRIVILLEGES
    TO student
    WITH ADMIN OPTION;
    this was working perfecty I didn't need to grant objects privilleges such as
    GRANT INSERT, UPDATE, DELETE
    ON customers
    TO student;
    Then I created a form Application prototype and it works well I could Insert, Update and Delete but now I am creating an e-commerce application prototype I created an new account using a system/manager account as I did previously and grant all privilleges. When I try to grant object privileges the message that I receive says ORA-01919 : role 'INSERT' doesn't exist
    When I run the application I am unable to insert the record through forms I get message frm-40508 Orcle error: unable to insert record.
    I deinstall the Oracle and clean my laptop and did a clean installation using only Oracle Server10g and Oracle Developer10g I am getting the same message frm-40508.
    Can someone please help me on this. the insert command that I am running is a simple one such as
    INSERT INTO customers
    VALUES( block_name.field_name, ....);
    COMMIT;

    frm 40735:When button pressed trigger raised unhanded exceptionplease help me to solve this>
    The FRM-40735 is a generic Unhandled Exception. Please post the full error message so we can better help you.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Error Code 0x80072efd - Unable to resolve

    I'm on an HP Stream 7 tablet running Windows 8.1 full. The problem is whenever I try to run an app (that came preinstalled, like "Mail" or "Store") and "Switch this PC to microsoft account" for the first time, the error message
    "unable to connect to Microsoft etc" followed by "error code 0x80072efd" is displayed. I've figured out how to get Firefox working by selecting "No Proxy" in network connection settings. As far as I know, Windows is configured
    the same way, no proxy. Everything seems to be configured correctly. Yet, I'm still encountering this problem. Google isn't helping and I don't know what to do. Please help.

    Hi,
    How about your problem now? Is britishez's suggestion helpful? If you need any futher assistance, please feel free let me know.
    Roger Lu
    TechNet Community Support

Maybe you are looking for

  • Automatic PO Creation at time of CO Shipment

    Hi, We are looking at a business model where at time of shipment of goods to the customer a corresponding PO (or PO line) is created and receipted to a vendor for the goods just shipped. Ideally we would like to see this process automated. We are fai

  • Multiple files in Multicam

    I have 3 seperate files that are a continous shot to put in to a multicam clip. How do I let FCPX know they are the same angle? Thanks,Randy

  • PR Release Strategy-Characteristic Z_GSWRT must be linked with CEBAN-GFWRT

    Dear Experts, I did a simple config for PR Release strategy. using Plant(Z_WERKS) and Item values(Z_GSWRT ) chose overall PR Release. During simulate release the second level release its not able to simulate and it says check Prerequistie for second

  • 50 days and counting without my MacBook

    Today, i am celebrating my dissapointment on my RSD macbook white... it been away now for 50 days and counting, with my dissappointment yesterday, i called long distance to apple center in manila, philippines about the status of my repair and one gen

  • Error in GP archiving

    Hi Experts. I'm having an error while trying to do the Guided Procedures Archiving. The error is: Operation could not be completed com.sap.caf.eu.gp.model.arch.exception.ArchException: Operation could not be completed      at com.sap.caf.eu.gp.model.