How to change the DN of a user when provisioning to LDAP (iPlanet User)

When I provision a new user to iPlanet User (LDAP) resource, it creates the account with DN = uid=<user login>,ou=people,dc=test,dc=com
How can I change it so that it will create the account with DN = cn=<Fullname>, ou=people,dc=test,dc=com ?
I don't see the DN field defined in the iPlanet User form.

Is this a live environment? I would suggest setting this from the start, and not trying to change later. Most likely its using this prefix for both pre and post name so when you change it in the middle, one of them won't be found.
-Kevin

Similar Messages

  • How to change the text of a user defined field in dynamic selections?

    Logical Database PSJ is used by t code CJI3 - we added a couple of user fields into the dynamic selections of CJI3.
    Now - how to change the text of this user filed (USR01 of structure PRSP_R in logical database PSJ)?
    Found an OSS note - 86980 - that tells that this is not possible.
    But when we read the documentation on the user field (CJI3 - dynamic selections  - double click on user field - F1), it shows the following text:
    User-defined field in which you can enter general information with a length of up to 20 characters.
    Dependencies
    The names (key words) for  user-defined fields depend on the field key.
    Now the question is where to change the field key..
    Thanks,
    Ven

    Madhu - you did not get the question I think.
    Anyways - I found an OSS note 1266643 - this code change should take care of the issue - it will then reflect the details maintained in custoizng at transaction code OPS1..
    Thanks,

  • How to change the name of local user

    Apologies for this newbie question.
    I have Mac OS X Server 10.5 running on an iMac. I have set up a local user account on the iMac for a user called "Anna". Anna has since left our organisation, so I would like to change the ownership and login of this local user account to another user, "David". Can anyone advise me how to do this?
    Many thanks,
    Greg

    Sorry, I'm a complete newbie.
    If I go to System Preferences > Accounts and create a new User Name and Password ("David") for the old user account ("Anna"), I can't log in to the account because the Server Account still says "This account is paired with account "Anna" on server "/LDAPv3/127.0.0.1". There is an option to "Unpair" but I'm scared to do this because I don't know the ramifications and I'm worried that I might be locked out of the user account and lose access to the data.
    I really appreciate your help.
    Thanks,
    Greg

  • How to change the font style for user profile information in My Profile page?

    Hello,
    In my profile page, user information is getting display as below:
    Name
    Title
    Department --> Would you please let me know how can I change style for Department ( Information Technologies) Attribute in this section ?
    Thanks and Regards,
    Dipti Chhatrapati

    Hi Romeo,
    I got your point and class I require to apply is as below:
    .ms-contactcardtext3 {
        font-family:
    Arial !important;
        font-style: italic !important;
    Thank you for your trick :) 
    But its getting apply to title as well as to Department - as above class is same for both fields , while I require to change the style only for the department.
    Any suggestions ? I have changed the same using Designer which works as per the need , however - I dont want to use SPD Tool !!!
    Bottom line : I Require different font style in Title and Department without use of SPD.
    Any suggestions/idea ?
    Thanks and Regards,
    Dipti Chhatrapati

  • How to change the thread number for user account

    I remember that for each user account, we can limit the maximum thread number it can create for a user process. But how to change this number?
    Thanks,
    Iris

    Hi ,
    I do not think that there is a way to control the number of "threads per user".
    Are you referring to "thread id" ? Please elaborate on your requirement.
    You may want to take a look at the complete list of process sizing tunables
    at:
    http://docs.sun.com/ab2/coll.707.1/SOLTUNEPARAMREF/@Ab2PageView/idmatch(CHAPTER2-4)?Ab2Lang=C&Ab2Enc=iso-8859-1#CHAPTER2-4
    The link can also be accessed as:
    http://docs.sun.com
    Collection Titles
    Solaris Tunable Parameters Collection
    Solaris Tunable Parameters Reference Manual HTH
    Gopinath.
    Developer Technical Support
    Sun Microsystems Inc

  • How to change the schema to another user ?

    Hi,
    I've registerd this schema and it works well,
    but I need to change the schema to connect to another User like MYUSER_2.
    because I have to migrate the MYUSER_1 to MYUSER_2 and then to delete MYUSER_1
    when I register the schema again with this user MYUSER_2
    , all xml-entries will become destroyed ?
    what can I do ?
    it's better , to register the schema without a user ?
    Norbert
    dbms_xmlschema.registerSchema(
    schemaurl => vschemaurl,
    schemadoc => xsd_file,
    local => FALSE,
    gentypes => TRUE,
    genbean => FALSE,
    gentables => TRUE,
    force => FALSE,
    owner => MYUSER_1
    ,CSID => nls_charset_id('AL32UTF8');
    );

    If 2 seperate users need to work witht the same XML Schema then the XML Schema should be registered as a global Schema. If you want to change the owner of an XMLschema, just like if you want to change the owner of a relational; table you will have to export the data and import it again.

  • How to change the tab of a jTabbedPane when action performed

    The scenario is like this : I have a jTabbedPane with 2 tabs. I want, when an action is performed in one tab (for example a button is clicked on tab1) to change the tab automatically (to make tab2 visible). How can i do this?
    Thank you in advance

    I've read JTabbedPane API before i post the message, but unfortunately i couldn't find a solution to my problem. I tried to use the methods grabFocus and requestFocus to change the focus of the application, but it didn't work.
    Thank you for replying Nether.

  • How to change the background of a JPanel when printing?

    I have a JPanel that has a background color of gray when displayed on the screen. I would like to change the background to white when printing but leave it gray on the screen. I am calling setBackground(), clearRect() and fillRect() but it still prints out with the gray background. Any thoughts on what method I could call to change this?
    public int print(Graphics g, PageFormat pf, int pageIndex) throws PrinterException {
    if (pageIndex >= 1) {
    return Printable.NO_SUCH_PAGE;
    double pageHeight = pf.getImageableHeight();
    double pageWidth = pf.getImageableWidth();          
    Graphics2D g2 = (Graphics2D) g;
    g2.setBackground(Color.white);
    g2.clearRect((int)pageWidth/2, (int)pageHeight/2, (int)pageWidth, (int)pageHeight);
    g2.fillRect((int)pageWidth/2, (int)pageHeight/2, (int)pageWidth, (int)pageHeight);
    paint(g2);

    From reading the doc, it appears that you have to change the background color of the Component:
    setBackground
    public abstract void setBackground(Color color)
    Sets the background color for the Graphics2D context. The background color is used for clearing a region. When a Graphics2D is constructed for a Component, the background color is inherited from the Component. Setting the background color in the Graphics2D context only affects the subsequent clearRect calls and not the background color of the Component. To change the background of the Component, use appropriate methods of the Component.
    Parameters:
    color - the background color that isused in subsequent calls to clearRect
    See Also:
    getBackground(), Graphics.clearRect(int, int, int, int)
    V.V.

  • How to change the font style of user in webdynpro code

    Hi Experts
    I have retrieved the user in webdynpro code through ume api .
    But the username is getting displayed in bold by default.
    Could you suggest me how to convert it to normal font so that the username is not displayed in bold.
    Regards
    Chandana

    Hi,
    You haven't mentioned which UI elememt you are using to display the user name. For textView you can use the design property and set the value as standard.
    Regards
    Ayyapparaj

  • How to change the name of public user "nobody" to "Guest"

    Hi all,
    This must be an easy task but I'm having a problem doing this.
    Can anyone help me with this. If its not possible then how about not showing it when on a public page?
    Thanks.
    Regards,
    Allen
    Message was edited by:
    A.Sandiego

    Allen,
    In the application's VPD security attribute, put:if v('APP_USER') = 'nobody' then
        apex_custom_auth.set_user('Guest');
    end if;If your VPD attribute is already in use, you can create a before-header application process and an identical after-submit, before computations and validations application process that run that same block.
    Both methods achieve the same end, that is, to run that block at the start of every page request during both show and accept.
    Scott

  • How to change the commands from a Form when a certain item is selected???

    Hello,
    I'm developing a J2ME application and I'm having some problems. I have more items on a form and I when i"m moving from an item to another I want that the commands of the form to change. Is that possible? How can it be done? I've tried some ways but without success. Please help.
    Thanks

    There is no focusListener and there ain't any focus events in j2me,
    if you want to have this effect you need to have only one command per item
    so that it won't appear in 'options' menu

  • HT5467 How to change the location service set up when the icon is not inactive?

    I can not setting up the location services and change individual location service for each application since the icon are all in the dead icon and I cannot change anything. Is there anyway to make those icons in active?

    Here is what I was referring to - when in Control Center, I have the database locations. (sources, targets, OWF etc). Under a database location I selected the connector/location name under Connectors. When I select Deploy Action to Drop the connector/location name will remain. However, if you were to check in the database or the Repository Browser (Locations Report) you will see that the db link is gone. At this point you can safely modify the Locations info in the Connection Explorer (in Design Center). On the other hand, if you want the location to be deleted all together then now you can delete it in the Connection Explorer panel. If you did the prior drop step then at this point all db link info should be gone from the database.

  • How to change the wording of my site when displayed in search engines

    How do I amend the details displayed when my website is typed into google so that it reads my company name, and other selected text...as opposed to the wording on the first slide/ 123.reg which it is currently displaying. Is there a settings page within iWeb that manages this?
    www.thenutritionalconnection.com
    Any advice would be much appreciated.
    Jessica
    Message was edited by: jessicanutrition

    jessicanutrition wrote:
    Is there a settings page within iWeb that manages this?
    Jessica ~ Welcome to the discussions. Most built-in templates have a large header caption at the top of the page and there's the Page tab in iWeb's Inspector — see the section "1) iWeb Page Titles" in this article:
    _SEO For iWeb: How to get your iWeb Websites into Google & Other Major Search Engines_
    Their free _iWeb SEO Tool_ says this:
    "Your meta description is a short description of your webpage content. Like your title tag, and all other meta tags, it should be unique for each one of your webpages. Provide a short description of what visitors should expect to see on your webpage. Search engines will use your description meta tag in the search results page right underneath the title tag."
    Also see this article by Google:
    _Changing your site's title and description in search results_
    ...Found by doing THIS.
    In other site builders, such as the free Weebly, SEO is integrated:
    http://kb.weebly.com/keywords-descriptions.html
    By the way, rather than posting your URL like this:
    www.thenutritionalconnection.com
    ...include the prefix to make it conveniently clickable:
    http://www.thenutritionalconnection.com

  • How to change the mouse cursor icon type when mouse moves out of client area ( propertysheet) WTL?

    I got stuck with an issue in property sheet .I want to load different cursor when the mouse position is within the client area and load another when moves out of the client area.
    In the porpetysheet I added four page. In the first page when I click next I am loading cursor of IDC_WAIT type and loading IDC_ARROW when the mouse moves out of the client area.
    In the page class I triggered the event for WM_MOUSEMOVE as follow:
        MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
    LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    if(TRUE == m_bIsNextBtnClicked)
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    else
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    This event is getting triggered and absolutely had no issue with this. Similarly I tried adding `MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave)` this event making an assumption that this will get triggered if the mouse moves out of the client area,  but
    this event did not get triggered at all.If this is not the mouse event to be triggered for mouseleave which event should I trigger?
    LRESULT OnMouseLeave(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    Now when I click Next button , **I was actually calling a function which is taking sometime to return** . Before to this function I am loading IDC_WAIT cursor i.e., 
     `::SetCursor(LoadCursor(NULL, IDC_WAIT));` . 
    Now when move the mouse cursor on to the non-client area I want to load IDC_ARROW cursor i.e., 
        ::SetCursor(LoadCursor(NULL, IDC_ARROW)); 
    When the moves on to the non-client area I am handling the mouse event in sheet derived class as follows,
    MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnNCMouseMove)
    LRESULT OnNCMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return 0;
    This event is not getting triggered until unless the function in the Next button event is executed.
    I want both of them to be done in parallel i.e, click Next button now hover mouse on the client area, Busy icon should come and when mouse moves out of the client area then IDC_ARROW icon should come.
    LRESULT OnWizardNext()
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    m_bIsNextBtnIsClicked = TRUE;
    BOOL bRet = MyFun();
    m_bIsNextBtnIsClicked = FALSE;
    //Until this function(MyFun()) is executed **WM_NCMOUSEMOVE**
    //event is not getting triggered.But this event should get triggered and I
    //should be able to see the change of cursor within and out of client area.
    Can anyone kindly help me to solve this issue.
    SivaV

    Hello
    sivavuyyuru,
    For this issue, I am trying to involve someone to help look into, it might take some time and as soon as we get any result, we will tell you.
    Regards.
    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.
    Click
    HERE to participate the survey.

  • How to Change the Cursor to a Hand When Over a Button Component?

    I have added a button from the Components Menu.  When I rollover the button, it changes color slightly but I would also like the cursor to turn to the traditional hand.  I have tried buttonMode = true and that doesn't seem to work.
    Does anyone have any suggestions?
    Thank you.
    Dave

    Thanks RR...I appreciate it very much!
    Dave

Maybe you are looking for