To add an owner to the group, click the Add icon next to the Owner box.

Managing Dynamic and Static Groups 14-15 Creating a Dynamic Group Entry by Using ldapadd You can use ldapadd to create a dynamic group from the command line. Creating a Cached Dynamic Group Using labeledURI Attribute If you use the labeledURI attribute to create a cached dynamic group, then the syntax for the LDIF file is: dn: DN_of_group_entry objectclass: top objectclass: groupOfNames | groupOfUniqueNames objectclass: orcldynamicgroup labeledURI:ldap:ldap_URL member: DN of member 1 member: DN of member 2 . . . member: DN of member N Use the following command to add the group and members in this LDIF file to the directory: ldapadd -p port_number -h host -f file_name.ldif Creating an Uncached Dynamic List Using labeledURI Attribute If you use the labeledURI attribute to create an uncached dynamic list, then the syntax for the LDIF file is: dn: DN_of_group_entry objectclass: top objectclass: groupOfNames | groupOfUniqueNames objectclass: orcldynamiclist labeledURI:ldap:ldap_URL member: DN of member 1 member: DN of member 2 . . . member: DN of member N Use the same command as in the previous example to add the group and members in this LDIF file to the directory: ldapadd -p port_number -h host -f file_name.ldif Creating a Dynamic Group Using CONNECT BY String If you use the CONNECT BY string, then the syntax for the LDIF file is: dn: DN_of_group_entry objectclass: top objectclass: groupOfNames | groupOfUniqueNames objectclass: orclDynamicGroup orclConnectByAttribute:attribute_name orclConnectByStartingValue:DN_of_attribute member: DN of member 1 member: DN of member 2 . 14-16 Oracle Fusion Middleware Administrators Guide for Oracle Internet Directory . . member: DN of member N When specifying entries in this syntax, do not use double quotes around distinguished names. The following example shows an LDIF file for the entry for a dynamic group: dn: cn=myDynamicGroup,c=us objectclass: top objectclass: groupOfNames objectclass: orcldynamicgroup labeledURI:ldap:my_host:3000ou=MyNeworganizationalUnit, o=MyCompany,c=US??sub?objectclass=person member: cn=John Doe member: cn=Anne Smith The following command adds this LDIF file to the directory: ldapadd -p 3060 -h myhost -f myDynamicGroup.ldif Modifying a Dynamic Group by Using ldapmodify To change the organizational unit of the group created in the previous example, the syntax of the LDIF file is: dn: DN_of_group_entry changetype: modify replace:labeledURI labeledURI:ldap:my_host:3000 ou=MyNeworganizationalUnit,o=MyCompany,c=US??sub?objectclass=person Note: When you add or modify an entry, the Oracle directory server does not verify the syntax of the attribute values in the entry.