This Data Object is currently in use and cannot be edited at this time

Hi,
I have a problem with one of my data objects in that when I try an edit it I get ‘This Data Object is currently in use and cannot be edited at this time’. I have tried everything from rebooting the machine. Any ideas?
Robert

If you have defined any plan or an alert on this data object , please disable them and try agian..

Similar Messages

  • The data form formname is currently in use and is locked by user username

    We run planning 931 on weblogic 91 and sometimes our administrators find our forms locked. So the are not able to edit them.
    The following message appears +“the data form <formname> is currently in use and is locked by user <username>”.+
    Off course it always happens with users who are not available themselves to unlock the form for others. ;-)
    Only a planning windows service restart unlockes this. In our case the form is not unlocked after 2 hours.
    I found this phrase via google. It suggests that there is a certain (time) propertie which unlockes the form after a given period.
    Does anyone know where to set this property? Or to solve this otherwise.
    Only one person at a time can use the Add a Row function on a particular form. When you have the form open, everyone else is locked out. If you close the form (using the X) instead of cancelling it, it will remain locked by you for the next two hours, even though it's not on your screen anymore. If this happens, you will be the only one who can reopen the form. You can unlock the form by reopening it and then clicking the Cancel button to exit properly.

    no solution found. A restart of the services did the job. Hopefully this is not necessary again.

  • Error "Object is currently in use elsewhere."

    Hi!
    I am trying to use "Task", but I got Error "Object is currently in use elsewhere."
    Bitmap oriBitmap = new Bitmap(pictureBox1.Image);
    Task[] tasks = new Task[4];
    for (int k = 1; k <= tasks.Length; k++)
    int count = k;
    tasks[k] = Task.Factory.StartNew(() =>
    int minJ = count < 2 ? 0 : oriBitmap.Height / 2;
    int maxJ = count < 2 ? oriBitmap.Height / 2 : oriBitmap.Height;
    int minI = count % 2 == 0 ? 0 : oriBitmap.Width / 2;
    int maxI = count % 2 == 0 ? oriBitmap.Width / 2 : oriBitmap.Width;
    for (int j = minJ; j < maxJ; j += 8)
    for (int i = minI; i < maxI; i += 8)
    if (((i + 68) < oriBitmap.Width) && ((j + 68) < oriBitmap.Height))
    Bitmap bmp = new Bitmap(68, 68);
    //Get Clone 68 x 68
    using (var g = Graphics.FromImage(bmp))
    g.DrawImage(oriBitmap, new Rectangle(0, 0, 68, 68), new Rectangle(i, j, 68, 68), GraphicsUnit.Pixel);
    //Process Clone
    I've tried to fix it but sometimes I got Error in line
    if (((i + 68) < oriBitmap.Width) && ((j + 68) < oriBitmap.Height))
    and
    g.DrawImage(oriBitmap, new Rectangle(0, 0, 68, 68), new Rectangle(i, j, 68, 68), GraphicsUnit.Pixel);
    Is there any idea to fix it?
    Thanks,.

    Hi,
    if you just read the Bitmap from multiple threads, it *may* help to put the Width and Height into separate Variables before the threads are spawned. Something like int w = oriBitmap.Width, same for height, then start the tasks and access the w and h variables
    from the threads. This is a common technique when using a Parallel.For etc.
    But since you draw the Bitmap in the threads, Vidya Vrat Agarwal's reply will be the correct one.
    What you could do, is to copy the parts of the bitmap, that are processed in each task before creating the tasks. So, if you create 4 tasks, get 4 threadlocal Bitmap-copies that contain the part of the orig Bitmap to be processed.
    Regards,
      Thorsten

  • [svn] 3687: Add some messaging tests for scenarios that involve subscribing to a destination , disconnecting from the channel currently being used and resubscribing to the destination .

    Revision: 3687
    Author: [email protected]
    Date: 2008-10-16 11:23:39 -0700 (Thu, 16 Oct 2008)
    Log Message:
    Add some messaging tests for scenarios that involve subscribing to a destination, disconnecting from the channel currently being used and resubscribing to the destination. There is an issue that is causing the streaming/multipleDisconnectsResubscribesTest.mxml test to fail that I will log a bug for.
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/disconnectResubscribeJMSTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/disconnectResubscribeTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/multipleDisconnectsResubscribesTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/disconnectResubscribeJMSTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/disconnectResubscribeTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/multipleDisconnectsResubscribesTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/disconnectResubscribeJMSTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/disconnectResubscribeTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/multipleDisconnectsResubscribesTest.mxml

    Revision: 3687
    Author: [email protected]
    Date: 2008-10-16 11:23:39 -0700 (Thu, 16 Oct 2008)
    Log Message:
    Add some messaging tests for scenarios that involve subscribing to a destination, disconnecting from the channel currently being used and resubscribing to the destination. There is an issue that is causing the streaming/multipleDisconnectsResubscribesTest.mxml test to fail that I will log a bug for.
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/disconnectResubscribeJMSTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/disconnectResubscribeTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/longpolling/multipleDisconnectsResubscribesTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/disconnectResubscribeJMSTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/disconnectResubscribeTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/polling/multipleDisconnectsResubscribesTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/disconnectResubscribeJMSTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/disconnectResubscribeTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/unsubscribeScen arios/streaming/multipleDisconnectsResubscribesTest.mxml

  • This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded

    Hello,
    When trying to register a custom data flow component (.dll file) to the Global Assembly Cache. I received the following message:
    Failure adding assembly to the cache: This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.
    I think that the problem lies with .NET version (as described in different forums). However the target framework of my project is .NET framework 4 (assembly built by runtime). Where can I see what the currently loaded runtime is? 
    Regards,
    Eddy

    Hi Eddy,
    You are right. It is caused by that .Net framework 4 is not installed in the server. Please check the installed versions by the following article:
    http://msdn.microsoft.com/en-us/library/hh925568(v=vs.110).aspx
    If the .Net framework 4 is not installed, please install it at first.
    In addition, this issue sounds to be a .Net development related issue. Could you please post it in the appropriate forum in the future.
    Thanks,
    Jinchun Chen

  • Why do i get the following message when i attempt to open my backup file for lightroom cc?  "Lightroom cannot use the catalog named "Lightroom Catalog" because it is not writable and cannot be opened".  This message just started coming  up after downloadi

    why do i get the following message when i attempt to open my backup file for lightroom cc?  "Lightroom cannot use the catalog named "Lightroom Catalog" because it is not writable and cannot be opened".  This message just started coming  up after downloading lightroom cc (previously using lightroom 5)...am i backing up properly or not???

    Open Pictures folder and move the files named lrcat-journal and lrcat.lock to Desktop.
    Make sure that , they are not inside Pictures folder any more and try to open backup from Lighrtroom and check..
    Any LRcat file with .lock extension , move it to Desktop.

  • I have bought this ipad with in Pakistan its used and u think its stolen from abroad now uts impossible to give it back and the content is locked such as pics whats is thecsolution now???

    I have bought this ipad with in Pakistan its used and u think its stolen from abroad now uts impossible to give it back and the content is locked such as pics whats thecsolution how can i use it? or is there any way to give it back from whom it was stolen? than what about my loss

    I have bought this ipad with in Pakistan its used and u think its stolen from abroad now uts impossible to give it back and the content is locked such as pics whats thecsolution how can i use it? or is there any way to give it back from whom it was stolen? than what about my loss

  • This Adobe Muse site file is damaged and cannot be open.

    Hi all,
    While making some edits to my muse site, my mac froze, and I waited for about 10 mins and it was still frozen--so I forced restarted my computer. Upon re-opening the file, I received the message "This Adobe Muse site file is damaged and cannot be open." I was wondering if there is any way to recover the file. I have a very recent HTML export of the site, is there a way to re-import that into a muse file? Or perhaps the file is somehow able to recover? I'm on an iMac that was just bought. It's pretty frustrating because my last backup was from two weeks ago and there have been major updates to the design of the site. At the very least, I have the latest export to copy the layout from, but my site is 50+ pages. Thanks in advance for any help.
    -Jack

    I don't have good news. The file is truncated. It's shorter than it should be and the missing information isn't something I can manufacture.
    From your description of events and looking at the information in your log file we believe you hit a rather obscure weakness in the Mac OS, or perhaps Mac hardware or the hard drives/controllers used. When an application writes to a file and requests the file be flushed to the physical media, two things occur. The first is the data is written to the physical media and the second is a table on contents on the media is updated to indicate the new length of the file. In this case it appears the Save completed successfully as far as Muse could tell (the success is reported in the log), but what probably occurred is either a very low-level OS crash and/or your restart of the computer occurred before the length of the file was updated in the table of contents.
    Unfortunately, after some time spent searching online, it doesn't appear as though there are any Mac OSX tools that will re-extend a file without altering the bytes in the newly extended area. Or at least I couldn't find any (and it makes sense for security reasons that the old data wouldn't be there when the file was re-extended). Even if there is such a tool, it's very likely other activity on your machine since the restart has already overwritten those bytes with some other file, so the missing part of the file is now gone.
    I'm sorry, but I'm not aware of any way to recover or repair your file.

  • Error occurred in deployment step 'Activate Features': Feature with Id 'GUID' is not installed in this farm, and cannot be added to this scope.

    Really frustrated!!! Using SP 2010 with VS 2010. Created a simple project with just 1 elements.xml file for adding 2 columns. Scope of the feature is "Site". When I right click and deploy it gives below error.
    Error occurred in deployment step 'Activate Features': Feature with Id 'GUID' is not installed in this farm, and cannot be added to this scope.
    If I look at the CA, I see the wsp is installed but NOT deployed (Status = "Not Deployed", "Deployed To" = None). I have checked the GUID in the error and its my feature id.
    Please let me know what is going wrong here! Thanks for your help.
    Please mark as 'Propose as Answer' or 'Vote' as appropriate.

    Hi Sagir,
    Try to check the GUID in error message to see if it’s in Feature1.Template.xml file.
    For more information, please refer to
    http://markviky.blogspot.com/2010/09/error-while-activating-feature.html
    http://alltoft.wordpress.com/2011/06/13/sp2010-error-occurred-in-deployment-step-activate-features/
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • Have installed creative cloud, but while the apps read "up to date," they are not even installed and cannot be opened. Have uninstalled and reinstalled Creative Cloud/Adobe.

    Have installed creative cloud, but while the apps read "up to date," they are not even installed and cannot be opened. Have uninstalled and reinstalled Creative Cloud/Adobe. Horribly frustrating. This is my second computer for installing creative cloud. Does that make a difference?

    Hi Jakegosselin,
    Please refer to the below article.
    http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html
    Thanks

  • "The project was saved in a newer version of premiere pro and cannot be opened in this version." - Except it wasn't!

    Last night I saved a project I've been working on for a couple of days. It's been fine all along. Today, when I went to open it, it's no longer listed in the recently opened files on startup and i get this message:
    "The project was saved in a newer version of premiere pro and cannot be opened in this version."
    Except it wasn't! I use Premiere CC and it's been fine all along. I can no longer open it at all...
    Any thoughts? Very frustrating!

    One more item.   In using PP CC2014 for the first time with this project, I have run into multiple issues making this project very frustrating.  When adding a sequence to the master sequence, I have to render the audio each time in order to see all of the audio waves. You have to keep doing this over and over, even though you've already rendered a sequence already.
    I am getting error messages when rendering the project saying there are issues compiling the movie.  Getting same type error message if I try to export.  I narrowed it down to two sequences keeping the program from rendering without the error messages.  They each had a tiff file.  I deleted them and they rendered.  Not sure what this issue was with these particular files since I have other tiff files in the project.  Once the rendering of all sequences was done, all the individual sequences were closed and the master was the only one open.  I didn't close them.  So now to edit any of the sequences I have to go back and open them.
    The only thing this project has in it are titles created in PP, a few graphics, mostly tiff tiles and some jpeg and the dissolve effect.  That's it.  Seems like they should have done more with this version before putting it out there.  Maybe that's why there are two separate applications for PP?  Who knows.  I will be uninstalling PP CC2014 when this project is complete.

  • The project was saved in a newer version of Premiere Pro and cannot be opened in this version

    I edited a project on CC on one computer and saved it on my external. My friend took the same project to edit it on her computer under her own name and licence. Both of us recently upgraded to CC. But the same project that worked a few hours back on Premiere Pro CC, does not work now also on Premiere Pro CC and I received a message saying: The project was saved in a newer version of premiere pro and cannot be opened in this version." Can you please help us.?
    Message was edited by: Kevin Monahan
    Reason: Your title was too long.

    Hi alexxxkid,
    You should be able to import the xml into an earlier version.
    Backward compatibility has never been there with Premiere and it is always recommended not to update in the middle of a project.
    As far as the crash is concerned, please tell me more about it so that i can help you to the best of my knowledge.
    Thanks,
    Rameez

  • I purchased a new Lab top and try to install my CS4 software again. I get this message:Setup has encounter an error and cannot continue.

    I purchased a new Lab top and try to install my CS4 software again. I get this message:Setup has encounter an error and cannot continue

    Have a look at this: Re: CS4 Installation on Windows 8.1 Setup error
    Basically install CS4 from a new Admin account.
    Gene

  • How can I reset the phone number under Imessage (iphone 4s unlocked tmobile ios 5.0.1)? The phone number from the person i purchased it from is grayed out and cannot be edited. Please help!

    I bought this phone from someone and then I unlocked it using that gevey sim i think -- using it for T-mobile..
    I can't get Imessage to work on my phone number because the old number is there and it is grayed out and cannot be edited.
    I can use it but not with my phone number, only with email.
    Can someone please tell me how to fix this so that I can send with my number?
    Thanks so much

    The advisor should not have told you this for legal reasons. There is no way of tracking the iPhones just of finding out which SIM cards were used to activate them and if they were activated at all. Court can authorize Apple to release this information to the count. There is no legal way without involving a judge.

  • Content area locked by a user and cannot be edited in  EP

    Hello,
    Whenever i try to enter settings for a system to integrate it with EP and close the window in a particular login,after logging off once when i try to change the settings again,it gives the message "editing is locked by that user and cannot be edited,even after changing to edit mode.
    Iam facing this problem since many days.Even after logging off many times,it doesn't allow to edit properties,and hence it becomes difficult to change even a single value.kindly help please.
    Regards,
    Somya

    hi somya,
    The lock can be removed by administrator. Until then you will get such message. if you have system admin rights, then
    Go to System administrator > Monitoring
    In detailed navigation under portal > Object locking. click that and you will get to see the locked objects. press unlock and the lock will be released.
    Regards,
    Ganesh N

Maybe you are looking for

  • How to include .jar files in coldfusion code 

    To Integrate our cfm code with paypal jar files we do the following steps with our local coldfusion server ,and to run and integrate the paypal Java SDK jar files, I think we need to do the same process on the server, can you suggest any thing to do

  • Game server: Map managing questions

    Hello everyone, I'm trying to develop some kind of RPG. I have different issues, where I need advice: 1) Map(2D) managment on game server The map I want to keep in memory on server will contain objects such as: Item, NPC, Character, etc. Item, NPC, C

  • Video sound????

    I got my iphone4 alittle over a month ago, right when I got it the first video i took, when i played it back you could barely hear the sound i tried everything but nothing worked so I figured maybe the video sound on the new iphone wasnt good until m

  • Insert into case statment

    can we use insert and update statement in case expression. like case emp_id when emp_id exist then update.... else insert.... end;

  • Invisible select option Icon

    Hi all, I am working on HR ABAP reports. I want to hide a select option icon which uses no intervals and appears as a parameters but actually a select option. suggest how to do this. thanks Sanket