API for creating new User in Oracle E-Business Suite through BPEL

Hello,
I would like to use a BPEL process to create a new User in Oracle E-Business Suite. In the Integration Repository I was able to find an API called FND_USER_PKG/LOAD_ROW that creates/updates Application's User data. Is this the API I should be using? If so, I would like to better understand how to use this API.
I have created a simple BPEL process and added an Oracle Application Service, which uses this FND_USER_PKG/LOAD_ROW API. I set the following parameter before Invoking the Oracle Application Service: X_USER_NAME, X_ENCRYPTED_USER_PASSWORD and X_START_DATE. When I run the BPEL process I get the following error. I suspect that I am not passing all the required input parameters. Does anyone have any sample data I can use to get this API to load correctly? If I am using the wrong API, please let me know.
Please note, I have also posted this question to the SOA Suite and BPEL discussion forums...
Thank you kindly!
Christine
- <input>
- <Invoke_OracleEBS_SecurityUser_InputVariable>
- <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
- <InputParameters xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/">
<db:X_USER_NAME>
CRILEY
</db:X_USER_NAME>
<db:X_ENCRYPTED_USER_PASSWORD>
CRILEY
</db:X_ENCRYPTED_USER_PASSWORD>
<db:X_START_DATE>
2009-01-01
</db:X_START_DATE>
</InputParameters>
</part>
</Invoke_OracleEBS_SecurityUser_InputVariable>
</input>
- <fault>
- <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
- <part name="code">
<code>
20001
</code>
</part>
- <part name="summary">
<summary>
file:/E:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_OracleEBS_OnBoarding_1.0_d71e16636aa9ff51b9975926da6faeb2.tmp/OracleEBS_SecurityUser.wsdl OracleEBS_SecurityUser_ptt::OracleEBS_SecurityUser(InputParameters) - WSIF JCA Execute of operation 'OracleEBS_SecurityUser' failed due to: Error while trying to prepare and execute an API.
An error occurred while preparing and executing the APPS.FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-20001: APP-FND-02600: Unable to create user CRILEY due to the following reason(s):
Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
An unexpected error occurred. Please contact your System Administrator...
ORA-06512: at "APPS.APP_EXCEPTION", line 72
ORA-06512: at "APPS.FND_USER_PKG", line 783
ORA-06512: at "APPS.FND_USER_PKG", line 916
ORA-06512: at "APPS.FND_USER_PKG", line 1035
ORA-06512: at "APPS.FND_USER_PKG", line 645
ORA-06512: at line 1

