Creating a platform user with AD alias fails in 4.1 (coming from 3.1)

Hi,
I used to be able to create a user using the following:
EnterpriseService boEnterpriseService = s.GetService("", "InfoStore");
                var boInfoStore = new InfoStore(boEnterpriseService);
                var newBoUserPlugin = boInfoStore.PluginManager.GetPluginInfo("CrystalEnterprise.User");
                var userList = boInfoStore.NewInfoObjectCollection();
                var newBoUser = (User)userList.Add(newBoUserPlugin);
                newBoUser.Title = user;
                newBoUser.Aliases.AddNew("secWinAd:" + user, false);
                boInfoStore.Commit(userList);
Unfortunately, it now fails with this error:
Additional information: Failed to commit objects to server :
Create operation failed.
If I omit the alias creation, the user is created normally, but is not linked to an AD account like I need.
Can I achieve the same in 4.1?

There are a couple of things I would try:
1.  Make sure that the Enterprise alias has a password.  In the CMC, you can no longer create a user without a password.
2.  Commit the enterprise user, then add the AD alias and commit again.
Also, it may be looking for the fully qualified name of the user or the user name in the "DOMAIN\user" format when you add the WinAD alias.
-Dell

Similar Messages

  • How can i create a new user with only read rights ?

    How can i create a new user with only read rights ?

    You are asking about a Database User I hope.
    You can look into the Oracle 8i Documentation and find various privillages listed.
    In particular, you may find:
    Chapter 27 Privileges, Roles, and Security Policies
    an intresting chapter.
    You may want to do this with the various tools included with 8i - including the
    Oracle DBA Studio - expand the Security node and you can create USERS and ROLES.
    Or use SQL*Plus. To create a
    user / password named John / Smith, you would login to SQL*Plus as System/manager (or other) and type in:
    Create user John identified by Smith;
    Grant CONNECT to John;
    Grant SELECT ANY TABLE to John;
    commit;
    There is much more you can do
    depending on your needs.
    Please read the documentation.
    -John
    null

  • Create a new user with Privileges to execute Seeded API's

    Hi,
    We have a requirement from our client, they want to create a new user with Privileges to execute Seeded API’s,
    So they dont want to execute using APPS user.
    We want to know is it possible to have a new user for executing seeded API's and if so what all priveleges we need to have.
    We are on 12.1.3 with 11.2.0.3  two node RAC Database on Exadata and Exalogic servers.
    Waiting for your suggestions and replies.
    Thanks

    Hi,
    Plz update this forum,
    and give me a suggestion at the earliest,
    Waiting for your valuable advice.
    Thanks

  • CUA - Creating a test user with profile

    Hi All,
           I just set up the CUA in our newly installed solution manager which is the central system and another sandbox system with three  clients as the child systems.
    I referred to the follwoing for the setup:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cc/50b43be7492354e10000000a114084/frameset.htm
    One of the tests for checking the setup is to create a test user with profiles in the central system and distribute it to the child systems. I did the text comparision and saved the user; i still cannot see the user in the child systems.
    I checked SCUL and BD87. SCUL shows me grey. BD87 do not show any IDOC that were transferred.
    Could anyone help/direct me in fixing this.
    Thanks
    Shabna

    Hi,
        To make the test simpler I tried it again sending the test user to only one of the child systems. The RFCs between the systems are working fine. I checked /BD64, it shows the whole set up.
    When I check /BD87 of the central system I see the following error:
    "Could not find code page for receiveing system".
    Diagnosis
    For the logical destination XXXCLNTXXX, you want to determine the code page in which the data is sent with RFC. However, this is not currently possible, and the IDoc cannot yet be dispatched.
    Procedure for System Administration
    Possible causes are:
    1. The entry no longer exists in the table of logical destinations.
    2. The target system could not be accessed.
    3. The logon language is not installed in the target system.
    I can see the central system as well as the child systems in the logical systems table. And the RFC destination does note shown any errors in the connection as well as authorization test. What else do I check?
    Thanks
    Shabna

  • How to create full new user with all privileges

    how to create full new user with all privileges?
    and how to delete existing users?
    Thanks in advance..

    Common solution is probably to use sudo for privilege elevation, wiki should help

  • Creating active directory users with dscl

    Our mac workstations (OSX 10.8) are bound to a 2008 Active Directory server.  We are attempting to use some existing dscl scripts on the mac client computer to create Active directory users.  We can successfully read and change AD attributes of an existing user with dscl, but creating new users or new attributes for an existing user gives us an error.  Here are some examples.
    SUCCESSFUL READ OF AD USER ATTRIBUTE:
    root# dscl -u administrator  "/Active Directory/CXAD/All Domains" -read /Users/jholmes SMBHomeDrive
    Password:
    SMBHomeDrive: H:
    root#
    SUCCESSFUL DELETE OF ABOVE USER ATTRIBUTE
    root# dscl -u administrator  "/Active Directory/CXAD/All Domains" -delete /Users/jholmes SMBHomeDrive
    Password:
    root#
    FAILED ATTEMPT AT RE-CREATING THE DELETED ATTRIBUTE
    root# dscl -u administrator "/Active Directory/CXAD/All Domains" -create /Users/jholmes SMBHomeDrive
    Password:
    <main> attribute status: eDSInvalidRecordType
    <dscl_cmd> DS Error: -14130 (eDSInvalidRecordType)
    root#
    The same error occurs when attempting to create a new user.  Any ideas?  Thanks in advance for any suggestions.

    In the end I could not find them; account info is ONLY stored locally in Open Directory when they have mobile accounts.
    However, I found I could migrate their user directories in Terminal via ditto ( I connected the old macs via Firewire Target mode) , and when they log in all their stuff and settings are there.
    the command is: ditto /Volumes/<old mac hard drive>/Users/<username> /Users/<username>

  • How can I create a new User with the Java API like OIDDAS do?

    Hello,
    I'm currently working on an BPEL based process. And i need to create an OCS user. So far I can create an user in the OID. But I cant find any documentation about given this user an email account,calendar and content function etc.
    Did anybody know if there are some OIDDAS Webservices? Or did anybody know how to do this using the Java APIs?

    You are asking about a Database User I hope.
    You can look into the Oracle 8i Documentation and find various privillages listed.
    In particular, you may find:
    Chapter 27 Privileges, Roles, and Security Policies
    an intresting chapter.
    You may want to do this with the various tools included with 8i - including the
    Oracle DBA Studio - expand the Security node and you can create USERS and ROLES.
    Or use SQL*Plus. To create a
    user / password named John / Smith, you would login to SQL*Plus as System/manager (or other) and type in:
    Create user John identified by Smith;
    Grant CONNECT to John;
    Grant SELECT ANY TABLE to John;
    commit;
    There is much more you can do
    depending on your needs.
    Please read the documentation.
    -John
    null

  • Creating GC power users with the Java EM cli kit

    for those interested in creating users with dba credentials I have written some
    shell scripts using EM java cli kit for creating dba users into remote db and updating
    credentials into Grid Contol
    once logged to have all the necessary preferred credentials up 2 date and you donnot have
    to remember the sysdba passwords for specific instances
    here is the link
    http://boulayp.free.fr/articles.php?lng=fr&pg=203

    Thanks for sharing the knowledge

  • NWDI Creating Track Error:Communication with the CMS failed

    Hi All,
    We are trying to setup NWDI in our landscape.When we are going to setup an NWDI Track for EP 7.0 SP16 ,getting the message
    Validation Error: Communication with the CMS failed. Ensure that the URL is correct, that the CMS is up an running, and that the given user has administrative access rights for the CMS
    Can any body help us.We are new to NWDI.
    Regards,
    Vijay

    Vijay...
    In your landscape navigate to
    http://<host>:<port>/webdynpro/dispatcher/sap.com/tcSLCMS~WebUI/Cms
    Select "Landscape Configurator"
    Now select "Domain Data"
    There check the CMS credentials.....
    Get it cross checked with basis team...if you are using correct CMS URL....
    Second user that you have given there for login purpose must be replication of NWDI_CMSADM user id...
    Compare your user with this user permissions and roles.

  • I've already restarted my computer and created a new user, but my IPhone 4 still isn't coming out of the "restore" setting; anybody know how?

    I've recently tried to restore my IPhone4. For some reason, its not working properly (i.e my phone won't come out of restore). I've already restarted my computer, and created a new user account on my computer.The message that keeps popping up says Error 1604 which i know has somethign to do with the USB port but i don't know what specifically. Any Help??

    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.

  • How do I create admin console users with full access to configuration and the directory in every instance?

    I want to be able to create directory user ID for the iPlanet administrators. They should be able to access the admin console and all the instances created. They should be able to configure each instance and directory. I was able tocreate Admin Server Administrators but they were only able to modify the directory(tab) and not the configurations(tab). Any help would be greatly appreciated!
    Thanks.
    Keith

    Hi Keith,
    In o=netscaperoot, edit the static group called cn=Configuration Administrators, ou=Groups, ou=TopologyManagement, o=NetscapeRoot - this group contains the admins peer to your config admin. Since the console is quirky and doesn't let you add in users not in netscaperoot, just click advanced and put in the full dn of whoever you want in by hand, e.g., uid=scarter, ou=people, dc=mydomain,dc=com as a static member. then rebind to the console with the full dn and passwd, and away you go :)
    james

  • Create new portal-user with webservice

    Hi,
    I'm trying to develop a ejb-webservice which is creating a new Portal-User.
    The webservice is working so far, I made methods like getDisplayName() which is returning the display name to a logonId and so on. All this is working. I'm using the component sap.security.api.sda for this.
    Problem: User-creation is not working. I think the problem might be, that a webservice is not authorized to create users? Or putting it in another way: Is it possible that a webservice is "logging in" at the portal, or sohehow authorizing itself?
    Thanks and regards
    Jan Hempel

    Hi Detlev,
    thanks for Your answer.
    It seems like that the problem was caused by using array-parameters in the webservice-method?!
    Strange, but after removing the array-parameter from the method it worked! Before the webservice never returned anything, not an error or anything else.
    Well, strange enough, but I can live with that.
    regards
    Jan

  • Users with "metafile download failed" error message

    Hello,
    I am an Adobe employee working on the issues surrounding the download manager to download Adobe Reader.
    The team is aware that some users are having difficulty downloading Adobe Reader due to an error message, "metafile download failed".
    If you are one of the users having the problem of "metafile  download failed" error message, please send me a private message with  your email address so we can contact you.
    Thanks,
    -Yuko C.
    NOTE:  to send a private message, click on the User Name to go to their  profile page and then use the link to send a private message in the  Action panel there.

    This is a copy of what was in the other area, I did not see this new post started, sorry.
    Week 4 july 2011 reader, flash, shockwave downloaded ok from the download page.
    Last week 18 july 2011 when I tried to download, that part of adobe site was down.
    Later on in week and today, I am just getting the 'Metafile download failed' message at 33%.
    Same new pc's on both occasions ( ie 7, windows xp sp3 behind corporate firewall )
    Shockwave seem to download ok.
    Reader and flash, instead of coming up with the DLM as previously, is trying to download a file ending .........gtbd_Aih.exe
    Has Adobe changed something??
    HELP
    Jim

  • Create a portal user with a specific Organizational Unit in the OID??

    I would like to split my portal users by Organizational Units in the OID.
    e.g.:
    ou=country1, cn=user1
    ou=country1, cn=user2
    ou=country2, cn=user3
    is it possible?
    is it possible trough the administer tab of Portal?
    Any experience ?
    feedback??
    Thanks
    Didier

    I think it is feasible.
    But not through Administer tab.
    Use your own api to add users (DBMS_LDAP.add_s + WWSEC_API.add_portal_user)
    cn=user1, ou=country1, cn=user_search_base
    cn=user2, ou=country2, cn=user_search_base
    or maybe try to change dynamically user_create_base, I don't know if it is possible or not

  • Create a new user for oracle 10G ASM instance with sysdba system privilege

    Hi,
    In our Golden Gate Project, we require the SYS user credential to connect to the Oracle 10g  ASM instance to read the database transaction logs.But our client is not providing the SYS user credential to  connnect to ASM instance.
    I'm getting the error message "ORA-01109:  database not open",When I tried to create a new user using the  below the steps in oracle 10g ASM instance
    1. Login using "sqlplus / as sysdba"
    2. Create user <username> identified by <password>;
    But in oracle 11g ASM instance, I'm able to create new  user  by connecting the ASM instance with SYSASM role without issues.
    Is there is any workaround to create a new user with sysdba system privilege in oracle 10g ASM instance?.
    Thanks in advance .

    Hi,
    Recreate the password file for the ASM instance as follows:
    Unix:
    orapwd file=<ORACLE_HOME>/dbs/PWD<SID> password=<sys_password>
    Windows:
    orapwd file=<ORACLE_HOME>/database/PWD<SID>.ora password=<sys_password>
    Now sys password is reset, we are ready to use sys for ASM management. I decided to create another user ASMDBA as I tried above.
    SQL> create user ASMDBA identified by test01;
    User created.
    SQL> grant SYSASM, SYSOPER to ASMDBA;
    Grant succeeded.
    SQL> select * from v$pwfile_users;
    USERNAME SYSDBA SYSOPE SYSASM
    SYS TRUE TRUE TRUE
    ASMDBA FALSE TRUE TRUE
    Please see this link : http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/
    Thank you

Maybe you are looking for

  • Template Component in Flex 4

         I need to use a  component several times, in various states of my application. This component has to be dynamic is the same structure, but  will change somewhat from one state to another of my application. I heard that using the template will fa

  • Do I need two or four memory pieces for my MacBook to go to 2GB

    I just ordered what I thought was 2 GB from Ramjet to put in my macbook and what I got was four 512 Memory pieces. Before I open up this computer and install, can I add four pieces after removing the two in there. Or do I need to return this memory a

  • No Thumbnails in Cover Flow View

    I used to be able to view all image files at the top of the windo in cover flow view. Now, instead of showing me the image, it shows me icons. Like .jpg's show up as a preview icon. I want to see the image itself so I don't have to open every file. I

  • Codec for .avi files

    Hey; this may be an easy or confusing question, unfortunately I don't have alot of time on my hands lately, but i'm looking to view an .avi file and quicktime says i need a codec to view it; i click the link, and theres several codecs, some free, som

  • Sales order table control

    Hi Experts, I want to upload sales order information (va01 transaction) from flat file to sap. but in va01 tcode table control is there so could you plz guide me whts the procedure to upload sales information. points sure Thanks in advance, Divya sre