Why Kodo tries to reload deleted object?

Hello,
I'm deleting User object that has dependent child object. Child is removed
in jdoPreDelete() method. Than client application invokes different method
selecting all the Users by Extent (for different PersistenceManager
instance):
Extent userExt = pm.getExtent(User.class, true);
Iterator it = userExt.iterator();
while (it.hasNext()) {
User user = (User) it.next();
On the it.next() call I get the following exception:
javax.jdo.JDODataStoreException: The instance "253" does not exist in the
data store.
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:860)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:195)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.createFromResultSet(
JDBCStoreManager.java:700)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager$2.getResultObject(JD
BCStoreManager.java:652)
at
com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
ultList.java:168)
at
com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
a:114)
at java.util.AbstractList$Itr.next(AbstractList.java:416)
at
com.solarmetric.kodo.runtime.ResultListIterator.next(ResultListIterator.java
:49)
at
com.solarmetric.kodo.impl.jdbc.runtime.ResultListFactory.createResultList(Re
sultListFactory.java:85)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.executeQuery(JDBCSto
reManager.java:646)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCExtent.getIterator(JDBCExtent.jav
a:49)
at
com.solarmetric.kodo.runtime.ExtentImpl$TransactionAwareIterator.newIterator
(ExtentImpl.java:219)
at serp.util.MultiIterator.setIterator(MultiIterator.java:70)
at serp.util.MultiIterator.hasNext(MultiIterator.java:25)
at
com.solarmetric.kodo.runtime.ExtentImpl$TransactionAwareIterator.hasNext(Ext
entImpl.java:195)
at
net.xtrim.crm.system.persistence.UserFactory.getUsers(UserFactory.java:121)
at net.xtrim.crm.user.ejb.UserFacadeBean.getUsers(UserFacadeBean.java:106)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:660)
at
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(Cach
edConnectionInterceptor.java:186)
at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:77)
at
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor
..java:107)
at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:151)
at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:60)
at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:13
0)
at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:204)
at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:313)
at org.jboss.ejb.Container.invoke(Container.java:712)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at
org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:382)
at sun.reflect.GeneratedMethodAccessor50.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
at sun.rmi.transport.Transport$1.run(Transport.java:148)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:7
01)
at java.lang.Thread.run(Thread.java:536)
Am I doing something wrong?
P.S. Everything works fine if User has no child reference.

I've disabled PMF cache but it didn't help.... :(
"Patrick Linskey" <[email protected]> wrote in message
news:[email protected]...
A temporary workaround is to disable the PMF cache.
-Patrick
Alexey Maslov wrote:
Hello,
I'm deleting User object that has dependent child object. Child is
removed
in jdoPreDelete() method. Than client application invokes different
method
selecting all the Users by Extent (for different PersistenceManager
instance):
Extent userExt = pm.getExtent(User.class, true);
Iterator it = userExt.iterator();
while (it.hasNext()) {
User user = (User) it.next();
On the it.next() call I get the following exception:
javax.jdo.JDODataStoreException: The instance "253" does not exist inthe
data store.
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:860)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:210)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at com.solarmetric.kodo.runtime.PCData.lookup(PCData.java:518)
at com.solarmetric.kodo.runtime.PCData.getData(PCData.java:494)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:195)
at com.solarmetric.kodo.runtime.PCData.load(PCData.java:112)
at
com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.initialize(Data
CacheStoreManager.java:221)
at
com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerI
mpl.java:112)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(Pers
istenceManagerImpl.java:859)
at
com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(Persistenc
eManagerImpl.java:781)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.createFromResultSet(
JDBCStoreManager.java:700)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager$2.getResultObject(JD
BCStoreManager.java:652)
at
com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
ultList.java:168)
at
com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
a:114)
at java.util.AbstractList$Itr.next(AbstractList.java:416)
at
com.solarmetric.kodo.runtime.ResultListIterator.next(ResultListIterator.java
:49)
at
com.solarmetric.kodo.impl.jdbc.runtime.ResultListFactory.createResultList(Re
sultListFactory.java:85)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.executeQuery(JDBCSto
reManager.java:646)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCExtent.getIterator(JDBCExtent.jav
a:49)
at
com.solarmetric.kodo.runtime.ExtentImpl$TransactionAwareIterator.newIterator
(ExtentImpl.java:219)
at serp.util.MultiIterator.setIterator(MultiIterator.java:70)
at serp.util.MultiIterator.hasNext(MultiIterator.java:25)
at
com.solarmetric.kodo.runtime.ExtentImpl$TransactionAwareIterator.hasNext(Ext
entImpl.java:195)
at
net.xtrim.crm.system.persistence.UserFactory.getUsers(UserFactory.java:121)
at
net.xtrim.crm.user.ejb.UserFacadeBean.getUsers(UserFacadeBean.java:106)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:660)
at
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(Cach
edConnectionInterceptor.java:186)
at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:77)
at
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor
..java:107)
at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:151)
at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:60)
at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:13
0)
at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:204)
at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:313)
at org.jboss.ejb.Container.invoke(Container.java:712)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at
org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:382)
at sun.reflect.GeneratedMethodAccessor50.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
..java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
at sun.rmi.transport.Transport$1.run(Transport.java:148)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
at
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:7
01)
at java.lang.Thread.run(Thread.java:536)
Am I doing something wrong?
P.S. Everything works fine if User has no child reference.
Patrick Linskey [email protected]
SolarMetric Inc. http://www.solarmetric.com

