Record  updated/deleted by another user. Re-Query to see the changes

Hello,
I am using forms 6i. In the application that I have developed there are some field whose values if changed in runtime and saved and again tried to update that record
FRM-40654 will appear. At first, I thought that record is locked by someone.But it was not that. We face same problem again if that field is updated.
Please, give the solution if anybody have.

Hi Prasanna,
if you are doing this in forms this could be because there are spaces in the actual value in the table.
Forms by default truncates all trailing spaces and this causes a problem when a comparision is done because the original string doesn't match the string in the text value in forms.
Eg if db has value "xxx " forms will convert it into "xxx" and these values do not match and hence the error.
Can you please verify if the actual value has spaces in it?
Thanks.
Edited by: Pathfinder on Sep 1, 2011 3:29 AM

Similar Messages

  • FRM-40654 Record has been updated by another user.Re-query to see change.

    Hi All:
    While Updating a record in form its updating fine at first time
    if i updating the record second time its not allowing me to update its showing following error
    FRM-40654 Record has been updated by another user.Re-query to see change.
    After Re-querying its allowing me to update the record .... so anyone can give a good idea to update the record without Re-query.
    i am using following versions
    Apps 11.5.10.2
    Forms 6i
    Database 10g

    @814950,
    Welcome to the Oracle Forums. Please take a few minutes to review the following:
    <ul>
    <li>Before posting on this forum please read
    <li>10 Commandments for the OTN Forums Member
    <li>Announcement: Forums Etiquette / Reward Points
    </ul>
    It is not good to use someone else's post to ask a new question; this is commonly refered to as "Post Hi-jacking." It is always best to create a new post and add a reference link to a similar post. Please create a new post for your question!
    Also,
    >
    BEFORE I NSERT OR U PDATE
    OF quantity, price_override
    ON po.po_line_locations_all
    >
    If I recall correctly from when I worked with the Oracle Enterprise Business Suite (EBS), the PO_LINE_LOCATIONS_ALL is an EBS ta ble. Oracle does not recommend you modify EBS tables directly. There are recommended methods for performing DML on EBS tables. I suggest you review the Oracle Applications Documentation library. Select your EBS version and then scroll to the Standards section and review the following documents:
    <ul>
    <li>Oracle Applications Developer's Guide
    <li>Oracle Applications User Interface Standards for Forms-Based Products
    <li>Oracle Application Framework Personalization Guide
    </ul>
    Again, please ask your question in a new post.
    Craig...
    Edited by: CraigB on Dec 1, 2010 9:29 AM

  • I just updated my personal website but I can't see the changes, other people can tho.

    My web designer just updated my personal website: resume and photo's. I cannot see the updates tho, the same old site keeps coming up.
    He can see it fine and sent me a screenshot even.
    I am on a MAC.

    Reload the webpage fresh from the web hosting server, bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with a left click.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    Let us know if this solves the issues you are having.

  • FRM-40657:  Record changed or deleted by another user.

    I have a forms module with a module component based on a view.
    This view is a simple view with 1 base table.
    This view has a 'client derived' primary key with a sequence.
    This view has a instead of trigger, which is calling the table API.
    There are no server derived columns etc.
    When I insert a record via the form and try to update the same record
    without requery, I get the message:
    FRM-40657: Record changed or deleted by another user.
    When I drop the trigger the error is not raised.
    Any idea ?
    Configuration:
    Forms 6.0.5
    Designer 6.0.5
    Headstart 5.1
    Oracle 8.1.7.4.0

    From Documment : 1236623.1
    Cause:
    1. Navigation from (Responsibility) System Administrator > Security > User > Define > Query out the responsibility, found responsibility key is <NEW_VALUE>. ..................... This is wrong Navigation
    2. Found value <OLD_VALUE> is included in column role_name of the responsibility under the user by sql statement:......................................................................................... Not sure whats the old Value
    select * from wf_local_user_roles
    where user_name = '<user_name>'
    and role_name like '%<OLD_VALUE>%';
    Solution :
    4. Identify the Role (responsiblity) to be changed, click 'Show' to expand the record, select a date to field 'Active To' to provide an end date to this role assignment. ..... Not sure how to get role for particular responsibility.
    From Document : 1273157.1
    We have created new responsibility , But now we are getting error while END_DATE old responsibility.
    New Responsiblity name : BPC-160 DC Staff-New
    Old : BPC-160 DC Staff

  • Error FRM-40657:Record Change or deleted by another user

    Hi dears
    Please HELP ME
    I have a form with multiple blocks and relationship between them
    I can insert in all of the blocks
    but I can not update the exiting rows in ANY block in application.
    I can update the rows from outside of the application
    it returns me this error:
    FRM-40657:Record Change or deleted by another user
    the properties about insert allowed,update allowed and so on are all YES in all blocks
    Would you please advise me about that?
    Need your help
    thanks
    Shahram

    This error occurs because the record as held in the Form is not the same as that held on the database. When Forms locks a record it checks the value of every database item on the Form with that currently stored in the database, and if the two are not the same it issues this error.
    This can happen for a number of reasons e.g.
    1. You may want to look at date fields and ensure the time component is being taken into account i.e. the LAST_MODIFIED column is stored as '01-JAN-2001 15:34:56' on the database but is stored as '01-JAN-2001 00:00:00' (a truncated date) on the Form.
    2. Check to see if there are any database triggers which alter the values of columns.
    You may need to go through every database item on the Form and compare it with the value on the database. Having found a discrepancy in values you need to determine why this occurs.

  • Item does not exist. It may have been deleted by another user

    Hi,
    I am getting a strange issue with the error "Item does not exist. It may have been deleted by another user " with the below code which was under "RunWithElevatedPrivileges" in a application page.
    public void test(int requestId)
    SPList list= web.Lists["test"];
    SPListItem lstItem = list.GetItemById(Convert.ToInt32(requestId)); //Error
    But when I test the above code in a console application, it is working fine & I am sure the id exist in the list.
    Can any one help me on this issue!
    Thanks In Advance,
    Kumar.

    Ok.
    Go to the sharepoint list and check the item with id is exist or not?
    Retrieve the data using another column instead of id column.
    Just for testing.
    Check the below way also
    SPQuery query = new SPQuery();
    query.Query = "<Where><Eq><FieldRef Name=\"ID\"></FieldRef><Value Type=\"Integer\">" + id.ToString(CultureInfo.InvariantCulture) + "</Value></Eq></Where>";

  • Error System "Item does not exist. It may have been deleted by another user"

    Error System "Item does not exist. It may have been deleted by another user" in sharepoint 2010
    This is problem show when User new item in List . User open new item page about 3 pages and User save each one page when page save complete , User will save another page.
    Sometime User can not save item , it show that error
    This List not have workflow and code
    Please let me know what is the issue ?

    Hi,
    Greetings. THis is a known issue and see the links for resolution
    http://support.microsoft.com/kb/972225
    http://social.technet.microsoft.com/Forums/office/en-US/638e4aa0-527c-4b20-a899-a0cf181983ec/no-item-exists-at-it-may-have-been-deleted-or-renamed-by-another-user?forum=sharepointadminlegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • SP2013: List does not exist / The page you selected contains a list that does not exist. It may have been deleted by another user

    There are dozens of entries regarding "
    List does not exist / The page you selected
    contains a list that does not exist. It may have been deleted by another user" and none of them are really SP 2013 so i thought I would create this entry. 
    I am getting the error above after creating a simple list with 4 columns.  the list is created during a new site definition activation but when I click on my list, I get the error above.  the list works if I deactivate the feature and re-activate
    it.  but has the error whenever the new site definition is created.  
    Has anybody encountered this issue on SP 2013?

    Hi,
    For your issue, there are plenty of possible reasons offered when we search this issue online.
    Here are similar issue posts, check whether they are helpful:
    http://sharepoint.stackexchange.com/questions/98239/list-does-not-exist-error-when-opening-the-views
    http://sharepoint2u.com/?p=56https://shareyourpoint.wordpress.com/2012/04/12/list-does-not-exist-the-page-you-selected-contains-a-list-that-does-not-exist-it-may-have-been-deleted-by-another-user-sharepoint-2010-error/
    http://spnovice.blogspot.com/2012/10/list-does-not-exist-or-does-it.html
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • List does not exist . The page you selected contains a list that does not exists. It may have been deleted by another user

    Hi everybody!
    I have a sharepoint 2013 farm with 5 sever. I upgraded a site from sharepoint 
    2007 to sharepoint 2013. I had some problems to install and configure workflow manager and register it. but by now I found problems and I can create a workflow and run it successfully. My big problem is when I try to get a lookup field in my flow. the
    flow suspended and I got the following error:
    “List does not exist . The page you selected contains a list that does not exists. It may have been deleted by another user.”
    Any solution???
    Thanks in advance!

    Hi,
    Please make sure the source list of the lookup column and the list which consumes the content from the lookup column exists on the site collection.
    In addition, to correct this problem the following steps should be applied:
    Delete the affected Workflow association
    Go to "Central Administration" - "Application Management"
    Select the affected web application and choose "General Settings" - "Resource Throttling"
    Increase the value configured as "List View Lookup Threshold"
    Perform an iisreset to ensure that all in memory instances of the web application settings are gone
    Add the Workflow association back to the list
    More information is here:
    http://social.technet.microsoft.com/Forums/en-US/3aeeba20-07dd-4e46-941b-a3db1bb3577e/sharepoint-2013-designer-workflow-the-page-you-selected-contains-a-list-that-does-not-exist?forum=sharepointcustomization
    Best Regards
    Dennis Guo
    TechNet Community Support

  • The new iTunes update deleted thousands of my songs. How in the **** do I get them back?

    The new iTunes update deleted thousands of my songs. How in the **** do I get them back?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • How do i delete my previous users i cloud account on the phone

    how do i delete my previous users i cloud account on the phone

    Removing a device from a previous owner’s account: http://support.apple.com/kb/TS4515

  • User saves query view (web) with changed layout and opens default layout...

    Hi Guru's,
    We are implementing the new (7.0) web template and the portal. One of my users is experiencing the following:
    He runs a webquery, changes the layout in the desired format and does a save as in both My Portfolio/Bex Portfolio.
    When he opens this "changed" view (both My Portfolio, Bex Portfolio) the default format/layout is openened.
    When i open the view he created in Bex Portfolio i do see the changed format/layout ...
    We put an authorization trace on his uid -> no result. Went through the loggings both on ABAP as well as Java stack -> no result.
    Has anyone an idea what is happening.
    Regards,
    René

    Second attempt.
    Has anyone a clue or experienced the same?
    I am not able to reproduce the issue with a copy user with same authorisation.
    The issue also appears if more (mine) authorisation is granted to the user. I am not experiencing this issue
    Regards,
    René

  • Updated Photoshop CC but when I launch it I cannot see the changes. I have restarted my computer and still no changes. Can anyone help please.

    Updated Photoshop CC but when I launch I cannot see the changes. I have restarted computer and still no changes. I also downloaded CC 2014, but how do I get my plugins there? If I could get the plugins there I would just delete Photoshop CC.
    Any help would be appreciated. Thanks.

    http://blogs.adobe.com/jkost/2014/06/installing-the-2014-release-of-creative-cloud.html
    -you may need to log OUT of your Cloud account and then log IN again to see the updates
    This messages says (at least some) CC 2014 programs use NEW plugins https://forums.adobe.com/thread/1499663
    -so do not uninstall the older CC programs if you use plugins in your programs until you are sure you have plugins that work in CC2014
    If you are sure you don't need the old CC programs
    -http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall

  • Urgent:user dont want to see the information

    Hello Experts,
    user dont want to see the information like author of the query time etc when he
    executes the query are there any settings to change that?
    Regards,
    Yash

    Hi,
    In the analyzer go to Layout button (left of Tools)
    --> Text elements.
    Reward if usefull
    Udo

  • Is there a way to delete an app when you can't see the app's icon?

    Is there a way to delete an app when you can't see the app's icon? I have so many apps that they don't all show up on the existing screens. I know it can be done by connecting to a computer and using iTunes, but I'm on the road away from my Mac.

    I tried that and instead of showing me the inaccessible screens, it just shortens the number of available screens. Then if I reset the home screen in preferences it removes the folders I created and I'm back to square one.

