FRM- 41081: cannot move item: invalid postion

Hi,
iam trying to move the position of an item using the set_item_property in a check box.There is one item which comes up with the above FRM error.Iam sure i have mentioned the correct x,y postion.There are other item in the same canvas for which the postions were changed and they do not come up with any error.there is only one item that does not move.Could some one provide some input regarding this problem.

Hi,
The x,y co-ordinates that i have mentioned are the rigth ones and i have checked it and they are correct.I have made sure that the item falls within the canvas but still i come up with the same form error (FRM- 41081: cannot move item: invalid postion).
Regards,
Aj

Similar Messages

  • FRM-41045 cannot find item invalid id

    Hi All,
    I was working with custom form my form version is 10g.
    We have developed a custom form in that we have a field called invoice_date
    Invoice_date declare as Date column.
    And we have given all other in the property pallatte correctly.
    When we click the invoice_date field this pop message is coming
    FRM-41045 cannot find item invalid id 10-15 times and then we are selecting the date.
    Regards
    Srikkanth

    Hi,
    You better post it on e-business suite dedicated forum, you will have people with more expertise on customization there. Its always good that you give complete information in your post like your version,environment,etc
    See if you disable the call to the calendar.show and clicking the field is giving you any error.
    Regards
    Yoonas

  • FRM-41045: Cannot find item: invalid ID (what's the ID?)

    Hi!
    When Forms run:go_item('<block_name>.<item_name>');and there's no such item in that block the error FRM-41045 appears. Is there any way to find out this "invalid ID"?
    That information whould be very helpful in finding block of code resulting in this error.
    Thanks in advance,
    JackK

    JackK wrote:
    Hi!
    When Forms run:go_item('<block_name>.<item_name>');and there's no such item in that block the error FRM-41045 appears. Is there any way to find out this "invalid ID"?
    That information whould be very helpful in finding block of code resulting in this error.
    Thanks in advance,
    JackKYou can "address" items in form by their name or by the ID. The ID for an item can be retrieved by FIND_ITEM.
    That forms is not returning the item-name in a 41045 is a PITA since ever.
    I recommend that you just wrap every GO_ITEM into another procedure, where you
    .) try to find the item
    .) raise an error-message with the item name
    if the item does not exists.

  • Paybles Invoice Batch Cannot find item: Invalid ID  In R12

    Hi All,
    While running invoice batch when we click on item it is giving error like Invalid id. Please suggest me.
    Thanks,
    Red.

    RED,
    Have a look at the following note, it may be helpful.
    Note: 553646.1 - R12 Cannot Open Invoices Form Frm-41045: Cannot Find Item: Invalid Id
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=553646.1
    Regards,
    Hussein

  • FRM - 41219 CANNOT FIND REPORT INVALID ID  - CALLING REPORT FROM FORM

    I am using Developer Suite 10g (forms 9i, reports 9i) . windows XP.
    I am using the following code in WHEN-BUTTON-PRESSED-PRESSED trigger in form to call report.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status varchar2(20);
    BEGIN
    repid := find_report_object('C:\EMP.RDF');
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    as as result It is displaying FRM - 41219 CANNOT FIND REPORT INVALID ID.
    I have used the EMP.JSP also in find_report_object built-in. But there is no difference.
    what could be the reason - plz give the solution.
    with thanks
    by GMS

    Unless you made a mistake and overlooked it, what I suggested should work. Having said that, you did not mention the exact Forms version you are using. There may have been a problem in the version you are using which was corrected in a later release. I tested the example I offered using Forms 10.1.2.3 and it works correctly. Carefully review what you did. Verify that the file actually exists in the file system. Also, I would recommend renaming the file with all lower case letters and referencing it in the form with all lower case letters. Here is the complete code of the form I tested. I will also include the property values from the Report object.
    Report1 settings:
    Name - REPORT1
    Subclass Information -
    Comments -
    Filename - dummy.rdf
    Execution Mode - Batch
    Communication Mode - Synchronous
    Data Source Data Block - <Null>
    Query Name -
    Report Destination Type - File
    Report Destination Name -
    Report Destination Format -
    Report Server -
    Other Reports Parameters - On the form create the following items in BLOCK1:
    Text fields:
    <li>SERVERNAME
    <li>REPNAME
    <li>OTHERPARAMS
    Button:
    <li>CALL_REP
    In the WHEN-BUTTON-PRESSED trigger add this code:
    Declare
    repid REPORT_OBJECT;
    v_rep varchar2(256);
    rep_status varchar2(256);
    Begin
       repid := find_report_object('REPORT1');
    -- Set Report Object properties
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT, 'HTML');
    -- Comm mode 1 = SYNCHRONOUS
    -- Comm mode 2 = ASYNCHRONOUS
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, 1);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_SERVER, :block1.SERVERNAME);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_FILENAME, :block1.REPNAME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,:block1.otherparams);
    SYNCHRONIZE;
    -- Run report and get status
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := report_object_status(v_rep);
    SYNCHRONIZE;
    -- Wait for Reports to generate results
        WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
        LOOP
          rep_status := report_object_status(v_rep);
        END LOOP;
        SYNCHRONIZE;
    -- If DESTYPE is appropriate for displaying to user, execute WEB.SHOW ;   
        IF rep_status = 'FINISHED' THEN
          WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||:block1.SERVERNAME,'_blank');
        ELSE
          message(rep_status);
        END IF;  
    END; When you run the form, enter the Report Server name and the Report filename (include the path if you have not configured REPORTS_PATH). Then click on the button. Note that the substr logic may need to be altered slightly if you are using an old version of Forms/Reports.
    .

  • FRM: 41056 Cannot find block Invalid ID (Solved)

    Hi Gurus,
    I have a package Variable(x) declared in the package spec(Y) of my form.
    In when_button-pressed trigger I wrote code like this.
    Y.X:=NULL;
    I am getting FRM: 41056 Cannot find block Invalid ID.
    Can anyone please help me on this regard?
    Message was edited by:
    Forms

    Gurus,
    thanks for your advice.
    Actually in the package specification (in Forms) there was some other varible whose initial value was based on a block which did not exist in my forms.
    So that caused the problem.
    Sorry for the silly question.
    Thanks,

  • Develop query_find encountering 'FRM-41052:  cannot find window: invalid ID

    hi,dear all.
    I 'm using forms 6i to develop query_find function.
    I have Written the query_find trigger on the datablock as follows:
    app_find.query_find('W_MAIN', --'Window name of Data Block'
    'W_QF', --'Window Name of Query Find Block'
    'B_QF'); --'Query Find Block Name'
    but when I click the torch , the query_find window come out after three times of showing of the error message 'FRM-41052: cannot find window: invalid ID'. So every time I have to click three times 'OK' to close the annoying message.
    Can anybody give me some guides how to realise query_find?? how to avoid this error message??
    thanks in advance!

    set_window_property('MAIN_WINDOW', TITLE, 'PACKAGE DETAILS');
    Make sure that you have a window named 'MAIN_WINDOW';
    YES, I do have.
    form_setup_pkg.event('WHEN-NEW-FORM-INSTANCE');
    IF :PARAMETER.P_PACKING_ID is NOT NULL THEN
    EXECUTE_QUERY;
    END IF;
    Which is the code of this package?
    PACKAGE BODY FORM_SETUP_PKG IS
    PROCEDURE EVENT ( i_event IN VARCHAR2 )
    IS
    BEGIN
         Modify this package body to add events during form startup
         and to modify the window name and window title
         IF i_event = 'PRE-FORM' THEN
    SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,WINDOW_STATE,MAXIMIZE);
    SET_WINDOW_PROPERTY('BLOCKNAME',WINDOW_STATE,MAXIMIZE);
    SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW, TITLE, 'GEMS');
    set_window_property('BLOCKNAME', TITLE, 'Template Form');
         ELSIF i_event = 'WHEN-NEW-FORM-INSTANCE' THEN
              null;
         ELSE
              null;
         END IF;
    END EVENT;
    END;
    SELECT ORDER_NUMBER,CLIENT,QUANTITY,PACKING_ID,LETTER_ORDER_CODE,
    ACTUAL_CARRIER,LETTER_ORDER_NUMBER,ACTUAL_SHIPMENT_TYPE,WEIGHT,PACKAGE_NUMBER FROM PACKING WHERE CLIENT = :1
    Where you set field client?
    This is my code I am not selecting client anywhere, I dont know from where "Display error" is fecthing client query.
    Thanks a lot for your help.
    PACKAGE BODY ORDERS IS
    PROCEDURE post_query IS
    BEGIN
    SELECT     pa.ship_to_last_name,
         pa.ship_to_first_name,
         pa.ship_to_address1,
    pa.letter_order_number,
         pa.letter_order_code,
    INTO :ORDERS.SHIP_TO_LAST_NAME,
    :ORDERS.SHIP_TO_FIRST_NAME,
    :ORDERS.SHIP_TO_ADDRESS1,
    :ORDERS.LETTER_ORDER_NUMBER,
    :ORDERS.LETTER_ORDER_CODE,
         :ORDERS.DC
    FROM packing_attr pa
    WHERE pa.packing_id = :ORDERS.PACKING_ID;
    end post_query;          
    END orders;
    Thanks
    Sandy

  • FRM-41052:Cannot Find Window : Invalid Id

    Hello,
    I have developed a New Form and wanted to use the calendar in the date fields. I had added all the codes and when I added the APPSTAND.fmb in the same directory where my form lies, it gives this error : -
    "FRM-41052:Cannot Find Window : Invalid Id" .
    The First window gets displayed, where I feed in the parameters using LOV and then when I click on the FIND button, I get this error message window for 4-5 times before I get into the next window.
    If the APPSTAND.fmb is removed from that directory, the Form runs fine without displaying the Calendar for the Date field.
    Please letme know how should I go about in handling this issue.
    Any suggestions would be helpful.
    Thanks,
    Dev

    Hi Dev,
    Can you send me screen shot.
    My mail id is [email protected]
    aessk

  • Cannot move items. Cannot move or copy folders...

    I have the most baffling problem.  This is with any version of Outlook.  I'm logged into a terminal server as the user of this mailbox.  Its inbox has many subfolders.  One is a folder called "2014".  At the same level
    is a folder we'll call "Test".  When I drag "Test" onto "2014" I get this entire message:
    "Cannot move items.  Cannot move or copy folders.  Cannot move folder.  A top-level folder cannot be moved to one of its sub-folders.  Or, you may not have permissions for the folder."
    Here's the thing...  I've given ownership permission to the inbox folder and both subfolders in question.  I still get this error.  There are other people that share this mailbox and I've done the same thing with one of them; owner permission
    to all subfolders and full access to the mailbox via exchange.  No matter what permission I give to anyone, including the mailbox owner I'm logged in as, outlook refuses to move the folder.  It's not a case of a top level folder being moved into
    one of its subfolders.  The actual owner of the mailbox has ownership permissions to everything yet I still get this error.
    Any ideas?
    Thanks!
    Edit: I can't even create a folder in the inbox.  It just says "Cannot create the folder".  I own everything to do with the folders.

    Hi,
    Please first check if you can reproduce this issue from OWA. If it works correctly in OWA, it means the issue is with Outlook side. We can try to create a new mail profile in Control Panel and then reconfigure the account in the new mail profile to see the
    result.
    If this issue continues in OWA, it could be caused by a permission synchronization problem. I'd recommend you post a new question in the Exchange forum to get further assistance:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • I cannot move items in my playlist.

    I cannot move items in my playlist. It's not a smartlist, and I can see the arrow at the top of the column. Still, nothing. This isn't the first time I've had this problem. Every single time I update to the new version of iTunes, something in my library f-s up, and I spend 2 or 3 hours trying to correct. I cannot, for the life of me, understand why iPod is the top MP3 player and music library in the industry. I've always bought iPods, and always had problems with iTunes. Always. Urgh! Why does it have to be so finicky??

    Reboot and try again.

  • Cannot move items in layers by dragging with mouse cc 2014

    I cannot move layer sub-items up or down in a given layer hierarchy menu.  Can only move with key commands.
    Highlight, click and drag does not work either.
    This is happening in muse cc 2014.
    Ken

    Same for me, can't re-arrange layer at all anymore.
    Muse cc 2014.1
    Jim
    Come on Muse Team lets get an update fix!

  • Why does Mail say that I cannot move items to the trash????

    I cannot delete email the "normal" way. When I set up my POP account, it created a second trash folder with the same name as my mail account. There are thus two folders in my Trash can - "On My Mac" and the one named after my email account. When I try to delete any mail it says that I cannot move anything to the Trash folder for my Mail account. I have to DRAG all email I wish to delete to the "On My Mac" Trash folder. ????????
    I just want to be able to click delete and have email go away! Why is this not working?
    Thanks.

    Select the mailbox you wish to correct, then select "Mailbox > Rebuild"
    Then do a PRAM reset:
    PRAM RESET
    Zap the PRAM
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • FRM-41219 Cannot find report Invalid ID

    I am getting this message when i try to run report from form in Oracle10g Forms, The coding is
    declare
         repid report_object;
         v_rep varchar2(100);
    begin
         repid:=find_report_object('erp_emp_asgn');
         v_rep:=run_report_object(repid);
    end ;
    I already set REPORTS_PATH in Registry to C:\new_Erp
    Please anybody can solve this problem
    Thank You

    Aslam o Alikum (hi)
    In report section of form builder add a report item with name "erp_emp_asgn". i will work fine.
    Take Care
    Allah Hafiz

  • Cannot find report Invalid ID

    I am running Oracle10gAS, and running report from form and getting this message "FRM-41219: Cannot find report Invalid ID" The coding is
    declare
         repid report_object;
         v_rep varchar2(100);
    begin
         repid:=find_report_object('erp_emp_asgn');
         v_rep:=run_report_object(repid);
    end ;
    I have already set REPORTS_PATH =c:\new_erp;
    But still i am getting the same message
    Please if somebody can help me.
    Thank You

    Did you define a Report Object in Forms Builder called 'erp_emp_asgn'?

  • FRM-41219 - Cannot able to call reports from form generated in Designer

    Hi
    I'm trying to call a report from form whit a button generated in Designer 10.1.2.0.2
    But I'm getting error : FRM-41219 Invalid report id
    I'm tying with a menu but I'm getting the same error.
    Please help me

    Note 1056653.6
    FRM-41219 Cannot Find Report: Invalid ID
    Problem Description:
    You are getting error: FRM-41219 Cannot Find Report: Invalid ID
    Problem Explanation:
    The code is using find_report_object and passing a report name to the function.
    The statements are as follows:
    DECLARE
    repid REPORT_OBJECT;
    BEGIN
    repid := FIND_REPORT_OBJECT('report1');
    END;
    Solution Explanation:
    The error message frm-41219 is a new error code which corresponds to the
    Oracle Developer forms/report integration.
    This message essentially means that the report cannot be found. Specifying the
    correct name of a report object found in the forms object navigator (not the
    actual name of the rdf file) usually resolves the problem.

Maybe you are looking for