Unable Unlock a User when controlled organization is not assigned as Top

Hi,
When a admin user with controlled organization and organization other than top tries to unlock a user it is throwing an error as "user has no resources assigned".
I tried assigning admin role with controlled orgnaization as Top:Example and controlled organizatios rule but still i am getting the same error.
Please give me an solution

Since you have synched the user with the same userID as that of the obsolete one. Now there exist 2 Users in LC.
But the previous one is marked with Status as OBSOLETE while the recent with status as CURRENT.
Could you please explain how are you fetching the User so that a task can be assigned?
If you are using the Client side APIs to fecth the user, then make sure when using PrincipalSearchFilter you should use principalSearchFilter.setRetrieveOnlyActive().
Have a look at the following JavaDoc,http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/javadoc/index.html
http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/javadoc/com/adobe/idp/um/api/ infomodel/PrincipalSearchFilter.html#setRetrieveOnlyActive%28%29

Similar Messages

  • Disable users when the organization to which these users belong is disabled

    Hi Alll
    I have a requirement of disabling all the users belonging to an organization when a particular organization is disabled/deleted.
    How to I proceed to achieve this?
    Do I need to create any adapeter class.If so pls guide me by giving the relevant steps.
    Thank you
    sas

    Hi Guys
    I found that my adapter is perfect.
    The problem is with invoking the adapter.
    I have written an adapter that recursively disables the users,I will paste the code below.
    I now dont understand how to invoke the adapter.I hava created a task under Xellerate User process definition and attached the adpter to it.
    The name of the task that I created is the value of the decode field that I created in lookup trigger.
    Pls tell me how do i use the adapter that I created?
    Thank you
    sas.
    Below is the auto generated code when I created Adapter
    /* Copyright (c) 2001 - 2007, Oracle Corporation. All rights reserved.
    package com.thortech.xl.adapterGlue.ScheduleItemEvents;
    import com.thortech.xl.dataobj.*;
    //import com.thortech.xl.adapterGlue.*;
    //import com.thortech.xl.dataobj.tcDataSet;
    import java.io.IOException;
    import java.util.*;
    import java.io.FileWriter;
    import java.io.File;
    import java.sql.Timestamp;
    import java.text.DateFormat;
    import com.thortech.xl.dataobj.util.tcAdapterTaskException;
    import com.thortech.xl.dataobj.util.*;
    import com.thortech.xl.dataobj.util.tcJarEntryClassLoader;
    import com.thortech.xl.remotemanager.*;
    import java.rmi.*;
    import java.net.URL;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Field;
    import java.net.*;
    public class adpDISABLEUSER extends com.thortech.xl.adapterfactory.events.tcAdpEvent {
         public adpDISABLEUSER() {
              super();
              setEventName("Disableuser");
    Hashtable ihTaskRetVals = new Hashtable();
    // Adapter Variables
    int loopVar; // Lopp Variable
    long orgKey; // Organization key
    String userKeyCname = "Users.Key"; // user key column name
    protected void implementation() throws Exception {
              try {
              if (! initAdapter("Disableuser"))
                   return;
    // Run Time Variables
    loopVar = ((Integer)getRunTimeValue("loopVar")).intValue();
    orgKey = ((Long)getRunTimeValue("orgKey")).longValue();
                   // Execute Tasks and store results in Hashtable...
    ihTaskRetVals.put("GETORGUSRLIST", GETORGUSRLIST());
    ihTaskRetVals.put("GETUSRCOUNT", GETUSRCOUNT());
    for (;loopVar < ((Integer)ihTaskRetVals.get("GETUSRCOUNT")).intValue();loopVar+=1)
    ihTaskRetVals.put("GETUSRKEY", GETUSRKEY());
    ihTaskRetVals.put("DISABLEUSER", DISABLEUSER());
              finalizeAdapter();
              } catch (tcAdapterTaskException e) {
                        e.printStackTrace();
                        updateSchItem("R", e.getMessage(), e.getReason());
                        return;
              } catch (Exception e) {
                        e.printStackTrace();
                        updateSchItem("R", e.getMessage(), getReason("", e));
                        return;
    // *** getOrgUsrList ***
    private Object GETORGUSRLIST() throws Exception {
                   Object oRetVal = "";
                   String msTaskName = "getOrgUsrList";
                   try {
                             System.out.println("Running GETORGUSRLIST");
                             Thor.API.Operations.tcOrganizationOperationsIntf moXlApi =
                             (Thor.API.Operations.tcOrganizationOperationsIntf)APITaskLocal.getUtilityOperations(getDataBase(),
                             "Thor.API.Operations.tcOrganizationOperationsIntf");
                             oRetVal = moXlApi.getListOfUsers(orgKey);
                   } catch (Exception e) {
                             e.printStackTrace();
                             try {
                                  String exClassName = e.getClass().getName();
                                  Class exCls = Class.forName(exClassName);
                                  Field msgField = exCls.getField("isMessage");
                                  String errMsg = (String)msgField.get(e);
                                  if (errMsg != null) {
                                       throw new tcAdapterTaskException("adpDISABLEUSER", "getOrgUsrList", errMsg, "", "");
                             } catch (ClassNotFoundException cnfe) {
                                  cnfe.printStackTrace();
                                  throw new tcAdapterTaskException("adpDISABLEUSER", "getOrgUsrList", e.getMessage(), "", "");
                             } catch (NoSuchFieldException nsfe) {
                                  nsfe.printStackTrace();
                                  throw new tcAdapterTaskException("adpDISABLEUSER", "getOrgUsrList", e.getMessage(), "", "");
                             throw new tcAdapterTaskException("adpDISABLEUSER", "getOrgUsrList", e.getMessage(), "", "");
                   return returnVal(oRetVal);
    // *** getUsrCount ***
    private Object GETUSRCOUNT() throws Exception {
                   Object oRetVal = "";
                   String sTaskName = "getUsrCount";
                   try {
                             System.out.println("Running GETUSRCOUNT");
                             // Load class
                             Class moTargetClass = Class.forName("Thor.API.tcResultSet");
                             // Initialize method
                             Class[] moMethodParmTypes = new Class[] {};
                             Object[] moMethodParams = new Object[] {};
                             Method moMethod = moTargetClass.getMethod("getTotalRowCount", moMethodParmTypes);
                             // Invoke method
                             oRetVal = moMethod.invoke(ihTaskRetVals.get("GETORGUSRLIST"), moMethodParams);
                   } catch (Exception e) {
                             e.printStackTrace();
                             if (e instanceof InvocationTargetException) {
                                  Throwable t = ((InvocationTargetException)e).getTargetException();
                                  throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrCount", t.getMessage(), "", "");
                             } else {
                                  try {
                                       String exClassName = e.getClass().getName();
                                       Class exCls = Class.forName(exClassName);
                                       Field msgField = exCls.getField("isMessage");
                                       String errMsg = (String)msgField.get(e);
                                       if (errMsg != null) {
                                            throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrCount", errMsg, "", "");
                                  } catch (ClassNotFoundException cnfe) {
                                       cnfe.printStackTrace();
                                       throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrCount", e.getMessage(), "", "");
                                  } catch (NoSuchFieldException nsfe) {
                                       nsfe.printStackTrace();
                                       throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrCount", e.getMessage(), "", "");
                             throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrCount", e.getMessage(), "", "");
                   return returnVal(oRetVal);
    // *** getUsrKey ***
    private Object GETUSRKEY() throws Exception {
                   Object oRetVal = "";
                   String sTaskName = "getUsrKey";
                   try {
                             System.out.println("Running GETUSRKEY");
                             // Load class
                             Class moTargetClass = Class.forName("Thor.API.tcResultSet");
                             // Initialize method
                             Class[] moMethodParmTypes = new Class[] {String.class};
                             Object[] moMethodParams = new Object[] {userKeyCname};
                             Method moMethod = moTargetClass.getMethod("getLongValue", moMethodParmTypes);
                             // Invoke method
                             oRetVal = moMethod.invoke(ihTaskRetVals.get("GETORGUSRLIST"), moMethodParams);
                   } catch (Exception e) {
                             e.printStackTrace();
                             if (e instanceof InvocationTargetException) {
                                  Throwable t = ((InvocationTargetException)e).getTargetException();
                                  throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrKey", t.getMessage(), "", "");
                             } else {
                                  try {
                                       String exClassName = e.getClass().getName();
                                       Class exCls = Class.forName(exClassName);
                                       Field msgField = exCls.getField("isMessage");
                                       String errMsg = (String)msgField.get(e);
                                       if (errMsg != null) {
                                            throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrKey", errMsg, "", "");
                                  } catch (ClassNotFoundException cnfe) {
                                       cnfe.printStackTrace();
                                       throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrKey", e.getMessage(), "", "");
                                  } catch (NoSuchFieldException nsfe) {
                                       nsfe.printStackTrace();
                                       throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrKey", e.getMessage(), "", "");
                             throw new tcAdapterTaskException("adpDISABLEUSER", "getUsrKey", e.getMessage(), "", "");
                   return returnVal(oRetVal);
    // *** disableUser ***
    private Object DISABLEUSER() throws Exception {
                   Object oRetVal = "";
                   String msTaskName = "disableUser";
                   try {
                             System.out.println("Running DISABLEUSER");
                             Thor.API.Operations.tcUserOperationsIntf moXlApi =
                             (Thor.API.Operations.tcUserOperationsIntf)APITaskLocal.getUtilityOperations(getDataBase(),
                             "Thor.API.Operations.tcUserOperationsIntf");
                             moXlApi.disableUser(((Long)ihTaskRetVals.get("GETUSRKEY")).longValue());
                   } catch (Exception e) {
                             e.printStackTrace();
                             try {
                                  String exClassName = e.getClass().getName();
                                  Class exCls = Class.forName(exClassName);
                                  Field msgField = exCls.getField("isMessage");
                                  String errMsg = (String)msgField.get(e);
                                  if (errMsg != null) {
                                       throw new tcAdapterTaskException("adpDISABLEUSER", "disableUser", errMsg, "", "");
                             } catch (ClassNotFoundException cnfe) {
                                  cnfe.printStackTrace();
                                  throw new tcAdapterTaskException("adpDISABLEUSER", "disableUser", e.getMessage(), "", "");
                             } catch (NoSuchFieldException nsfe) {
                                  nsfe.printStackTrace();
                                  throw new tcAdapterTaskException("adpDISABLEUSER", "disableUser", e.getMessage(), "", "");
                             throw new tcAdapterTaskException("adpDISABLEUSER", "disableUser", e.getMessage(), "", "");
                   return returnVal(oRetVal);
    }

  • Unable to select user when reconnecting mailbox

    Hi there,
    I am wondering if this is a bug or if anyone can help... 
    A user was accidentally deleted in AD.  We recovered the user successfully and attempted to reconnect the user's mailbox.
    When you reconnect, a dialog opens in which we are supposed to select the AD user to whom the mailbox will be connected.
    Here is the problem:
    (Windows 2003 Domain Controller, Exchange Server 2003 on same box)
    When we type in the user's login (Dialog: Select a new user for this mailbox) and click check name it returns an error message saying it can't find it
    (An object (User or Other object) with the following name cannot be found:"PatrickK" Check the selected object types and locations for accuracy and ensure that you have typed the object name correctly, or remove this object from the selection)
    Now, this is a standard AD "can't find the user" message.  This is despite the fact that we are selecting our domain.  When we click advanced and search for all users and objects, the only objects that are returned are the users and groups of the local machine; not the domain.  This occurs even when we select our domain as the object to search.  It seems to ignore it and only search the local machine directory.  The same occurs when we try to connect the mailbox to any account on our domain.
    Is this due to Exchange and the Domain Controller being on the same box?
    Any hints or comments appreciated.
    Thanks!

    Worked for me too.  Also keeps all the permissions of users to the mailbox, but you have to add any extra email addresses back after removing exchange attributes, so make note of them when you delete attributes.  
    Thanks!

  • How do I unlock the IPOD when the switch does not unlock it?

    My 5th generation IPOD was not recognized by my itunes, so I disconnected it, with the message "do not disconnect" knowing I could reset it, but then I realized that it was locked, so nothing on the wheel was active, and I cannot unlock it.

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • AM console - Unable to create Users

    I'm unable to create users under any organization through AM console. I'm getting the following error in amProfile_ldap.
    12/04/2006 10:19:03:585 AM CST: Thread[service-j2ee-2,5,main]
    WARNING: DirectoryServicesImpl.createUser(): Internal Error occurred. Unable to create User Entry
    com.iplanet.ums.UMSException: Unable to add the entry "uid=scott,ou=People,o=testorg,dc=test,dc=com"::null. Root exception is
    netscape.ldap.LDAPException: error result (65); Object class violation
    at netscape.ldap.LDAPConnection.checkMsg(LDAPConnection.java:4866)
    at netscape.ldap.LDAPConnection.add(LDAPConnection.java:2851)
    at netscape.ldap.LDAPConnection.add(LDAPConnection.java:2866)
    at netscape.ldap.LDAPConnection.add(LDAPConnection.java:2816)
    at com.iplanet.ums.DataLayer.addEntry(DataLayer.java:432)
    at com.iplanet.ums.PersistentObject.addChild(PersistentObject.java:722)
    at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.createUser(DirectoryServicesImpl.java:998)
    at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.createEntry(DirectoryServicesImpl.java:1490)
    at com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.createEntry(CachedDirectoryServicesImpl.java:349)
    at com.iplanet.am.sdk.AMObjectImpl.create(AMObjectImpl.java:1001)
    at com.iplanet.am.sdk.AMPeopleContainerImpl.createUsers(AMPeopleContainerImpl.java:190)
    at com.iplanet.am.console.user.model.UMCreateUserModelImpl.createUser(UMCreateUserModelImpl.java:356)
    at com.iplanet.am.console.user.UMCreateUserViewBean.createUser(UMCreateUserViewBean.java:490)
    at com.iplanet.am.console.user.UMCreateUserViewBean.handleBtnCreateRequest(UMCreateUserViewBean.java:368)
    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:585)
    at com.iplanet.jato.view.command.DefaultRequestHandlingCommand.execute(DefaultRequestHandlingCommand.java:183)
    at com.iplanet.jato.view.RequestHandlingViewBase.handleRequest(RequestHandlingViewBase.java:308)
    at com.iplanet.jato.view.ViewBeanBase.dispatchInvocation(ViewBeanBase.java:802)
    at com.iplanet.jato.view.ViewBeanBase.invokeRequestHandlerInternal(ViewBeanBase.java:740)
    at com.iplanet.jato.view.ViewBeanBase.invokeRequestHandler(ViewBeanBase.java:571)
    at com.iplanet.jato.ApplicationServletBase.dispatchRequest(ApplicationServletBase.java:957)
    at com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:615)
    at com.iplanet.jato.ApplicationServletBase.doPost(ApplicationServletBase.java:473)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:807)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:771)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:322)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:209)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:161)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    12/04/2006 10:19:03:597 AM CST: Thread[service-j2ee-2,5,main]
    In CachedDirectoryServicesImpl.getAttributes(SSOToken entryDN, attrNames, ignoreCompliance, byteValues) (cn=dsameuser,ou=dsame
    users,dc=test,dc=com, o=testorg,dc=test,dc=com, [sunRegisteredServiceName], true, false method.
    12/04/2006 10:19:03:598 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getAttributes(): found all attributes in Cache.
    12/04/2006 10:19:03:598 AM CST: Thread[service-j2ee-2,5,main]
    DirectoryServicesImpl.getRegisteredServiceNames() Registered Service Names for entryDN: o=testorg,dc=test,dc=com are: [iPlanet
    AMSessionService, iPlanetAMAuthMembershipService, iPlanetAMAdminConsoleService, iPlanetAMAuthService, iPlanetAMPolicyConfigSer
    vice, iPlanetAMAuthLDAPMultiService, iPlanetAMUserService, iPlanetAMAuthAnonymousService, iPlanetAMAuthConfiguration, iPlanetA
    MAuthLDAPService, SunPortalDesktopService, sunAMAuthSAMLService, srapGatewayAccessService]
    12/04/2006 10:19:03:599 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN() - looping Organization DN for entry: o=testorg,dc=test,dc=com
    12/04/2006 10:19:03:600 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN(): found OrganizationDN: o=testorg,dc=test,dc=com for: o=testorg,dc=test,dc=com
    12/04/2006 10:19:03:631 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.doesEntryExist(): entryDN: uid=amAdmin,ou=People,dc=test,dc=com found in cache & exists: true
    12/04/2006 10:19:03:642 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN() - looping Organization DN for entry: o=testorg,dc=test,dc=com
    12/04/2006 10:19:03:642 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN(): found OrganizationDN: o=testorg,dc=test,dc=com for: o=testorg,dc=test,dc=com
    I'm really not sure what change caused this to happen. I can't import any user specific ldif files through DS console as well. I appreciate if somebody guides me how to correct this?
    Thanks in advance,
    lakshmi

    Lakshmi.Panala wrote:
    I'm unable to create users under any organization through AM console. I'm getting the following error in amProfile_ldap.
    12/04/2006 10:19:03:585 AM CST: Thread[service-j2ee-2,5,main]
    WARNING: DirectoryServicesImpl.createUser(): Internal Error occurred. Unable to create User Entry
    com.iplanet.ums.UMSException: Unable to add the entry "uid=scott,ou=People,o=testorg,dc=test,dc=com"::null. Root exception is
    netscape.ldap.LDAPException: error result (65); Object class violation
    at netscape.ldap.LDAPConnection.checkMsg(LDAPConnection.java:4866)
    at netscape.ldap.LDAPConnection.add(LDAPConnection.java:2851)
    at netscape.ldap.LDAPConnection.add(LDAPConnection.java:2866)
    at netscape.ldap.LDAPConnection.add(LDAPConnection.java:2816)
    at com.iplanet.ums.DataLayer.addEntry(DataLayer.java:432)
    at com.iplanet.ums.PersistentObject.addChild(PersistentObject.java:722)
    at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.createUser(DirectoryServicesImpl.java:998)
    at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.createEntry(DirectoryServicesImpl.java:1490)
    at com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.createEntry(CachedDirectoryServicesImpl.java:349)
    at com.iplanet.am.sdk.AMObjectImpl.create(AMObjectImpl.java:1001)
    at com.iplanet.am.sdk.AMPeopleContainerImpl.createUsers(AMPeopleContainerImpl.java:190)
    at com.iplanet.am.console.user.model.UMCreateUserModelImpl.createUser(UMCreateUserModelImpl.java:356)
    at com.iplanet.am.console.user.UMCreateUserViewBean.createUser(UMCreateUserViewBean.java:490)
    at com.iplanet.am.console.user.UMCreateUserViewBean.handleBtnCreateRequest(UMCreateUserViewBean.java:368)
    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:585)
    at com.iplanet.jato.view.command.DefaultRequestHandlingCommand.execute(DefaultRequestHandlingCommand.java:183)
    at com.iplanet.jato.view.RequestHandlingViewBase.handleRequest(RequestHandlingViewBase.java:308)
    at com.iplanet.jato.view.ViewBeanBase.dispatchInvocation(ViewBeanBase.java:802)
    at com.iplanet.jato.view.ViewBeanBase.invokeRequestHandlerInternal(ViewBeanBase.java:740)
    at com.iplanet.jato.view.ViewBeanBase.invokeRequestHandler(ViewBeanBase.java:571)
    at com.iplanet.jato.ApplicationServletBase.dispatchRequest(ApplicationServletBase.java:957)
    at com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:615)
    at com.iplanet.jato.ApplicationServletBase.doPost(ApplicationServletBase.java:473)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:807)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:771)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:322)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:209)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:161)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    12/04/2006 10:19:03:597 AM CST: Thread[service-j2ee-2,5,main]
    In CachedDirectoryServicesImpl.getAttributes(SSOToken entryDN, attrNames, ignoreCompliance, byteValues) (cn=dsameuser,ou=dsame
    users,dc=test,dc=com, o=testorg,dc=test,dc=com, [sunRegisteredServiceName], true, false method.
    12/04/2006 10:19:03:598 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getAttributes(): found all attributes in Cache.
    12/04/2006 10:19:03:598 AM CST: Thread[service-j2ee-2,5,main]
    DirectoryServicesImpl.getRegisteredServiceNames() Registered Service Names for entryDN: o=testorg,dc=test,dc=com are: [iPlanet
    AMSessionService, iPlanetAMAuthMembershipService, iPlanetAMAdminConsoleService, iPlanetAMAuthService, iPlanetAMPolicyConfigSer
    vice, iPlanetAMAuthLDAPMultiService, iPlanetAMUserService, iPlanetAMAuthAnonymousService, iPlanetAMAuthConfiguration, iPlanetA
    MAuthLDAPService, SunPortalDesktopService, sunAMAuthSAMLService, srapGatewayAccessService]
    12/04/2006 10:19:03:599 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN() - looping Organization DN for entry: o=testorg,dc=test,dc=com
    12/04/2006 10:19:03:600 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN(): found OrganizationDN: o=testorg,dc=test,dc=com for: o=testorg,dc=test,dc=com
    12/04/2006 10:19:03:631 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.doesEntryExist(): entryDN: uid=amAdmin,ou=People,dc=test,dc=com found in cache & exists: true
    12/04/2006 10:19:03:642 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN() - looping Organization DN for entry: o=testorg,dc=test,dc=com
    12/04/2006 10:19:03:642 AM CST: Thread[service-j2ee-2,5,main]
    CachedDirectoryServicesImpl.getOrganizationDN(): found OrganizationDN: o=testorg,dc=test,dc=com for: o=testorg,dc=test,dc=com
    I'm really not sure what change caused this to happen. I can't import any user specific ldif files through DS console as well. I appreciate if somebody guides me how to correct this?
    Thanks in advance,
    lakshmiWhat you need to do is to check directory logs in order to see what is the specific object class violation. If your AM instance was working before, something nasty should have happened in directory. Check logs and schema files.
    Regards

  • Controlling area does not exist in assignment ?

    Hi,
    I've created & assinged controlling area to the company code , But then When I used PPOME to create org unit and assign the Controlling area , It did not exist in the list ? How can i configure this
    Thanks in advance

    Hi,
    Check in V_TKA01_GD table (assign company code to controlling area) whether controlling area is assigned to company code properly or not. If it is assigned properly then in PPOME Tcode in Account Assignment tab once you enter your company code Controlling area will be selected automatically.
    If controlling area is not assigned to company code properly then you will not able to see that in PPOME. In this case you can take help from FI consultant as they only create Controlling area and assign it to company code.
    Regards,
    GRM

  • Why itunes 10.5 64 bit wont install on my 64bit hp probook ? when i run it my user account control asks me that do you want the following program from unknown purblisher to make changes on you on this computer?  program name :itunes 64setup.exe  purblishe

    why itunes 10.5 64 bit wont install on my 64bit hp probook ? when i run it my user account control asks me that do you want the following program from unknown purblisher to make changes on you on this computer?
    program name :itunes 64setup.exe
    purblisher:unknow
    file location: hard drive on this computer when i click yes nothing happens
    aditional ateps iv taken, uninstalled all itunes including quick time,banjour mobile updates ,everthing that has to do with apple products.went into window regestry and i dint find anything that has to do with apple in software bar
    restarted my laptop several times, put the setup on a External USB but still nothing happens ,blowsed all most all sites on goggle no where iv seen this problem ,pliz who can help?

    why itunes 10.5 64 bit wont install on my 64bit hp probook ? when i run it my user account control asks me that do you want the following program from unknown purblisher to make changes on you on this computer?
    program name :itunes 64setup.exe
    purblisher:unknow
    file location: hard drive on this computer when i click yes nothing happens
    aditional ateps iv taken, uninstalled all itunes including quick time,banjour mobile updates ,everthing that has to do with apple products.went into window regestry and i dint find anything that has to do with apple in software bar
    restarted my laptop several times, put the setup on a External USB but still nothing happens ,blowsed all most all sites on goggle no where iv seen this problem ,pliz who can help?

  • Downloaded photoshop cs2. when I try and open it user account control comes up. So then when I put my pass word in installshield wizard keeps coming up.

    downloaded photoshop CS2 WhenI try and open user account control comes up. so whenI put my pass word in installshield wizard keeps coming up.

    windows' user account control requires no password.  can you attach a screenshot of the pasword prompt, FAQ: How do I capture and post a screen shot or... | Adobe Community

  • When copying pic from iPhoto 09 to a file, to burn a CD, after 35 photos it stops copying and I get "Unable to create/users/dividrublesr/ documents/I don't know what is going on.

    When copying pic from iPhoto 09 to a file, to burn a CD, after 35 photos it stops copying and I get "Unable to create/users/dividrublesr/ documents/I don't know what is going on. Forgive me for any mistakes, I am a first timer.

    Given that the file is selected then the next possibility is that you're exporting two files with the same name. When you do this the export breaks down as the second file would overwrite the first. Check the filenames.
    Regards
    TD

  • Email Notification for users when unlocking or reseting the pwd using SU01

    Dear All,
    Is it possible to send email notification to users when unlocking or reseting the password using Su01 in SAP .
    I think with workflow it can be achived . I like to know if it can be done with any inbuilt funtionality of SAP.
    regards
    Tony

    This is not a SAP standard funtionality...  I presume you'll need to create your own custom code to achive that, talk to your abaper.
    Regards
    Juan

  • When I click on the icon to start firefox, the screen dims and I get this question in a dialogue box from User Account Control....."Do you want to allow the following program to make changes to this computer"

    Every time I start firefox

    '''If you have Windows-7: Home Basic and Home Premium this works.'''
    1. Create a new text file
    2. Copy the text below into it.
    <code>
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
    "ConsentPromptBehaviorAdmin"=dword:00000000
    </code>
    3. Save as, e.g. DisableUACadmin.reg The reg extension is recognized by the registry editor.
    4. Double-click your file and accept everything.Then do PART II below.
    '''If you have Windows-7: Professional (Business), Enterprise and Ultimate Editions this works.'''
    1. From the START MENU open the Control Panel and click on the Administrative Tools icon.
    2. Double click on Local Security Policy to open it.
    3. Browse down to Local Policies and then down to Security Options
    4. In the list find: “User Account Control: Behavior of the elevation prompt for administrators in Admin Approval
    Mode” and double-click on it.
    5. Using the dropdown window change the setting to “Elevate without prompting”.
    6. Close out all your windows and do PART II below
    '''PART II'''
    For all versions of Windows-7, now you can right-click the FireFox icon and select properties. Click on the Compatibility tab and select "Run this program as an Administrator".
    No more UAC for Firefox.

  • Unable to create new user when logged as SYS or SYSTEM user. Oracle 11g

    Hello I installed oracle 11g databse. The installation went OK.
    But when I tried to create a new user or alter an existing I always got "ORA-01031: insufficient privileges".
    However I was able to alter SYS user when I was loged in as SYS or SYSTEM user when I was loged in as SYSTEM.
    I am also able to create new tables, drop tables, query tables, create and drop synonyms and all other things except manipulate with users;
    Can anybody tell me where could be the problem?
    Thanks a lot in advance.
    Message was edited by:
    user609545

    I have checked the roles DBA, RESOURCE..(I am sorry byt I dont know what is role CREATE). SYS user has all these roles with admin option and default checked.
    I am using oracle Enterprise manager, but I dont know where should I click on the red mark? Where can I find it?

  • Unable to start User Profile Sync Service

    Hi,
    I am currently facing some issues with starting the User Profile Sync Service on my SP2013 farm.. I was wondering if someone could help me out a bit.
    I have successfully installed the SP2013 farm on a environment that has access to our AD etc. and I have also
    restored the database from SP2007 and converted it to Claims authentication etc. The one thing I can’t get to work is to enable the User Profile Sync Service on the server. I have checked quite a bit of TechNet blogs and other sites and tried almost everything
    suggested but it still fails. I’ve also recreated the farm from scratch yesterday again but no luck still
    L.
    The below is what I have done:
    Farm Admin account – spadmin2013 is local admin on all SP Farm servers (2 WFE and 2 APP Servers) and has log on locally rights as well on security policy. On the SQL DB it has dbo permissions on the Sync, Profile and Social DB’s.
    Farm Service account – spservice-s is a managed farm account that is used to run the various services of the farm (used during the config wizard part).
    From within the Admin Control Panel I have verified the managed accounts and it is indeed spadmin2013 which owns the User Profile Sync Service (not the application itself). When I try to start the service it tries to do that for 5-10 minutes and then fails
    and goes back to stop and I do not see any error. I have created a custom service application with new database that runs on spadmin2013/spfarm/ldap accounts etc. I can see from the Windows services – FIM and FIMSync service try to start using the spadmin2013
    and then go back to disabled. I have also tried giving the spadmin2013 rights to replicate the AD as few blogs suggested that. I am not sure where this is going wrong or what is missing. I had successfully got this to work and still can get it to work on my
    first SP2013 server which is a standalone – running SQL, SP app and WFE on the same box.
    In fact I also tried to activate this service first before I joined my 3 other servers to the farm and had no luck. I am kinda lost here as to what is going on! 

    Right. i ran a new log as suggested. I have also cleared the config cache and created a Powershell profile as suggested in this link - http://blogs.msdn.com/b/bryanbolling/archive/2014/01/02/unable-to-start-user-profile-synchronization-service.aspx
    I checked the ULS Logs and i can see the below error -
    ILM Configuration: Validating account.
    ILM Configuration: Validating the system groups
    ILM Configuration: Setting up WMI
    ILM Configuration: Setting required permissions
    ILM Configuration: Create install config file
    ILM Configuration: Update source project
    ILM Configuration: Changing service account credentials
    ILM Configuration: Setting policy for service account
    Updating SPPersistedObject UserProfileApplication Name=User Profile Sync Service. Version: 63903 Ensure: False, HashCode: 55647834, Id: ef1ec55c-aa15-4cb7-a9fe-498382a88b4e, Stack:
    at Microsoft.Office.Server.Administration.UserProfileApplication.Update()
    at Microsoft.Office.Server.Administration.UserProfileApplication.SetupSynchronizationService(ProfileSynchronizationServiceInstance profileSyncInstance)
    at Microsoft.Office.Server.Administration.ProfileSynchronizationSetupJob.Execute(SPJobState state)
    at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)
    at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)
    SQL connection time: 131.92704 for Data Source=SPSQLAGL;Initial Catalog="Sync DB";Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name="SharePoint[OWSTIMER][1][Sync DB]"
    ILM Configuration: Configuring database
    ILM Configuration: Error 'ERR_CONFIG_DB'
    UserProfileApplication.SynchronizeMIIS: Failed to configure MIIS post database, will attempt during next rerun. Exception: System.Configuration.ConfigurationErrorsException: ERR_CONFIG_DB
    at Microsoft.Office.Server.UserProfiles.Synchronization.ILMPostSetupConfiguration.ValidateConfigurationResult(UInt32 result)
    at Microsoft.Office.Server.UserProfiles.Synchronization.ILMPostSetupConfiguration.ConfigureMiisStage2()
    at Microsoft.Office.Server.Administration.UserProfileApplication.SetupSynchronizationService(ProfileSynchronizationServiceInstance profileSyncInstance).
    UserProfileApplication.SynchronizeMIIS: End setup for 'User Profile Sync Service'.
    Updating SPPersistedObject ProfileSynchronizationSetupJob Name=ProfileSynchronizationSetupJob. Version: 63899 Ensure: False, HashCode: 36296732, Id: 7aeb377f-8bd1-453d-b6be-6a373eaf350d, Stack:
    at Microsoft.SharePoint.Administration.SPJobDefinition.Update()
    at Microsoft.Office.Server.Administration.ProfileSynchronizationSetupJob.Execute(SPJobState state)
    at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)
    at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)
    Leaving Monitored Scope (Timer Job ProfileSynchronizationSetupJob). Execution Time=6041.65717333333
    Name=Timer Job User Profile Sync Service_ProfileSynchronizationJob
    Updating SPPersistedObject ProfileSynchronizationSetupJob Name=ProfileSynchronizationSetupJob. Version: -1 Ensure: False, HashCode: 13918585, Id: 21e01df1-8772-487d-bd56-f699b3912bda, Stack:
    at Microsoft.SharePoint.Administration.SPJobDefinition.Update()
    at Microsoft.Office.Server.Administration.UserProfileApplication.StartSynchronizationServiceSetupTimer(String strSyncMachineAddress)
    at Microsoft.Office.Server.Administration.UserProfileApplication.SynchronizeMIIS()
    at Microsoft.Office.Server.Administration.ILMProfileSynchronizationJob.Execute()
    at Microsoft.Office.Server.Administration.UserProfileApplicationJob.Execute(SPJobState jobState)
    at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)
    at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)
    Updating SPPersistedObject ProfileSynchronizationSetupJob Name=ProfileSynchronizationSetupJob. Version: 63913 Ensure: False, HashCode: 13918585, Id: 21e01df1-8772-487d-bd56-f699b3912bda, Stack:
    at Microsoft.SharePoint.Administration.SPJobDefinition.Update()
    at Microsoft.Office.Server.Administration.UserProfileApplication.StartSynchronizationServiceSetupTimer(String strSyncMachineAddress)
    at Microsoft.Office.Server.Administration.UserProfileApplication.SynchronizeMIIS()
    at Microsoft.Office.Server.Administration.ILMProfileSynchronizationJob.Execute()
    at Microsoft.Office.Server.Administration.UserProfileApplicationJob.Execute(SPJobState jobState)
    at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)
    at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)
    I have verified the spadmin2013 does have dbo permissions and also is part of security & sysadmin in sql server. I run SQL 2012 with SP1

  • Unable to load Client print control

    I know this question has been asked and I have read all of the responses.  But, I seem to have a unique problem. 
    I am using Server 2008 r2 sp2 with ie8. And my problem is getting the error Unable to Load Client Print Control on the client machine for reporting services.
    The standard answer here is that the RSClientPrint.cab needs to be loaded on the client machine and installed with a click of the print icon with admin rights.  I have done that as a administrator and the print icon works fine as an adminstrator. 
    However, when I log as a non-admin user, that is when I get the error.  The rsclientprint.dll shows up in the registry, but it just does not work for a non-admin user.
    I have a open ticket with a MSDN tech at Microsoft, but he seems to be at a loss and is not trying very many things that lead me to believe that this can be resolved.
    I am wondering if some else out here has had this problem and got it to work.
    Thanks for any help.

    Hi KeithTexas,
    It seems that the non-Administrator users don't have sufficient permissions on the “Downloaded Program Files” folder where the RSClientPrint control is stored. So, please grant to the user:
    1.Open C:\Windows, right-click on the “Downloaded Program Files” folder and click “Properties”.
    2.Switch to the “Security” tab, click “Edit”.
    3.In the “Security” window, click “Add” and add the specific user to the list.
    4.Check the “Allow” box for “Read & execute” permission and click “OK”.
    Regards, 
    Mike Yin
    TechNet Community Support

  • Web Report Viewer error - Unable to load client print control.

    Dear All,
    We have a problem with Report Viewer print funtionality. Getting the error "Unable to load client print control." on click of Print button.
    We tried all solutions posted in web - nothing resolves the issue.
    The print works fine when we open the report via a browser. But the same is not working through our application. We have the application installed on the Report server itself and the user has Admin previleges.
    Please find below the details
    Report control: ReportViewerWebControl.axd
    Version: 9.0.30729.4402
    SQL server version: SQL Server 2008 R2, 10.50.2500.0 (running on Windows Server 2008 R2 - 64 bit)
    Your help on this would be highly appreciated. Please let me know if you need any specific information.
    Thanks,
    Naga
    Nagaraja

    Hi, Larry,
    Thank you for your answer which remind me and lead me to the resolution. I have struggling on this SQL Server Report Server 2012/Client printing control for
    2 days.
    I just cannot figure out why it kept prompting non-admin XenApp users for SSRS installation. Thanks for your notes again.
    I have 2008 R2 server setup as XenApp server for the publish apps. We published the IE to user to access Web application with SQL 2012 reporting service in
    the backend.
    In the control environment, users do not have permission to install any software. This SSRS has to be installed as administrator under “Install mode” in XenApp
    server.
    Yes, 32bit IE works for me but 64bit IE works too.
    You just need to ensure which version of IE you’re using to install the SSRS. I’m not aware of using 32bit IE for SSRS installation in server but publish 64bit
    IE to client.  That’s my mistake.
    Thanks again. 
    JohnnyW2012

Maybe you are looking for

  • TS1702 ipad app not loading

    All of a sudden, I can't seem to load any apps.  They set there with a gray screen and it says waiting... under it.  The problem is, they seemed frozen.  Any solution??

  • Swf to avi with alpha chanel

    Hi, It is possible to convert an swf animation (flash 8 with filters) in ".avi" with alpha channel? (The background must be transparent) I'm using a software named SWF2VIDEO, with this tool I'm able to convert my ".swf" in ".avi". Some codecs give me

  • 'On alarm' flow of the "Pick" activity thorws unexpected server error

    'On alarm' flow of the "Pick" activity does not work. It always gives unexpected server error.      Navigation: Start JDevloper ->asynchronous BPEL Process ->Pick Activity-> on alarm branch Can anyone help please thanks

  • Creating custom folders

    I created some custom folders in my business area and they were all valid, but when I log in as a user I can not see the custom folders but the other folders are there. please can someone tell me what I am doing wrong. thank you.

  • How do I search Outlook email using Windows 8?

    This was my go-to feature when using Windows 7, now it seems to be gone....