Maybe you are looking for

  • Disk Utility: Application Fails To Open / Must Force Quit

    Hi- My Disk Utility application opens but hangs on the "Gathering Disk Information" screen and I get the spinning wheel of doom. I let it spin for minutes/hours and it doesn't seem to matter. I have to Force Quit to get out of it. I searced for a pre

  • RoboHelp 10 - Missing numbers in the Numbered List within a drop-down hotspot

    I have applied a numbered list style to a paragraph which is written in a drop-down hotspot within another drop-down hotspot in RoboHelp 10. But I observed, though the 'numbers' are displayed in the editor, they are missing from the generated output.

  • Character encoding in .java file

    If I write a file with: BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("MyClass.java"),"Shift_JIS"));And then compile it with: javac -encoding SJIS MyClass.javaand then load it into a midp application on a mobi

  • PDFs don't allow scrolling in other tabs

    For some odd reason, if a PDF is open in a Firefox tab, then other tabs do not scroll using a trackpad scroll mechanism (in this case, a sidebar scroll area). Using the scroll bar on the side of the window, they do scroll. This problem has been persi

  • Developing Photoshop Plug In Using Flash and Pixel Bender

    Hello. Is there a way to build a Plug In for Photoshop using the Flash (GUI) + Action Script (Auxiliary Functions) + Photoshop Script (Photoshop Built In Capabilities) + Pixel Bender? Are there tutorials I can start from? Thanks.