FRM-41383 No such property for Set_Item_Instance_Property

Hi
I am getting the above error message when I am calling this from the form.
set_item_instance_property(block_name.item_name',current_record,visual_attribute,'CUSTOM');
where CUSTOM is the visual attribute.

You have a stray apostrophe in your line above. Please post the actual code you are using.

Similar Messages

  • LOV with FRM-41042: No such property for SET_ITEM_PROPERTY

    Hi all,
    I have a field (not a database item of the block ) of LOV object and a button next to it to trigger to the LOV list item.
    However, whenever, i click on the button, FRM-41042: No such property for SET_ITEM_PROPERTY will be prompted. Though the list item do appear and the item can be set into the field.
    Here is the procedure called by the when-button-pressed trigger of the button.
    PROCEDURE press_lov_btn IS
    v_lov_name           varchar2(30);
         v_sel                              boolean;
         l_target_item      varchar2(100);
    BEGIN
    l_target_item := NAME_IN ( 'SYSTEM.TRIGGER_BLOCK' ) || '.' ||
    GET_ITEM_PROPERTY ( NAME_IN ( 'SYSTEM.TRIGGER_ITEM' ), PREVIOUSITEM );
    IF l_target_item != NAME_IN ( 'SYSTEM.CURSOR_ITEM' ) THEN
    GO_ITEM ( l_target_item );
         v_lov_name := get_item_property ( l_target_item, lov_name );
    END IF;
         v_sel := show_lov ( v_lov_name );
    if not v_sel then
         raise form_trigger_failure;
    end if;
    END press_lov_btn;
    Any one know the error is due to the setting in the field or that in the button?????
    Thanks a lot.

    Your code to call a lov is a little complicated and errornous (as it depends on the item-ordering). The following code it a little easier (in my eyes). It depends just on naming-conventions, the button-name has to be 'BT_XXX' where XXX is the name of the item the lov is attached to.
    PROCEDURE PR_LOV IS
      vcItem VARCHAR2(61):=REPLACE(NAME_IN ('SYSTEM.TRIGGER_ITEM'), '.BT_', '.');
      itItem  ITEM;
    BEGIN
      itItem:=FIND_ITEM(vcItem);
      IF NOT ID_Null(itItem) THEN
        -- Navigate to the item
        GO_ITEM(vcItem);
        -- Show its lov
        DO_KEY('LIST_VALUES');
      ELSE
        message('invalid item ' || vcItem);
        RAISE FORM_TRIGGER_FAILURE;
      END IF;
    END;Hope this helps.

  • FRM-41042 -No such property for set_item_property

    Hello all!
    Im getting the above error when issuing the statement below in a post-query trigger in a form.
    set_item_property('emp_mst.sub_div_cd',ENABLED,PROPERTY_TRUE);
    I find this strange coz i've been using it b4.
    Thnx

    hello,
    What is emp_mst.sub_div_cd ?
    I have seen this happening on Radio groups (with radio buttons).
    On Forms 6, setting this property on Radio groups did not raise FRM-41042 but on 10g, error was raised.
    On a more general note, check what property you are setting and the exact item. From there, you can see how to go around this statement.

  • FRM-41042 No Such Value For SET_ITEM_PROPERTY

    Hi all,
    I'm using Oracle 10g and I want to set a Text Item value manual so, I do this in the When-New-Form-Instance then I write the code
    EXECUTE_QUERY;
    DECLARE
          ITEM_ID ITEM;
    BEGIN
          ITEM_ID:=FIND_ITEM('EXPECTED_GOODS.TEXT_ITEM_PRODUCT_NAME');
          SET_ITEM_PROPERTY(ITEM_ID,INITIAL_VALUE,'Zikas');
    END;Then when I run (the compilation successes) the error FRM-41042 appear
    Thanks in advance :)
    Edited by: ZiKaS on Dec 27, 2008 12:20 AM
    Edited by: ZiKaS on Dec 27, 2008 12:32 AM
    Edited by: ZiKaS on Dec 27, 2008 12:32 AM

    set_item_property();

  • Where has the bookmark property for specifying the icon gone?

    In FF3 if I selected a bookmark and its properties, I was provided a field where I could specify the location on my PC for the desired icon for that bookmark. This was particularly true for specifying the icons for the Bookmarks Toolbar. I have the TotalToolbar v1.9.1 extension installed, but I am not sure that that extension gave me that capability for FF3. In FF4 there is no such property for bookmarks to specify, or change, the icon. One step back.

    This issue is caused by an extension that isn't working in Firefox 4
    You can look at this extension:
    *Bookmark Favicon Changer: https://addons.mozilla.org/firefox/addon/bookmark-favicon-changer/

  • FRM-30457: Maximum Length ignored for character-datatype

    Hi,
    I have a oracle form. When i use Compile Module (Ctrl + T) I am getting the following error:
    FRM-30457: Warning: Maximum Length ignored for character-datatype subordinate mirror item MAIN_CONTROLS.DATA1.
    Can anyone help to resolve this warning message?

    Hi,
    Check the data type of MAIN_CONTROLS.DATA1, i think, it must be a number.
    Or you might have not added the maximum length for MAIN_CONTROLS.DATA1.
    I found the below when I surfed.
    Error Message: FRM-30457: Warning: Maximum Length ignored for character-datatype subordinate mirror item %s.%s.
    Error Cause:
    A non-zero value was specified for the Maximum Length property in a subordinate mirror item whose Data Type is CHAR, ALPHA, or LONG. The Maximum Length property for such an item will be obtained from the master mirror item (the item specified by the Synchronize with Item property).
    Action:
    Specify the Maximum Length property in the master mirror item.

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

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

  • Delete Allowed Property For Current Record

    I have a requirement where I need to make a record allowed proeprty delete_allowed as false.
    Eg:
    If :variable:='YES' then
    SET_ITEM_INSTANCE_PROPERTY('block_name.item',CURRENT_RECORD,UPDATE_ALLOWED,PROPERTY_FALSE);
    end if;
    I cannot set delete_allowed property here, so how can I set delete allowed property to false?
    if I use
    SET_ITEM_PROPERTY('block_name.item',ENABLED,PROPERTY_FALSE);
    it will set property for all the records in the block, I have a multi-record block
    I am using Oracle Forms 10g
    Thanks

    Thanks for the reply.
    Yes I was thinking of doing this.
    if I put a validation in key-delrec trigger, then do I need to explicitly call a commit or any other method to delete a record if condition is not true?
    Eg:
    If :variable:='YES' then
    Message(' DELETE IS NOT ALLOWED');
    Raise Form_Trigger_Failure;
    ELSE
    commit or delete_record;
    End if;

  • ReadOnly property for MDM Standard components

    Hi,
    I am using Standard MDM Webdypro component for Item details.
    I am able to change the readonly property for text fields by using..
    wdThis.ItemDetailComp.setFieldProperty("FLD_CODE", FieldLayoutProperty.READ_ONLY, true);
    but this line of code it working for date fields, fields with lookup popup, integer fields.
    Please let me know how to make date fields, fields with lookup popup, integer fields read only through coding.,
    Akshay

    setFieldProperty method is the only such available in item details ...
    check this ...
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/4c/031f9ac2130da0e10000000a42189e/content.htm
    strange why its not happening for the other field types !
    thanks
    -Adrivit

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

