Can I add Users and/or Groups?

Hi,
Can I add Users and/or Groups in a Realm from my webapplication?
(not using administrative console....but from my code)
Tanks by
Angelo.

Yes.
"Angelo" <[email protected]> wrote:
>
Hi,
Can I add Users and/or Groups in a Realm from my webapplication?
(not using administrative console....but from my code)
Tanks by
Angelo.

Similar Messages

  • What are user parameters? and how can i add user parameter

    Hi Experts,
    what are user parameters? and how can i add user parameter and how can i add a user parameter
    HR_DISP_INFTY_NUM with value X?

    user parameters are used give reference grps and counntry grouping use SU3 tcode as amite said

  • I can't open user and group preferences

    I cant open the User and Group preferences. please help!!!!!!!!!!!!

    do you click the lock in the bottom left hand corner and enter your password to unlock it?  Please explain why you can not open user and group preferences.

  • Server 4.0 can't edit users and groups. All options greyed out.

    I have upgraded the mac mini server from Mavericks to Yosemite and had to update to Server 4.0 and having many issues.
    One issue is I can't edit users and groups. All the options are greyed out.

    Search the System keychain on the server for application passwords with the name "/LDAPv3/127.0.0.1" and delete any you find. Sign out of the Server app and sign back in using the FQDN of the server, not "localhost" or "127.0.0.1".
    Credit for this observation to ASC member Peter Jurg2. See also this discussion.

  • Can't open Users and Groups

    Yeah guys, after I played around the guest account and added some parental controls to it, I can't open Users and Groups again in Syste Prefences
    Thanks

    When doing Get Info -> Permsissions on files/folders located on my File Server share, Owner and Group show as (unknown).
    This means that the Finder can't find a match in the accounts/groups database for the numeric UID assigned to those files. Either the records associated to those accounts have been deleted, or the database is corrupt. In either case, you should restore a copy of it from backup.
    (15686)

  • Can not synchronize the SAP NW UME users and system groups with SSM

    We have created a demo enviroment for a client demo.
    In SAP NW UME:
    1. Create the system group.
    2. Asing the goup created to the admin user (pipadmin).
    In Administrator's user interface:
    3. Acces to Administration > Set System Defaults in order to synchronize user tables. The data informed in the fields are:
    SSM Administrator = pipadmin
    Cache directory = C:Program FilesSAPSSMInternetPubcache
    Global cache setting = Enable
    End point = <IP:port>
    User name = pipadmin
    pasword = ······
    cache = Enable
    Then we click on syncronize tables (Administration > Set System Defaults). The "Update compled" message is showed but users and application group don't appear in the Administration > Manages Application Groups.
    Note: We tried to syncronize yesterday and we recieved the message: restart the SSM Extended listener.

    Thank you for your answer Bob.
    Yes, I restarted the SSM Extended listener after all the steps.
    Do you know if there is another missing step?
    Regards,
    Santiago

  • Cannot Add user to CMC Group when they are a member of LDAP group

    On PreProduction Server CMC
    Softerra LDAP browser used to verify user is a member of LDAP group
    User does not show as a member of that group in the CMC
    Cannot add user to LDAP group showing in CMC, the same group shows the member in LDAP browser
    On Production Server CMC
    For kicks I logged into the CMC on Production and I found the user is correctly showing as a member of the Group
    Why doesn't the groups in CMC show what is actually showing in the LDAP browser?

    Hi,
    Check if you have also mapped in both servers the same groups. It might be that there are some groups missing in the Pre-prod.
    Also, try restarting the CMS. I have seen similar issues that are solved after forcing the recreation of the graph.
    If after the restart you still can't see the groups, check the mapping on the LDAP server. It might be that both servers do not use the same attribute mappings.
    Regards,
    Julian

  • Not able to Add users to Secutity Groups in ADS

    Hi all,
    I am successfully able to create the user in ADS in OU & users. I am not able to add them to the any group which is ADS. can any body help me out? it is much appreciated.
    Sriram

    AD gropus are managed by Windows Ad teams. You cannot add users to Ad group from CMC directly.
    Ask your windows team to add users to particular AD group and then update the Windows Ad authenctication from CMC to reflect in BO

  • Can not add members to a Group as Group Administrator

    Hi,
    My collegue has created a Group 'WE_PM_group' and added me to that Group with role 'Group Administrator'.
    But when I connect to the 'Create Group Or Add New Members' tool, then after SSO and acknowledging the 'read and understood Beehive Online Guidelines', it does not show the 'WE_PM_group' (it shows no Groups) and I can only Create a group.
    My question : how can I add members to the Group that my collegue created and for which I am Group Administrator ?
    Note : When I connect to the BeehiveOnline Administration Tool, I indeed see my e-mail address within the Group 'WE_PM_group' and with the correct role (Group Administrator)
    Thanks for your help,
    Peter

    If you go to the APEX app and have any group - like your Administrator - you will have a list of group - each of them is a hyperlink. Click on the group and the Group settings will be displayed - one of the fields is the Manager email. Get him/her to puit your email in that field, separated by a comma, and you are good to go.
    Phil

  • Getting list of all users and their group memberships from Active Directory

    Hi,
    I want to retrieve a list of all the users and their group memberships through JNDI from Active Directory. I am using the following code to achieve this:
    ==================
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    public class GetUsersGroups{
         public static void main(String[] args){
              String[] attributeNames = {"memberOf"};
              //create an initial directory context
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://172.19.1.32:389/");
              env.put(Context.SECURITY_AUTHENTICATION, "simple");
              env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
              env.put(Context.SECURITY_CREDENTIALS, "p8admin");
              try {
                   // Create the initial directory context
                   DirContext ctx = new InitialDirContext(env);     
                   //get all the users list and their group memberships
                   NamingEnumeration contentsEnum = ctx.list("CN=Users,DC=filenetp8,DC=com");
                   while (contentsEnum.hasMore()){
                        NameClassPair ncp = (NameClassPair) contentsEnum.next();
                        String userName = ncp.getName();
                        System.out.println("User: "+userName);
                        try{
                             System.out.println("am here....1");
                             Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should be returned
                             System.out.println("am here....2");
                             Attribute groupsAttribute = attrs.get(attributeNames[0]); // memberOf
                             System.out.println("-----"+groupsAttribute.size());
                             if (groupsAttribute != null){
                                  // memberOf is a multi valued attribute
                                  for (int i=0; i<groupsAttribute.size(); i++){
                                  // print out each group that user belongs to
                                  System.out.println("MemberOf: "+groupsAttribute.get(i));
                        }catch(NamingException ne){
                        // ignore for now
                   System.err.println("Problem encountered....0000:" + ne);
                   //get all the groups list
              } catch (NamingException e) {
              System.err.println("Problem encountered 1111:" + e);
    =================
    The following exception gets thrown at every user entry:
    User: CN=Administrator
    am here....1
    Problem encountered....0000:javax.naming.NamingException: [LDAP: error code 1 -
    000020D6: SvcErr: DSID-03100690, problem 5012 (DIR_ERROR), data 0
    ]; remaining name 'CN=Administrator'
    I think it gets thrown at this line in the code:
    Attributes attrs = ctx.getAttributes(userName, attributeNames);
    Any idea how to overcome this and where am I wrong?
    Thanks in advance,
    Regards.

    In this sentence:
    Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should
    It seems Ok when I add "CN=Users,DC=filenetp8,DC=com" after userName, just as
    userName + ",CN=Users,DC=filenetp8,DC=com"
    But I still have some problem with it.
    Hope it will be useful for you.

  • Report of Users and their groups

    Hi Experts,
    Is there a way to extract all the Hyperion Planning Users and the groups they belong in Hyperion 11.1.2.1 version? I need an excel file having the users and groups.
    Thanks
    Kannan.

    Hello Kannan,
    Yes, a clean list of Users with their Groups...
    Nothing standard. Strange...
    You might see if this export has something you can use. I do not recall it from the vast amount of detail exported here. The file will be generated on the server, so you might need somebody to pick it up and give it to you.
    MaxL command
    export security_file to data_file "essbase_security_file.txt";
    The alternative is to query the Planning repository. Maybe somebody has experience with this?
    Regards,
    Philip

  • Add users to a group from another Active Directory domain

    Hi Folks,
    I need add users in a group the active directory through the FIM 2010 R2.
    My scenery it is:
    Domain A with FIM 2010 R2 provisioning users for Domain B;
    I need get users the Domain B and add in group in Domain C.
    What's better way, create FIM portal for them, or create aditional script/development for FIM 2010 R2.
    Thanks a lot!
    Wilsterman Fernandes

    There are two approaches to do it.
    1st - easier - using FIM Portal/Service - just create a criteria based group that would be created in Domain C.
    2nd - more difficult, but you don't need FIM Service/FIM Portal - just export all users to one table in SQL and create a view, where a group and members (users from Domain B) are. It would be cheaper as you don't have to have FIM Service to do it. But if
    you have it, first is easier.
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • PS Script to find the list of users and the groups in a Workgroup server

    Hi There, could you please explain on how to get a complete list of local users and local groups in a "Workgroup" server to which they belong to using Powershell. I'm able to get the users list but couldn't find any help in finding
    the script to find to which localgroup the user belong to. Anticipating your response. Also let me know the cmdlet for Win2k3 servers to find the same.

    Here's some code from David Pham (don't remember wher I fund this code):
    Trap {"Error: $_"; Break;}
    Function EnumLocalGroup($LocalGroup)
    $Group = [ADSI]"WinNT://$strComputer/$LocalGroup,group"
    "Group: $LocalGroup"
    # Invoke the Members method and convert to an array of member objects.
    $Members= @($Group.psbase.Invoke("Members"))
    ForEach ($Member In $Members)
    $Name = $Member.GetType().InvokeMember("Name", 'GetProperty', $Null, $Member, $Null)
    $Name
    # Specify the computer.
    $strComputer = gc env:computername
    "Computer: $strComputer"
    $computer = [adsi]"WinNT://$strComputer"
    $objCount = ($computer.psbase.children | measure-object).count
    $i=0
    foreach($adsiObj in $computer.psbase.children)
    switch -regex($adsiObj.psbase.SchemaClassName)
    "group"
    { $group = $adsiObj.name
    EnumLocalGroup $group }
    } #end switch
    $i++
    } #end foreach

  • After upgrade my Iphone 4 to iso5, I can't add contact and I can't access the settings for mail,contacts and calender. The moment I select the setting for Mails, Contact and Calender it will jump back to home. Can someone advice what's wrong with it?

    After upgrade my Iphone 4 to iso5, I can't add contact and I can't access the settings for mail,contacts and calender. The moment I select the setting for Mails, Contact and Calender it will jump back to home. Can someone advice what's wrong with it?Problr

    Dear All
    i have done the same activity ( buy a new iphone 4 -> upgrade to ios5 - > configure email) with success-
    than when i start to move the contacts from old mobile to iphone (using the microsim) i receive the same crash
    in disgnosis e use i saw 2 dump with this title 'latestCrash-Preferences.plist and LatestCrash.plist. in each file the date is the same and i read:
    Exception Tyle: EXC_CRASH (SIGABRT)
    Exception code: 0x00000000, 0x00000000
    Chrashed Thread: 6
    in thread 6: name: Dispatch queue:
    com.apple.addressBookUI.ContactsSettingPlugin
    and thaan a lot of data.
    Have you any idea?
    thank in advance
    Fabio

  • How can I add 'AlternateSpace' and 'AlternateColorValue' to my IDML in InDesign?

    how can I add 'AlternateSpace' and 'AlternateColorValue' to my IDML in InDesign?
    I have a document and colors (CMYK) but need also RGB values to display on the web.
    In IDML in Resources/Graphic.xml in each Color are attributes 'AlternateSpace' and 'AlternateColorValue'.
    How can I set this in InDesign?

    I cannot follow you exactly…
    Do you mean you are using the IDML in a further process for Web Design? Translating the IDML to HTML or something?
    And now, you need the alternate information for doing the RGB representation of some or all the colors?
    InDesign itself does not provide an interface to that.
    Nor does scripting.
    However, you could change the values in an IDML or IDMS file by editing the file(s):
    AlternateSpace="NoAlternateColor" to: AlternateSpace="RGB"
    AlternateColorValue"" to: AlternateColorValue"0 144 54"  (a green one)
    Here a tabular overview of the properties of a color exported with a colored rectangle as IDMS file:
    <
        Color Self="Color/GREEN1-Process"
        Model="Process"
        Space="CMYK"
        ColorValue="100 0 100 0"
        ColorOverride="Normal"
        AlternateSpace="NoAlternateColor"
        AlternateColorValue=""
        Name="GREEN1-Process"
        ColorEditable="true"
        ColorRemovable="true"
        Visible="true"
        SwatchCreatorID="7937"
    />
    If you'll import the edited IDMS file in a new document and export again as IDML or IDMS, the changed values will persist.
    Don't know, if that goes in the right direction for you. I'm guessing here a lot…
    Uwe
    Message was edited by: Laubender

Maybe you are looking for

  • NULL Value in CLOB

    Hi, I am calling a stored procedure with CLOB parameter and I need to pass NULL value to CLOB paramter through ADO in VC++. My problem is when I send CLOB value as NULL a single Digit Binary value is inserted.I am using SAFEARRAY and AppendChunk mech

  • AIR Badge - Publisher ID Problem?

    In order to check if an AIR application is installed (using the ProductManager class) I have to use the publisher ID contained in the application's "META-INF/AIR/publisherid" file, not the publisher ID defined in the code signing certificate used to

  • What is the best way to manage storage on iPad & iPhone?

    My biggest usage is in photos.  In general, should I be storing music & pictures on my new macbook & only leaving "important" items on the mobile devices?  Is there a way to make this backup/transfer automatic?  I know these are basic questions, but

  • Link to download oracle Database 9.2.0.1

    Hi, I was surprised that I didn't see the link to download the Oracle Database 9.2.0.1 on Oracle Downloads web site that used to be there. Where shall I find a link to download the base release? Kindly advice, Regards, C.

  • FTP dictionary attack - how to prevent ?

    I'm already searched the board but haven't found a solution for our problem: During the last weeks the server was being hit by attacks looking like a dictionary attack. Someone tries to log in by ftp thousands of times. This made the server to reboot