Similar Messages

  • Querying deleted objects container in Active Directory using JNDI

    Hi,
    I am trying to query deleted objects container using JNDI which fails with error 64.
    Has anyone seen this or knows how to query AD using binary data in JNDI.
    Seems to me there is some problem with the search base.
    search base: <GUID=18E2EA80684F11D2B9AA00C04F79F805,dc=engserver,dc=com>.
    filter: objectclass=*
    search scope: subtree
    This is the error:
    Search example failed.
    javax.naming.InvalidNameException: <GUID=18E2EA80684F11D2B9AA00C04F79F805,dc=eng
    server,dc=com>: [LDAP: error code 64 - 00000057: LdapErr: DSID-0C090563, comment
    : Error processing name, data 0, v893 ]; remaining name '<GUID=18E2EA80684F11D2B
    9AA00C04F79F805,dc=engserver,dc=com>'
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2802)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2616)
    at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1744)
    at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1667)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirCon
    text.java:368)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
    positeDirContext.java:328)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
    positeDirContext.java:313)
    at javax.naming.directory.InitialDirContext.search(InitialDirContext.jav
    a:245)
    at jSearch.main(jSearch.java, Compiled Code)
    Thanks,
    Chetan

    I thought I had posted one of these. How remiss of me !/**
    * deleted.java
    * 5 July 2001
    * Sample JNDI application to search for deleted objects
    * Modified December 2004 to add Win2K3 lastKnownParent
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    import com.sun.jndi.ldap.ctl.*;
    class DeletedControl implements Control {
         public byte[] getEncodedValue() {
              return new byte[] {};
         public String getID() {
              return "1.2.840.113556.1.4.417";
         public boolean isCritical() {
              return true;
    public class deleted     {
         public static void main (String[] args)     {
              Hashtable env = new Hashtable();
              String adminName = "CN=Administrator,CN=Users,DC=ANTIPODES,DC=COM";
              String adminPassword = "XXXXXX";
              String ldapURL = "ldap://mydc.antipodes.com:389";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   //Create the initial directory context
                   LdapContext ctx = new InitialLdapContext(env,null);
                   //Create the search controls           
                   SearchControls searchCtls = new SearchControls();
                   //Specify the attributes to return
                   String returnedAtts[]={"distinguishedName","lastKnownParent"};
                   searchCtls.setReturningAttributes(returnedAtts);
                   //Specify the search scope
                   searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(isDeleted=TRUE))";
                   //Specify the Base for the search
                   String searchBase = "DC=antipodes,DC=com";
                   //initialize counter to total the results
                   int totalResults = 0;
                   //specify the Deleted control
                   Control[] rqstCtls = new Control[] {new DeletedControl()};
                   ctx.setRequestControls(rqstCtls);
                   //Search for objects using the filter
                   NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
                   //Loop through the search results
                   while (answer.hasMoreElements()) {
                        SearchResult sr = (SearchResult)answer.next();
                        totalResults++;
                        System.out.println(totalResults + ". " + sr.getName().toString());
                        // Print out some of the attributes, catch the exception if the attributes have no values
                        Attributes attrs = sr.getAttributes();
                        if (attrs != null) {
                             try {
                                  for (NamingEnumeration ae = attrs.getAll();ae.hasMore();) {
                                       Attribute attr = (Attribute)ae.next();
                                       System.out.println("Attribute: " + attr.getID());
                                       for (NamingEnumeration e = attr.getAll();e.hasMore();System.out.println("   " + e.next().toString()));
                             catch (NullPointerException e)     {
                             System.err.println("Problem listing attributes: " + e);
                   System.out.println("Deleted objects: " + totalResults);
                   ctx.close();
              catch (NamingException e) {
              System.err.println("Problem searching directory: " + e);
    }

  • Error - Trying to delete objects (Positions)

    Via Report RHRHDL00, I am trying to delete a few positions, I created for Testing.
    I am getting error u201C STOP: The information entered is incorrect, Cost Center missing . Please contact your SAP Rep before completing this.
    I am getting the same error via Tcode RE_RHRHDL00
    Why should I get this error, when I am just deleting objects?
    Please help.

    You can use the above report  to delete the OM object. However first remove the OM and PA integration  if the postion is still assigned and then execute.
    In case you want to delete the person completely you can use the program RPUDELPN.

  • HT1600 My apple tv stopped working during a movie. I tried to reload software .it deleted it, but won 't reload it.

    My apple tv stopped working during a movie. I tried to reload software .it deleted it, but won 't reload it.

    Welcome to the Apple Community Turbomedic.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
        1.    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
        2.    Connect the micro USB cable to the Apple TV and to your computer.
        3.    Reconnect the power cable (only for Apple TV 3)
        4.    Open iTunes.
        5.    Select your Apple TV in the Devices list, and then click Restore.
    (You may already have a micro USB cable if you have a camera or other digital device)

  • My husband was trying to reload and delete printers and he some how reset many settings on his mac book pro - how does he go back and set everything for earlier today

    My husband was trying to reload and delete printers and he some how reset many settings on his mac book pro - how does he go back and set everything for earlier today

    As Terence said you're experiencing a kernel panic. Boot into your System install disk and launch Disk Utility from the Utilities menu in the first window after the language selection window. Repair the disk. If DU finds problems and runs repairs do it a second time and then reboot.

  • Trying to recover deleted imessages, also wondering why there is only 1 back up after weekly syncs.

    Hi All,
    I am trying to recover deleted imessages from my iphone 5s .  I planned to restore the phone to a previous back up,  however,  I am only showing one back up in Jan 2014 and another in Dec. 2014, with nothing in between.  I can't understand this as I sync my phone at least once a week.
    I have tried Dr. Fone (Wondershare) on trial basis but it only seems to pull up a few messages, not all.  I tried the trial of Tenorshare and it pulled up nothing except media files.   
    I have tried to look in my computer Library for back ups but nothing shows there, no 'messages' folder or other imessage back up archive. 
    I am on a MacBook pro 10.7.5  Lion 

    You see the backups in iTunes->Preferences->Devices.
    The "sync" backups overwrite everytime. You can have an extra backup when you do not a "sync" but click the button "Backup now" (a new backup is made which will be overwritten when you do this again). That backup (with date) will appear next to the "sync" backup. There are two backups in total possible.

  • Deleted Objects is empty. Why?

    Hello. Today i've faced with the situation, when there is a need to recover a deleted object in Active Directory. Being guided by the instructions I've got an access to hidden volume DeletedObjects, but it was empty. Tombstonelifetime parameter is 180,
    so what's wrong with AD configuration? Domain has 2012R2 level.

    Also you can use below one liner.
    ldifde -x -d "cn=deleted objects,dc=contoso,dc=com" -f delobjs.ldf
    In addition have a look.
    http://social.technet.microsoft.com/wiki/contents/articles/30346.active-directory-objects-restoration.aspx
    Regards,
    Biswajit
    MCTS, MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, Enterprise Admin, ITIL F 2011
    Blog:
      Script Gallary:
    LinkedIn:
    Note: Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights..

  • Hyper-V encountered an error trying to access an object on computer 'localhost' .....- When try to install new Virtual machin in win8, 64 bit

    am using windows 8, 64 bit system inside VMWARE in Ubuntu 14.04 . I have intel core i3 processor.
    I want to install WIndows-7 inside windows 8 as a virtual machine. SO I tried to use "HYPER V MANAGER" with elevated privilege. wHEN I TRY , NEW->VM Machine->'after some steps'-> when I press Finish I get following error,
    [Window Title]
    New Virtual Machine Wizard
    [Main Instruction]
    Hyper-V encountered an error while configuring the network on Windows7_32bit.
    [Content]
    Hyper-V encountered an error trying to access an object on computer 'localhost' because the object was not found. The object might have been deleted, or you might not have permission to perform the task. Verify that the Virtual Machine Management service on the computer is running. If the service is running, try to perform the task again by using Run as Administrator.
    [Close]
    my understand is: "we can use Hyper v, instead of Virtual box or as VMware player". I think in windows 8, hyper v server is not installed. does that is the problem? Why do we use it ?
    Actually I wanna configure Kernel Debugging over Virtualized COM port. So what can I do next ?  please help me...
    Note: Virtual Machine Management service  is running.

    Hi mrCracker,
    >>am using windows 8, 64 bit system inside VMWARE in Ubuntu 14.04 .
    If I understand correctly , it is nested installation .
    Windows Hyper-v is bare-metal hypervisor  .
    Please try to install win8 on real hardware then enable hyper-v to install VM .
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I am trying to reload iPhoto

    HI
    Iam trying to reload Iphoto from the app store,i had to delete app because i had old apple id attached to it so now i am trying to reload and it keeps coming up with accept icon and the od id info please help how do i remove?

    iPhoto on your particular Mac can only be updated by the Apple ID that originally accepted it. Why did you create a new Apple ID?

  • BW variable: Inconsistent in loading. please check use of deleted objects

    Hi Experts,
    I encountered an error and can not solve it following OSS note.
    When I create a variable in query definition for an infoobject, it prompts an error dialog 'Inconsistent in loading. please check use of deleted objects'.
    I checked the OSS notes 792779, there is a such description:
    The variable existing in the table RSZGLOBV, but not existing in the tables RSZELTDIR or RSZCOMPDIR have inconsistent definition. These situation may return 2 different error messages. When a variable is missing in RSZELTDIR table (or in both together), an attempt to expand a list of variable under a corresponding InfoProvider or a list of text/formula variables will return a message 'Inconsistency in loading...'. All variables which are created for corresponding InfoProvider, text/formula variable are not available. When a variable is missing in the RSZCOMPDIR table only the error message is 'Missing UID XXXXXX... in RSZCOMPDIR! You may continue to work, but this component is not loaded' in Query Designer
    But I checked these tables RSZGLOBV and RSZELTDIR and RSZCOMPDIR. I can find a variable for this infoobject, such as TC_SREG, in these tables. That is, this variable should be availbale in the query definition.
    I don't know why.
    My sap bw is 3.1, without the program 'ANALYZE_RSZ_TABLES'.
    Many thanks for you help.

    Hi,
    While installing business content make grouping as Data Flow before and collection mode as 'Automatic'.  Then expand the Tree in the tree you can see Info Object Catalogue.  All installed and activated object will be in green (Active Mode). those will be normally unchecked to install anyway cross check and if found anything check deselect them.  Go for Simulation Installation to identify unforeseen errors.  Install the same and activate entire data-flow.
    Hope your issue will be resolve
    Thanks
    BVR

  • Hyper-V encountered an error trying to access an object on computer ...

    I'd like to share an issue which occurred during one of my recent configurations as well as the associated solution which worked for me.
    While configuring Hyper-V Manager on a non-domain joined Windows 8.1 Enterprise client, to communicate with a non-domain joined Microsoft Hyper-V Server 2012R2, I received the following enjoyable message:
    Hyper-V encountered an error trying to access an object on computer '.....' because the object was not found. The object might have been deleted. or you might not have permission to perform the task. Verify that the Virtual Machine Management service
    on the computer is running. If the service is running, try to perform the task again by using Run as Administrator.
    As it turns out I forgot to change the machine name on the Hyper-V server. It's worth noting that it's also necessary to add an entry in the client machine's HOSTS file which matches the computer name of the Hyper-V server.

    Hi ITMAGE,
    Thanks for your sharing and support for this forum .
    It should be helpful to other people who are facing this issue .
    Best Regards,
    Elton JI
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to determine deleted objects in a transport

    Hi
    I create a new report Z_TEST_1 and assign this one to a new transport request.
    Now I rename this report to Z_TEST_1B
    In my transport are two entries:
    -Z_TEST_1
    -Z_TEST_2
    Now I read this objects with function module TR_READ_COMM
    Afterwards I want to analyse the objects of this transport
    But how can I see which objects exists and which not?
    I only need the (still) existing objects (in my test case: Z_TEST_2)
    I don't want to check every single object if this object still exists. I know I could check the entry in table TRDIR (for reports).
    But there are a lot more object kinds in my transport (function modules, dictionary objects, forms, table keys)....
    Does anyone have a simple solution for this problem?
    Thanks
    Andy

    Hello There.
    SE03 is for finding the existing objects according to your first question (for function modules, reports, etc).
    As your object is not imported or transported.
    You need to find your deleted objects in Transaction SE95.
    In the window beneath,
    1. Go to window, Reset Objects.
    2. Check the deleted objects.
    3. You can also mention your request or package.
    4. Execute.
    5. Go to Deleted objects node.
    6. Navigate to the node desired.
    7. You can also find the request related to that business object by clicking on find requests.
    These are the logs.
    If you have already tried out then its good or else give feedback.
    Good Luck & Regards.
    Harsh Dave

  • Re-using a deleted object name

    Using 7.01.230 on a Windows 7 professional machine
    An annoyance at best but I was wondering why I can't re-use a name for an object or a group if the previous object or group has been deleted from the project. Sometimes, clients want a new/update image inserted on a slide or into a group. I like to keep my naming conventions as short and simple as possible, so why can't I just delete the old image or object, insert the new one, and insert the previous name assigned in the properties tab without seeing this:
    just wondering - I know I can add a number to the end of the old name, capitalize, etc, etc - it just seems like if it the object has been deleted, the name should go away too, doesn't it?
    Justenuf

    Lilybiri, here is a deal.
    You start with a new request and share it with us offline (DM on twitter or PM here). We all will pitch in with a similar request at regular intervals. If by any chance the Captivate team goes by the number of requests received for a feature to incorporate in the next release, we would have got it covered. It is a win-win for all of us.
    Sreekanth

  • SPAU. Adjusting Deleted Objects

    Hi all,
    My manager has asked me to review SPDD and SPAU after an upgrade. In Deleted Objects, I have seen some dictionary objects in particular we have several "Table Indexes" here.
    Why has SAP deleted these table index? I haven't seen other changes in the tables that justify the index deletion...   
    Is there some habitual process for adjusting the deleted objects after the upgrade?
    Its urgent please.
    Thanks to all for helping me.
    I.

    Hi Prabhu,
    Thank you for your help. I haven't found any TR for the table of these index (neither SAPKxxxx nor other) although I have been searching directly in E071K (TRKORR = *, OBJNAME = tab_name).
    Otherwise, my main bother is that without these index we get some performance problems or if some of the other deleted objects are still in use in any bespoken development.
    Do you now if during an upgrade SAP makes some checking before to delete the deleted objects (use references of some like this). Relative to this I found the report RADFDSAV but I haven't found information about it.
    Thank you in advance.

  • Deleted objects and nstombstone objectclass

    Hi,
    When i delete objects in DS5.0 with ldapdelete, DS5.0 create an objectclass nstombstone for all the deleted objects.
    I can see them with ldapsearch ... (objectclass=nstombstone). Then, the size of the file id2entry.db3 increase.
    I use a multi master replication between two servers and the id2entry's file sizes increases on the two server.
    Why does DS5.0 create this objects and how can i delete them ?
    Thank you for you help,
    Guillaume

    Directory Server 5.0 provides support for MultiMaster Replication. As changes can be done on 2 masters as the same time, the server may have to resolve some conflicts and therefore must maintain an historic of all changes that occured. The way to keep track of deleted entries is by marking them with a special objectclass and making sure they are not returned in regular searches (actually the only way to retrieve them is by specifying a filter objectclass=nsTombstone).
    The server does some cleanup on a regular basis and has a thread that removes very old deleted entries. By default, these entries are removed after a week. You can reduce this age by changing the nsds5ReplicaPurgeDelay attribute value but note that this will also reduce the accepted delay of broken replication (and the age of a restored backup).
    The result of setting a too small value would be that in case of problem, all the consumers will need to be re-initialized.
    Regards,
    Ludovic.

Maybe you are looking for

  • IPOD TOUCH NOT RECOGNISED BY ITUNES

    i have tried everything the site says about reinstalling etc... any suggestions?

  • Home Network and Wifi Privacy

    We have 3 computers - a desktop, a laptop, and a teen's laptop.  All running Window 7.  Desktop is wired to router, laptops on Wi-Fi.  We need the laptop and desktop to share printer, files, folders, and all actions.  The teen needs to be able to acc

  • I've just updated my imac 21.5. how do i transfer files from my old imac to my new imac?

    Help! I've had an iMac 21.5 for approximately 3.5 years. I have Aperture 3 (with loads photos) and iTunes etc on my current iMac. I have just bought a new 21.5 iMac with all the latest upgrades etc. As of yet I have not even taken the new iMac out of

  • Cl_wd_table - enable/disable certain cells

    Hello together, I'm looking for a good solution to enable/disable certain cells in a table. For example I have the following table (the real table is more complex - with buttons and so on...): User ToDo State A Todo1 Done B Todo2 In Process A Todo3 I

  • Mp4 or m4v ?

    Hi, I have a projet, for example, 24 minutes long, If shared to iTunes, checking HD 720P,  it becomes  a M4V file,  1.28 Gb big. If shared to "file", also checking HD 720P,  it becomes  a MP4 file, 2.24 Gb big ! What is the difference? Why the size i