Maybe you are looking for

  • Can we maintain division specific credit limits?

    Hi All,     we have one company code & one Cr.Control area. but we have 2 sales areas. eg: 1000/10/AA & 1000/10/BB. My client wants to maintain division specific credit limits like div:AA- $4000 & BB- $6000. Total Credit control area limit -$10000. i

  • Can't connect to SquirrelMail with Mac OS X Mail client

    I am working with an organization whose email is running on SquirrelMail.  When I try to set it up as a new account in my Mac OS X Mail client, I choose IMAP, enter the email server name, password, etc. but once the account is created I keep getting

  • Can I use my normal power adapter in another country without damaging my computer?

    I just bought a brand new MacBook Air in the UK a couple of months ago, but now I'm moving to Mexico. I want to know if I can keep using the power adapter that came with my laptop, just adding a plug compatible with Mexican outlets. Will it damage my

  • Add video to audio in iMovie

    I'm doing a project in iMovie where I need to add video and photos to a song... however, there doesn't seem to be a way to import the audio to the project FIRST . .   I need for the entire song to be in the project so I can determine where to add whi

  • Unable to Launch iTunes - Windows 7

    I'm unable to launch iTunes on my PC.  I'm running Windows 7.  I tried t unistall and reinstall, twice, but it stll will NOT launch.  Any suggestions?