Hello and thank you for your response. I am new to using APIs so please excuse my inexperience... I am not sure how to run the API outside of BPEL... Is that something you could easily walk me through?
I have made the following changes in BPEL based on your recommendation: 1) Added Oracle Application Service and used the API, LDAP_WRAPPER_CREATE_USER, found in the Oracle Application Module Browser* under: Applications Technology (ATG_PF)&gt; User Management (UMX)&gt; User (FND_USER)&gt; PLSQL&gt; User (FND_USER_PKG)&gt; LDAP_WRAPPER_CREATE_USER
2) Set the following parameter prior to Invoking the Oracle App Service: X_USER_NAME, X_UNENCRYPTED_PASSWORD,X_START_DATE, X_END_DATE, X_DESCRIPTION, X_EMAIL_ADDRESS, X_FAX, X_EXPIRE_PWD.
3) Deploy and run BPEL through BPEL Control.
I get the following {color:#ff0000}error on the Invoke{color}. {color:#339966}Do you see any issues with the values I am passing in the input{color}? Any idea why I am getting this error? Is there anything that I need to have configured for the API to work correctly, other than adding an Oracle Application Service in the BPEL?
Thank you for your time,
Christine
bq. Faulted while invoking operation "OracleEBS_LDAP_Create_User" on provider "OracleEBS_LDAP_Create_User". \\     - &lt;messages&gt; \\     - &lt;input&gt; \\     - &lt;Invoke_OracleEBS_LDAP_Create_User_InputVariable&gt; \\     - &lt;part xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance]" name="InputParameters"&gt; \\     - &lt;{color:#339966}InputParameters{color} xmlns:db="[http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LDAP_WRAPPER_CREATE_USER/]" xmlns="[http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LDAP_WRAPPER_CREATE_USER/]"&gt; \\     &lt;db:X_USER_NAME&gt; \\     CRILEY \\     &lt;/db:X_USER_NAME&gt; \\     &lt;db:X_UNENCRYPTED_PASSWORD&gt; \\     CRILEY \\     &lt;/db:X_UNENCRYPTED_PASSWORD&gt; \\     &lt;db:X_START_DATE&gt; \\     2009-01-01 \\     &lt;/db:X_START_DATE&gt; \\     &lt;db:X_END_DATE&gt; \\     2010-01-01 \\     &lt;/db:X_END_DATE&gt; \\     &lt;db:X_DESCRIPTION&gt; \\     CRILEY \\     &lt;/db:X_DESCRIPTION&gt; \\     &lt;db:X_EMAIL_ADDRESS&gt; \\[[email protected]|mailto:[email protected]] \\ &lt;/db:X_EMAIL_ADDRESS&gt; \\     &lt;db:X_FAX&gt; \\     999-888-7777 \\     &lt;/db:X_FAX&gt; \\     &lt;db:X_EXPIRE_PWD&gt; \\     0 \\     &lt;/db:X_EXPIRE_PWD&gt; \\     &lt;/InputParameters&gt; \\     &lt;/part&gt; \\     &lt;/Invoke_OracleEBS_LDAP_Create_User_InputVariable&gt; \\     &lt;/input&gt; \\     - &lt;fault&gt; \\     - &lt;bindingFault xmlns="[http://schemas.oracle.com/bpel/extension]"&gt; \\     - &lt;part name="code"&gt; \\     &lt;code&gt; \\     20001 \\     &lt;/code&gt; \\     &lt;/part&gt; \\     - &lt;part name="summary"&gt; \\     &lt;summary&gt; \\     file:/D:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_OracleEBS_OnBoarding_1.0_d71e16636aa9ff51b9975926da6faeb2.tmp/OracleEBS_LDAP_Create_User.wsdl [OracleEBS_LDAP_Create_User_ptt::OracleEBS_LDAP_Create_User(InputParameters) |http://forums.oracle.com/forums/]- WSIF JCA Execute of operation 'OracleEBS_LDAP_Create_User' failed due to: Error while trying to prepare and execute an API. \\     An error occurred while preparing and executing the APPS.FND_USER_PKG.LDAP_WRAPPER_CREATE_USER API. Cause: java.sql.SQLException: ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason: \\     ORA-20001: {color:#ff0000}Unabled to call fnd_ldap_wrapper.create_user due to the following reason: \\     An unexpected error occurred. Please contact your System Administrator.. \\     {color}ORA-06512: at "APPS.APP_EXCEPTION", line 72 \\     ORA-06512: at "APPS.FND_USER_PKG", line 3877 \\     ORA-06512: at line 1 \\\\     ;
Edited by: Christine Riley on Jan 28, 2009 1:22 PM
Edited by: Christine Riley on Jan 28, 2009 1:26 PM

Similar Messages

  • API for creating User in Oracle E-Business Suite through BPEL

    Hello,
    I would like to use a BPEL process to create a new User in Oracle EBS. In the {color:#0000ff}Integration Repository {color}I was able to find an API called FND_USER_PKG/LOAD_ROW that creates/updates Application's User data. Is this the API I should be using? If so, I would like to better understand how to use this API. What are the required input parameter?
    I have created a simple BPEL process and added an Oracle Application Service, which uses this FND_USER_PKG/LOAD_ROW API. I set the following parameter before Invoking the Oracle Application Service: X_USER_NAME, X_ENCRYPTED_USER_PASSWORD and X_START_DATE. When I run the BPEL process I get the following error. I suspect that I am not passing all the required input parameters. Does anyone have any sample data I can use to get this API to load correctly? If I am using the wrong API, please let me know.
    Thank you kindly!
    Christine
    - <input>
    - <Invoke_OracleEBS_SecurityUser_InputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    - <InputParameters xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/">
    <db:X_USER_NAME>
    CRILEY
    </db:X_USER_NAME>
    <db:X_ENCRYPTED_USER_PASSWORD>
    CRILEY
    </db:X_ENCRYPTED_USER_PASSWORD>
    <db:X_START_DATE>
    2009-01-01
    </db:X_START_DATE>
    </InputParameters>
    </part>
    </Invoke_OracleEBS_SecurityUser_InputVariable>
    </input>
    - <fault>
    - <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="code">
    <code>
    20001
    </code>
    </part>
    - <part name="summary">
    <summary>
    file:/E:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_OracleEBS_OnBoarding_1.0_d71e16636aa9ff51b9975926da6faeb2.tmp/OracleEBS_SecurityUser.wsdl [ OracleEBS_SecurityUser_ptt::OracleEBS_SecurityUser(InputParameters) ] - WSIF JCA Execute of operation 'OracleEBS_SecurityUser' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the APPS.FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-20001: APP-FND-02600: Unable to create user CRILEY due to the following reason(s):
    Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    An unexpected error occurred. Please contact your System Administrator...
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_USER_PKG", line 783
    ORA-06512: at "APPS.FND_USER_PKG", line 916
    ORA-06512: at "APPS.FND_USER_PKG", line 1035
    ORA-06512: at "APPS.FND_USER_PKG", line 645
    ORA-06512: at line 1
    Edited by: Christine Riley on Jan 22, 2009 11:00 AM
    Edited by: Christine Riley on Jan 27, 2009 1:07 PM

    Hello,
    I would like to use a BPEL process to create a new User in Oracle EBS. In the {color:#0000ff}Integration Repository {color}I was able to find an API called FND_USER_PKG/LOAD_ROW that creates/updates Application's User data. Is this the API I should be using? If so, I would like to better understand how to use this API. What are the required input parameter?
    I have created a simple BPEL process and added an Oracle Application Service, which uses this FND_USER_PKG/LOAD_ROW API. I set the following parameter before Invoking the Oracle Application Service: X_USER_NAME, X_ENCRYPTED_USER_PASSWORD and X_START_DATE. When I run the BPEL process I get the following error. I suspect that I am not passing all the required input parameters. Does anyone have any sample data I can use to get this API to load correctly? If I am using the wrong API, please let me know.
    Thank you kindly!
    Christine
    - <input>
    - <Invoke_OracleEBS_SecurityUser_InputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    - <InputParameters xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/">
    <db:X_USER_NAME>
    CRILEY
    </db:X_USER_NAME>
    <db:X_ENCRYPTED_USER_PASSWORD>
    CRILEY
    </db:X_ENCRYPTED_USER_PASSWORD>
    <db:X_START_DATE>
    2009-01-01
    </db:X_START_DATE>
    </InputParameters>
    </part>
    </Invoke_OracleEBS_SecurityUser_InputVariable>
    </input>
    - <fault>
    - <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="code">
    <code>
    20001
    </code>
    </part>
    - <part name="summary">
    <summary>
    file:/E:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_OracleEBS_OnBoarding_1.0_d71e16636aa9ff51b9975926da6faeb2.tmp/OracleEBS_SecurityUser.wsdl [ OracleEBS_SecurityUser_ptt::OracleEBS_SecurityUser(InputParameters) ] - WSIF JCA Execute of operation 'OracleEBS_SecurityUser' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the APPS.FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-20001: APP-FND-02600: Unable to create user CRILEY due to the following reason(s):
    Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    An unexpected error occurred. Please contact your System Administrator...
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_USER_PKG", line 783
    ORA-06512: at "APPS.FND_USER_PKG", line 916
    ORA-06512: at "APPS.FND_USER_PKG", line 1035
    ORA-06512: at "APPS.FND_USER_PKG", line 645
    ORA-06512: at line 1
    Edited by: Christine Riley on Jan 22, 2009 11:00 AM
    Edited by: Christine Riley on Jan 27, 2009 1:07 PM

  • Cannot create new user in oracle bam

    Hi Guys,
    Can anyone help me in creating new user in oracle bam. I've already follow the steps in bamadmin.pdf but i cannot connect to BAM using the one i've created.
    Please Help.
    Thank you!

    RRA wrote:
    Hello,
    How can I create a new user directly in database instead of creating from System Administrator menu in Oracle Applications R12 ?
    Also, is it possible to apply some default responsibilities when a creation of new user account take place via database ?
    Thanks.This topic was discussed many times in the forum before, please see old threads for the same topic/discussion along with the code you can use.
    Create Application User from the Backend
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Create+AND+Application+AND+User+AND+Backend&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Create+AND+Users+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Assign Responsibilities API
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Assign+AND+Responsibilities+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG API
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG.CreateUser
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.CreateUser+&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG.AddResp
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.addresp&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Error while creating new user in Oracle 11i EBS

    I am getting following error while creating new user. How solve this issue?
    “Unable to load java class % specified profile option SIGNON_PASSWORD_CUSTOM. Please verify that the class exists and that it implements the java interface oracle.apps.fnd.security.PasswordValidation”.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

  • Sample workflow for Create new user in IDM

    Hi,
    I'm new to Identity Manager. I had obtain task to create new workflow with this requirements:
    - create new user
    - make some approvals
    - deploy this user to some resource (AD, LDAP, SQL)
    I have problem with first step. I tried to create user by the help of http://www.javapassion.com/idm/ create user samples, but I'm affraid that mentioned samples aren't enough for real deployment. They are good for understanding of IDM.
    So I decided to explore workflows/rules that are used as default in IDM. I think Create User dialog that is in menu Accounts -> List Accounts -> New Actions -> New User . But I'm not sure which workflow is used for this dialog. Is it Create User in ProvisioningTask, or some template in TaskDefinition, or Create User Template in TaskTemplate, or something another?
    (I'm listing this templates through List Object in Debug interface).
    I appreciate every help
    Petr

    Chapo,
    thanks a lot for informations. I have try to find corresponding process mapping for 'Create User' under Configure tab. I found process 'createUser'. So I looked for 'createUser' workflow under 'Task definition' or 'Configuration' in debug. But there was no such workflow. Only workflow with similar name was 'Create Resource User', but it doesn't look like right workflow. I expected workflow with name 'Create User'. Does anybody have this workflow under 'Task Definition' in debug?

  • Create Custom data_domain in Oracle E-Business Suite Extensions for Oracle Endeca

    Hi all
    I integrated EBS with Oracle Endeca information discovery with the help of the following document Installing Oracle E-Business Suite Extensions for Oracle Endeca, Release 12.2 V4 (Doc ID 1574273.1).
    I am little aware to create custom data loading using endeca integrator.
    I need to know is there any possibility to create custom data_domain using Integrator in Oracle E-Business Suite Extensions for Oracle Endeca.
    Using the webs ervices data domains are created in the Endeca server.
    Below mentioned port numbers are displayed in the doc.
    7001 Oracle Endeca WL Managed Server
    7002 Oracle Endeca WL Domain Admin Server
    7004 Oracle Endeca Studio UI WL Managed Server
    7005 Oracle Endeca Integrator WL Domain Admin Server
    7006 Oracle Endeca Integrator Server UI WL Managed Server
    7011-8011 Oracle Endeca Server Internal Data Domains
    webservices url will be like http://hostname:port/endeca-server/ws/admin Like.
    I need to know the port number for this url. Kindle help me regarding this webservices
    Kindly suggest me ASAP.
    Thanks in advance.

    Hi,
    While checking the load data its showing error in clover url.
    We got error like this.
    Graph 'sandbox://Common/graph/FullLoad.grf' failed!
    And we followed the document for this issue Endeca graphs failing  (Doc ID 1549013.1)
    Please help me to fix this issue.
    Regards
    Kumar

  • Create New User In Oracle ERP R12.

    Hello,
    How can I create a new user directly in database instead of creating from System Administrator menu in Oracle Applications R12 ?
    Also, is it possible to apply some default responsibilities when a creation of new user account take place via database ?
    Thanks.

    RRA wrote:
    Hello,
    How can I create a new user directly in database instead of creating from System Administrator menu in Oracle Applications R12 ?
    Also, is it possible to apply some default responsibilities when a creation of new user account take place via database ?
    Thanks.This topic was discussed many times in the forum before, please see old threads for the same topic/discussion along with the code you can use.
    Create Application User from the Backend
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Create+AND+Application+AND+User+AND+Backend&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Create+AND+Users+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Assign Responsibilities API
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Assign+AND+Responsibilities+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG API
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG.CreateUser
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.CreateUser+&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG.AddResp
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.addresp&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Java API for adding new User in OID

    I am search documentation for sample code to add a new User to the OID via Java API, I could not find any. Is it not possible to do so? if it is, can someone point me to the right location.
    Thanks

       * This method adds employee details into directory
       * @param emp Employee details to be added
       * @param password Password for the employee
       * @exception GroceryAppException if  directory operation fails
      public void addEmployee(Employee emp, String password)
        throws GroceryAppException {
        Map attrs = new HashMap();
        List  objclass = new ArrayList();
        // Object classes that the employee must use
        objclass.add("top");
        objclass.add("inetOrgPerson");
        objclass.add("orcluserv2");
        // create other attributes and their values
        // Add all attributes that you need to set
        attrs.put("uid",emp.getEmpId());
        attrs.put("cn",emp.getFirstName());
        attrs.put("sn",emp.getLastName());
        attrs.put("postaladdress",emp.getAddress());
        attrs.put("mail",emp.getEmail());
        try {
          // create the Directory Entry with the specified attributes
          dirManager.addDirectoryEntry("cn="+emp.getFirstName()+"cn=Users,dc=oracle,dc=com"
                                             , objclass, attrs);
        } catch (NamingException namingEx) { // for Directory errors
          throw new GroceryAppException("Error while adding employee entry to directory :" +
                                      namingEx.getMessage());
      }And the Directory Manager
       * Creates an entry in Directory with the specified attributes and objectclass,
       * with the specified Distingushed Name.
       * @param dn Distinguished name of the entry to be created
       * @param objCls Object classes that the entry must use
       * @param map Attribute,value mappings of the entry
       * @exception NamingException if adding entry fails
       public void addDirectoryEntry(String dn, List objCls, Map map)
         throws NamingException {
          // Create attribute list, ignore case of attribute names
          Attributes attrs = new BasicAttributes(true);
          if( !objCls.isEmpty()) {
            Attribute objclass = new BasicAttribute("objectclass");
            // Iterate thriough the collection and add the object classes to the attribute
            Iterator objclsIter = objCls.iterator();
            while(objclsIter.hasNext()) {
              // Add the object classes
              objclass.add(objclsIter.next());
            // Add the object class attribute to list
            attrs.put(objclass);
          // Iterate through other attributes and add to attributes list
          Iterator attrsIter = map.entrySet().iterator();
          while( attrsIter.hasNext() ) {
            Map.Entry attr = (Map.Entry)attrsIter.next();
            attrs.put(new BasicAttribute((String)attr.getKey(),attr.getValue()));
          // add the directory entry to the directory with the attributes
          dirctx.createSubcontext(dn, attrs);
       }

  • Unable to create new user using Oracle Database vault

    Hi,
    can somebody help me to autorize user other then SYS user (e.g. system) to CREATE new and ALTER users when my database is secured by Oracle database vault with default installation settings;
    Thanks

    Reading the DV docs would be a great place to start.
    Consider, for a moment, that if the normal privileges provided to SYS using DV worked the same as they do in a regular database you wouldn't have a data vault you'd have a regular database.
    After you read the docs log on and try the following:
    SELECT username
    FROM dba_users
    WHERE username LIKE 'DV%';Aha!

  • Can't create new users in Administration Services Console

    Hi,
    I am following directions in the Essbase DBA guide for creating new users, as it says you must create a partition user to work with Samppart and Sampeast applications. It tells me to log on to Administration Services Console, go to the Administration Server, and right-click on users to create a new user. However, when I right-click, the option to Create New User is light grey and not clickable, neither is the option to refresh users. Can anyone tell me why I can't create a new user? I am logged in with the username: admin password: password that I set during configuration and that should be the Administrative account.

    Hi,
    What version are you using? If it is 9 then you need to create the user in shared services. I just checked and the option to create a user is greyed out for me too and I am an admin.
    It sounds like you haven't externalised the users which is why the option to do a refresh is not there.
    Thanks,
    Nathan

  • Solaris 10 and create new user

    I have got solaris 10, I want to create new user , ( Through command line and GUI), is there any guidline on net shows me step by step how to create user ?
    I had created user, but I could not login through that user, I was able to login as root only.

    I tried many things, but I still could not login, therefore I asked if you can post me some link show me step by step , I reapt step by step how to create new user in Solaris 10,,,,,,,,,,should step by step,,,,,I know how to use: useradd and chown and mkdir in /export/home,,,,,,etc.
    I relly appreciate if there is any link dives details for creating new user, because I could not find.

  • Create new user in  WebCenter Capture

    Hi all,
    Is it possible to create new user in Oracle WebCenter Capture?
    In documentation I found that it can be done, but I can not find how...
    Capture Users have client access to workspaces to which they have been granted access. Users are further granted access to specific client profiles. Capture user information is covered in Oracle Fusion Middleware Using Oracle WebCenter Capture. Any user that needs access to the client needs to be assigned the CaptureUser role in Oracle Enterprise Manager.
    Capture System Administration Overview - 11g Release 1 (11.1.1)

    I found it, it is in Enterprise Manager.
    WebLogic Domain ->
    Right click on Fmw Domain ->  choose  Security -> Application Roles

  • Oracle E-Business Suite Release 12.2.2 Media Pack v1 for Linux x86-64-bit avaliable NOW!

    Hi Friends;
    Finally Oracle E-Business Suite Release 12.2.2 Media Pack is available at e-delivery site.
    For a now it has been published for linux x86-64.
    Setup size almost 83G
    Here is the some notes:
    New Installation Customers who do not have access to My Oracle Support will not have access to key documents needed to perform a New Installation of Oracle E-Business Suite Release 12.2. This Part Number includes Document files which should be referred to when a ‘Document xxxxxx.1′ is referenced within the Documentation.
    The first document to review is the “READ FIRST – Document 1320300.1, Oracle E-Business Suite Release Notes, Release 12.2.html”. This is your starting point for performing a New Installation.
    Documents included under the Documents directory:
    Check first:- Document 1320300.1, Oracle E-Business Suite Release Notes, Release 12.2.html
    Document 389422.1, Recommended Browsers for Oracle E-Business Suite Release 12.html
    Document 1155883.1, Oracle E-Business Suite Desktop Client Hardware and Software Requirements.html
    Document 1314621.1, Oracle E-Business Suite NLS Release Notes, Release 12.2.html
    Document 1330701.1, Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for Linux x86-64.html
    Document 1330702.1, Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for Oracle Solaris (64-bit).html
    Document 1330703.1, Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for IBM AIX (64-bit).html
    Document 1330704.1, Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for HP-UX Itanium.html
    Document 1355068.1, Oracle E-Business Suite 12.2 Patching Technology Components Guide.html
    Document 1376618.1, Oracle E-Business Suite Technology Stack Release Notes for Release 12.2.2.html
    Document 1469456.1, DATAINSTALL AND HRGLOBAL APPLICATION 12.2 SPECIFICS.html
    Document 1506669.1, Oracle E-Business Suite Release 12.2.2 Readme.html
    Document 1560906.1, Applying the Release 12.2.2 AD and TXK Release Update Packs.html
    This information&entery is avaliable at Oracle E-Business Suite Release 12.2 Supplemental Documentation – REVIEW FIRST V39664-01 at  e-delivery site.
    Enjoy it
    Oracle E-Business Suite Release 12.2.2 Media Pack v1 for Linux x86-64-bit avaliable NOW! | Helios&amp;#039;s Blog
    Regard
    Helios

    Hi Friends;
    Thanks for inputs...  Still there is no input at  Steven Chan blog yet
    Anyway
    @Hussein Sawwan
    We know very well who is the fastest gun in forum  so well And yes let the fun begins
    @Asif
    Thanks for input man
    @Nayas
    Let us know how the installation goes
    Regard
    Helios

  • Oracle E-Business Suite Release 12.1.3 is now available

    This is for information purpose only.
    Oracle E-Business Suite Release 12.1.3 is now available for download:
    Oracle E-Business Suite Release 12.1.3 Release Update Pack (Patch 9239090)
    For installation instructions for EBS 12.1.3, see:
    Oracle E-Business Suite Release 12.1.3 Readme (Note 1080973.1)
    This release update pack (RUP) combines error corrections, statutory/regulatory updates, and functionality enhancements into a consolidated, suite-wide patch set. This release is a maintenance pack and can only be installed on top of an existing EBS 12.1 environment.
    Please check the blog :
    http://blogs.oracle.com/stevenChan/
    -Sujay

    Hi;
    Thanks for information, this info also posted on Forum Home » E-Business Suite » Technology - LCM: R12 Install/Upgrade by Steven Chan
    Regards
    Helios

  • Create a new user in Oracle Bi enterprsie edition plss help

    how can we create new users in for oracle bi
    currently i have only adminsitrator as a user i want to create 5 different users please heklp me with steps to create the users
    which module is to be used please guide me with steops as am new to otracle bi just started today
    thanks

    Hi,
    If I understood your problem correctly, then I think that associated Group does not have Administrator previleges.. Only Administrator can access the Repository..
    Alternatively, you can check those users by logging into BI Presentation Services.. Definitely those users will be logged in as you defined them in your Repository...
    Only access to metadata (repository) will be denied to the users created by you (if they does not have Administrator previleges)..
    Hope this will clarifies your problem..
    I will be very happy if anyone corrects me..:)
    -Vency

Maybe you are looking for

  • Iphone 5s - Calls Breaking Up - Searching for Network

    Hello. I recently started using my new Iphone 5s and I have a big problem. Every call I get or make, the call suddenly breaks up during the first minute. My network reception bar drops to 1 bar, then says "searching..." briefly, and then it comes bac

  • Downloaded game doesn't show up in iPod

    I bought the Zuma game which shows up in my iMac Library, but when I sync my iPd it doesn't appear. I go to extra>games and there are 3 games which apparently come with the new iPods. But not Zuma. In iTunes it shows Zuma in my Library though.

  • Need to send an email to 3,000 receipients how do i do this using mail?

    I am a small business and we have about 3,000 email contacts on our books. Occasionally we like to send them an email to show offers etc. Can anyone let me know the best way i could do this? at the moment my broadband supplier only allows me to send

  • Doubt in Job Scheduling

    Hello Guys, I have Schedule one of my ALV Report for auto mail . In Report there are 30 Column. But when the mail is gone to users through SM37 Scheduling only 12 column are visiible. When I am running the report in prod server it show all column and

  • BCB/ICI Version Upgrade from 3.00 to 3.02 on CRM

    Dear Sir/ Ma'am, Presently our DEV CRM J2EE engine is on BCB/ICI version 3.00.64507 and we would like to upgrade to version BCB/ICI 3.02 for Free Seating  Functionality in CRM Server. Can you please provide the information for upgrading of this ICI v