Can't create root entry

Ok guy's bit of a silly one !
created new root suffix, now trying to create new root object,
however getting error mesage, must be Directory Manager,
now, this is the strange bit !, I am directory manager.
Any ideas ?
TIA

Are you sure you are directory manager? Check the access log on the directory server to see what is happening.

Similar Messages

  • How Can I Create One Entry Sheet For Multiple Line Items of A PO

    Please Tell Me How Can I Create One Entry Sheet For Multiple Line Items of A PO

    hi,
    It is not possible to create single Service Entry sheet for multiple PO line items. It is 1 to 1 relation.
    you have to make different service entry sheets for different item of service master.
    regards
    Manish Joshi

  • Can we create default entry of operation/phase# in CORZ/CORS tranactions?

    Hi,
    I want to make field operation/phase to appear default while entering confirmation using CORZ and cancelling confirmation using CORS. Can you please let me know how this can be acheived? There are only 2 operations in master reciepe and would like to have operation#0020 to appear default while entering and cancel confirmation function.
    Thanks in advance.
    Nitin

    The easiest way is to create transaction variant through SHD0 for CORZ and CORS to default some values for certain transaction.
    Regards,
    Rachel

  • Create service entry sheet against service PR

    HI expert
    Can we create service entry sheet against service PR?
    If yes, can you show me the step in system?Thanks!
    Regards
    Mark

    No you can not create Service entry sheet against service PR. The purpose of creating pr is just requestion for  purchase of services or material. This is required for internal purpose even in pr ur not maintaining Vendor details, conditions. If you see standard business process with ref. to pr we creating po than service entry sheet. So in standard business process every documents have own purpose / value.

  • Create an entry into NAST table without Message control(NACE)

    Hi,
    Can we create a NAST entry for any application (say SO or PO), without using mesage control(NACE), i.e., can we create NAST entry physically with PO or SO data that is available.
    Thanks,
    Kashif

    HI Narendran,
    First thanks for your reply, second, how could i get multiple idoc's with one output type? where do i need to assign the program and form routine in Output type(Nace)? and what would be my logic ( i guess take the header data then item with plants....get lets say 3 plants...then)? could you please explain what you mean by your previous replies. Waiting for ur reply.
    Thanks
    Kashif

  • Can you create a .ics file from entries in a PDF?

    Hi,
    I'm wondering if anyone can help me: Can you create a .ics file from entries in PDF?
    Example:
    I'm wanting people to be able to choose a number of dates for some events within a PDF, then click a button that will then create a (or number of) .ics files so they can add those dates to the calendar of their choice. Is this possible?
    Thanks

    Using the solution supplied by Leonia, and cited by Keith, you can do the same thing (flopping the Curve profiles) in LightRoom. So, it makes sense. Though I didn't know know it worked for Color Negatives.
    A friend of mine with a Nikon Coolscan is going to scan nearly 150 B&W rolls of 35mm negatives for me, and I want to import them all into Aperture, naming and keywording as I go. The objective is, of course, to have the convenience of a diigtal library. But also to have some made into large prints for framing.

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • I Can't create and add en entry in Ldap using Java

    Hello there,
    I'm pretty new to LDAP programming, and I have been trying to create and add an entry to a directory using the code sample provided in the JNDI tutorial, but for some reasons, I didn't manage.
    the configuration file is well set up because I can't create, add, delete and modify just about anything I want from openLDAP command lines, but my real problem is to do it with java.
    here is my code:
    import java.util.Hashtable;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    import javax.naming.*;
    import javax.net.ssl.*;
    import java.io.*;
    public class Newuser
         public static void main (String[] args)
              //LDAPEntry myEntry = new LDAPEntry();
              Hashtable<String, String> env = new Hashtable<String, String>(11);
              String adminName = "CN=ldap_admin,o=JNDITutorial,dc=img,dc=org";
              String adminPassword = "xxxxxx";
              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, "ldap://localhost:389/o=JNDITutorial,dc=img,dc=org");
                   // Create the initial directory context
                   //JNDILDAPConnectionManager jndiManager = new JNDILDAPConnectionManagerImpl();
                  try{
                       DirContext ctx = new InitialDirContext(env);
                        System.out.println("Connection to LDAP server done" );
                       final String groupDN ="ou=people,o=JNDITutorial,dc=img,dc=org";
                      //DirContext dirCtx = jndiManager.getLDAPDirContext();
                      People people = new People("Thiru","Thiru","Thiru Ganesh","Ramalingam","ou=people","[email protected]");
                      // The Common name must be equal in Attributes common Name
                      ctx.bind("cn=Thiru," + groupDN, people);
                      System.out.println("** Entry added **");
                      //jndiManager.disConnectLDAPConnection(ctx);
                  }catch(NamingException exception){
                      System.out.println("**** Error ****");
                      exception.printStackTrace();
                      System.exit(0);
    }adn this is the class People that i want to instantiate
    import java.util.Hashtable;
    import javax.naming.Binding;
    import javax.naming.Context;
    import javax.naming.Name;
    import javax.naming.NameClassPair;
    import javax.naming.NameParser;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.*;
    public class People implements DirContext {
         public People(String uid,String cn,String givenname,String sn,String ou,String mail) {
        BasicAttributes myAttrs = new BasicAttributes(true);  //Basic Attributes
        Attribute objectClass = new BasicAttribute("objectclass"); //Adding Object Classes
        objectClass.add("inetOrgPerson");
        /*objectClass.add("organizationalPerson");
        objectClass.add("person");
        objectClass.add("top");*/
        Attribute ouSet = new BasicAttribute("ou");
        ouSet.add("people");
        ouSet.add(ou);
        myAttrs.put(objectClass);
        myAttrs.put(ouSet);
        myAttrs.put("cn",cn);
        myAttrs.put("sn",sn);
        myAttrs.put("mail",mail);
    }as I said, I can add the new entry using an LDIF file "new.txt" that looks like this:
    dn:cn=Hamido Saddo,ou=People,o=JNDITutorial,dc=img,dc=org
    cn:Hamido Saddo
    mail:[email protected]
    telephonenumber:3838393038703
    sn:hamido
    objectclass:top
    objectclass:person
    objectclass:organizationalPerson
    objectclass:inetOrgPersonusing the following command:
    ldapadd -D "cn=ldap_admin,o=JNDITutorial,dc=org,dc=img" -W -f new.txtand eveything works
    but when i try with the java, i get the following error:
    javax.naming.directory.SchemaViolationException: [LDAP: error code 65 - entry has no objectClass attribute]
    so, can anyone help me please !!!

    uncomment these lines
    /*objectClass.add("organizationalPerson");
    objectClass.add("person");
    objectClass.add("top");*/
    you need all of them to add successfully
    your LDIF has all the four lines
    objectclass:top
    objectclass:person
    objectclass:organizationalPerson
    objectclass:inetOrgPerson
    hope this helps

  • Can Dreamweaver create the remote root directory?

    Hi,
    Does Dreamweaver have the capability to create the remote
    root directory? As an example, if I define a remote site and I set
    the host directory to public/site3 where the public directory
    already exists on the server but site3 directory does not, can
    Dreamweaver create the site3 folder? Other programs will notify
    that the directory does not exist and ask if you'd like for it to
    be created. Dreamweaver just seems to give me error messages.
    I'm currently using a straight FTP program to create the
    directory before I define the remote site but it seems ridiculous
    to have to do this.
    Thanks!
    Julie

    > can Dreamweaver create the site3 folder?
    Sure.
    But - what do you expect this to do for you? Are you trying
    to have
    multiple sites on a single hosting account?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "[email protected]"
    <[email protected]> wrote in message
    news:fbutc7$88f$[email protected]..
    > Hi,
    >
    > Does Dreamweaver have the capability to create the
    remote root directory?
    > As
    > an example, if I define a remote site and I set the host
    directory to
    > public/site3 where the public directory already exists
    on the server but
    > site3
    > directory does not, can Dreamweaver create the site3
    folder? Other
    > programs
    > will notify that the directory does not exist and ask if
    you'd like for it
    > to
    > be created. Dreamweaver just seems to give me error
    messages.
    >
    > I'm currently using a straight FTP program to create the
    directory before
    > I
    > define the remote site but it seems ridiculous to have
    to do this.
    >
    > Thanks!
    > Julie
    >

  • Can I create a rightclick (shell) entry to PSE 9?

    Hello,
    Is it possible to create an entry in the shell (rightclick menu on a file) like "add to Photoshop Elements Catalog"?
    best regards

    The other method is to create a desktop icon and then you can select a bunch of images and drag and drop on to the Organizer icon.
    Try making a direct desktop icon for the Organizer and that will bypass the welcome screen and any advertising.
    On Windows right click on the desktop and select New >> Shortcut
    Browse to Computer OS C:
    And find the PSE Organizer application in Program Files or Program Files (x86) on Windows 7 - 64 bit.
    Inside the Adobe >> Photoshop Elements Organizer (yellow folder) you are looking for an application file “PhotoshopEementsOrganizer” with six small icons (e.g. representing thumbnails)
    Select it and click OK
    Click next
    Rename by taking out Photoshop Elements leaving just the word Organizer
    Then click finish
    You should now be able to launch directly form the desktop by double clicking on the icon.
    You can set up a similar direct link to the Editor application (.exe file which has the blue PSE icon). As before take out Photoshop Elements just leaving the description Editor and it will show up clearly on the desktop.

  • Can not create entries in httpurlloc in SAPNW2004s SneakPreviewABAP

    Hello Comunity,
    I have SneakPreview SAPNW2004s Abap Version installed and now I try to configure the HTTPURLLOC in SE16 for Reverseproxy-Scenarios. Anyway I can´t create entries, "The system settings do not allow any changes".
    Anyone tried that before or run in the same problem?
    I already checked SDN, there are some entries how to switch to debug mode but I´m not sure if this is the right way. Maybe I only miss something.
    Regards

    Hi,
    we had the same problem in the sneak preview, it seems to be a feature that was switched off on purpose, because it's just a preview system for playing around, in the normal development systems it's no problem to change HTTPURLLOC. It might just be the same as with HTTPS which is not included in the sneak preview.
    Regards, Heidi

  • How can I know if a manually created Journal Entries has not been paid yet?

    Hi There.
    I'm passing through the following situation: I need to find out which Journal Entries that have been manually created ( TransType = 30 ) don't have an Outgoing Payment record associated
    Lets suppose that I manually created a Journal Entry. Let's call it OJDT_MAN
    Then, I went to the Outgoing Payments Form ( Modules -> Banking -> Outgoing Payments -> Outgoing Payments ) and paid OJDT_MAN.
    This process will create another Journal Entry. Let's call it OJDT_AUTO.
    I can't find in the database anything that indicates that OJDT_MAN has already been paid. I tried looking for a Status field; Checking if OJDT_AUTO had some code that could get me to OJDT_MAN ( I found BaseRef and TransType = 46, that can guide me to the new OVPM record ); Tried looking at the new OVPM record for some field that could lead me to OJDT_MAN, but I had no success at all...
    So, in resume, and again, how can I know if a manually created Journal Entry hasn't been paid?
    (When I go to the Outgoing Payments Form and select a Business Partner, it B1 shows me only the not paid ones... How does he knows it? )

    Just to make it more clear, the SQL we were looking for is this:
    Select
    From
      OJDT
    Where
      OJDT.TransId Not In ( Select VPM2.DocEntry From VPM2 Where VPM2.InvType = 30 )
      And
      OJDT.TransType = 30

  • How can I create a new entry without using LOV for foreign keys.

    Referring to TUHRA sample application based on HR database schema. JDeveloper 10.1.3.0.4
    How can I create a new employee without using LOV for the foreign key "job_id".
    On the first page I would like to choose the job_title from adf read-only table.
    After clicking on the "create new employee button" a creation form appears in which the job_id field is set with previous selection.
    Regards M.Winkler
    Edited by: user3541283 on 06.10.2008 03:44
    Edited by: user3541283 on 06.10.2008 03:50

    Hi,
    usually the foreign key is only set if the VO you select is dependent from a master. If e.g. you have DepartmentsVO1 that has an EmployeeVO3 as its nested VO, then creating a new instance of employees automatically add the foreign key. If you add EmployeesVO1, which is not dependent to DepartmensVO1, then the foreign key is not set. So if this is the case in THURA (keep in mind that this is not an Oracle demo but a sample used in a book about ADF) then all you need is to take the independent VO when building the new employee form.
    Frank

  • Hi can anyone please tell me how to create a entry in TBEO1?

    hi experts,
    plz help me , i want to configure fkk_sample_1741, when ever i tru to maintain table TBE01 , for  a event its saying first create a dataelement for event EV00001741,  how can i create it ?

    Hi Manikandan
    i once have a similar problem using a BTE, i solved creating the data element and adding the records in TPS01 and TPS02, i tried to create a record on TBE01 and it says the same mentioning TPS01 and TPS02
    please check this link
    http://scn.sap.com/thread/3173012
    create the data element asking the authorization code to your basis and create the records
    hope this help
    Regards
    Marco Cristobal

  • Can I create an event over many days with one data entry form?

    My client goes bicycle riding every Tuesday.
    He'd like to be able to create one event (Bicycle riding) and have it show up on his website as an upcoming event over many days.
    Rather than creating 52 entries for one year (52 Tuesdays) is there an easier way to associate one event with multiple dates?
    Thanks

    There is nothing worse than switching a client to Business Catalyst and having to tell them that they have to give up features that they were using in their older sites. Most Wordpress plug-ins are available at no cost. Business Catalyst does not have a plug-ins option. So when you claim a feature, such as an event calendar, it needs to have the necessary functionality to make it useful for a customer.
    Installation of Wordpress calendars is not difficult. Even the free Google Calendar has recurring events.

Maybe you are looking for

  • How do I change the name next to the home icon in Snow Leopard

    How do I change the name next to the home icon in Snow Leopard?

  • Documentation in Solman

    Hi Folks, Can solman automatically create configuration document for the server where new implementation is carried on? I know how to create implementation project in solman and maintaining already created document in it. But can it be done automatic

  • Pf satus in alv ----- urgent

    i want to create a select all button on the application tool bar of the alv.my requirement is when i'll click on select all all the check boxes whixh are present at the 1st column of my grid should be check. plz help its urgent.plz giv me the code. r

  • Problems with compiling the BlackJackServer program

    hello. this is james mcfadden. I have developed a multiplayer BlackJack card game in Java. the game consists of six programs: BlackJack.java, BlackJackServer.java, BlackJackClient.java, Card.java, Deck.java, and Hand.java. i got most of the game code

  • R&R 4.5 cannot make bootable USB

    Hi, i have upgraded to R&R 4.5, but i have the problem. I have switched to UEFI, so my system SSD drive is GPT now. I have reformated my USB drive for backups to GPT as well. Now i started R&R to make first backup and make my USB disc bootable. When