BAPI to add role to a user.

Hi,
Is there any BAPI available to assign role to a user?.
I got one bapi BAPI_USER_ACTGROUPS_ASSIGN, this bapi does work.
But the problem is it deletes the previous roles assigned to the user and then assign new one.
I would like to know if there is any BAPI to just add a new role to the user without deleting the previous roles assigned to it.
Thanks & Regards,
Subin.

Hi John,
Bapi BAPI_USER_ACTGROUPS_ASSIGN does delete all the existing roles and appends new ones.
If you wish to keep the existing roles then use BAPI_USER_GET_DETAIL along with BAPI_USER_ACTGROUPS_ASSIGN .
example :  assuming it_new_activity is table of new activities you wish to assign.
CALL FUNCTION 'BAPI_USER_GET_DETAIL'
  EXPORTING
    username       = 'TESTUSER'
  TABLES
    activitygroups = it_old_activity
    return         = return.
APPEND LINES OF it_old_activity TO it_new_activity
call function 'BAPI_USER_ACTGROUPS_ASSIGN'
  exporting
    username       = 'TESTUSER'
  tables
    activitygroups = it_new_activity
    return         = return.
Hope this helps.
Regards,
Jovito.

Similar Messages

  • BAPI or Function Module to change PFCG role of an User from Background

    Hello Experts,
    I have a requirement to change PFCG role assigned in User from background and I need a BAPI , FM or any other method to do the same, I have gone through BAPI_BUPA_ROLE_REMOVE and BAPI_BUPA_ROLE_ADD_2 but as per my understanding , these are related to business role not PFCG.
    Please help!!!
    regards,
    Arnab.

    Resolved by myself.
    regards.
    arnab

  • BAPI to add more Parameter entries against a user id

    Hi All
    I am looking for a BAPI that assign parameter entries against a user id (tab 'parameter' if use tran SU01 for a user id) - the one that i am looking is similar to the 'BAPI_USER_ACTGROUPS_ASSIGN' which assign roles against a user id.
    I have looked in SDN for anything that may listed under PARAM but what I found are not related - If you have any ideas - please post me a line - Thanks

    Hi,
    Search with BAPI_USER_*
    and see if BAPI_USER_PROFILES_ASSIGN or BAPI_USER_CHANGE can help.
    Regards,
    Atish

  • In 11i CRM add the role 'csi normal user error

    Hi,
    i am trying to add the role 'csi normal user' , for that i have some procedure below
    To add this role to a user, you need CRM HTML Administration responsibility:
    1. In the Navigator, click the CRM HTML Administration responsibility.
    2. Under “Setup : Users : Registration”, click User Maintenance
    3. Enter full or partial username and click Go.
    4. Select the applicable username from the list
    5. Click Roles
    6. Select the CSI Normal User role from the left pane.
    7. Click Move to put it in the right pane.
    8. Click Update.
    i have already added crm html administrator to myself,i have sysadmin privilege,i have crm html administrator under that i have user maintanence
    if i click that its showing error that i dont have privilege to view that page
    error says i dont have the privilege
    Please let me know ,

    Hi,
    Have a look at the following documents.
    Note: 261174.1 - Insufficient Privileges to Access the User Maintenance Page
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=261174.1
    Note: 232373.1 - Insufficient Privileges when Accessing User Maintenance
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=232373.1
    Note: 299795.1 - Error In Granting Any Roles To A User - "Error granting role"
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=299795.1
    Note: 299186.1 - Administration Privilege Is Required To Access This Page
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=299186.1
    Regards,
    Hussein

  • Create User Activity: How to add Roles to the new user

    Hi all,
    My Problem is Using LC Workbench I have created one process it is having Create User Activity. I am able to creating the new user with this process.
    But I dont have idea how to add roles to that new user? Please anybody can help me out
    Thanks in advance.

    Hi,
      I used Built-in Componets till now, Please help me out What are the steps needed to implement a custom componet.
    Thanks in advance

  • ABAP prog with Call Transaction  to SU01 will not add roles in a CUA client

    I am modifying a current ABAP program that works in a non-CUA client to hopefully execute in a CUA client.  This program performs a Call Transaction to tcode SU01 and adds roles to an existing user.  I used tcode SHDB to identify the new BDC commands needed for CUA when using tcode SU01.  When executing the program in the CUA client  it does not save the roles to the user.  There is no error message or abnormal termination.
    When I assign the role to the same user that's referenced in my program directly with tcode SU01 it works fine.  Its just when I run the ABAP program the role assigment is not retained.  I opened a Customer Message with SAP and they referenced OSS Note 93802 and said this was a consulting question.  My program is not abending as referenced in Note 93802, it just does not add the role.
    Has anyone been able to get this to work in a CUA client?

    Hi,
    it should be fairly simple to create a new ABAP using the BAPI's related to business object USER. Call BAPI_USER_CREATE1 to create the users, and BAPI_USER_LOCACTGROUPS_ASSIGN to assign roles in a CUA environment. It should go something like this:
    [read file with user data into internal table wt_users]
    [read file with role assignments into internal table wt_roles]
    Loop at wt_users into wa_user.
      [create LOGINDATA, ADDRESS and other structures for user in BAPI below, based on the data in wa_user]
      call 'BAPI_USER_CREATE1'
      exporting
        username                      = [the user name from input file]
      NAME_IN                       =
        logondata                     = [structure for logondata]
        password                      = [initial password value]
      DEFAULTS                      =
        address                       = [address structure created above]
        [etc.]
      if sy-subrc eq 0.
    Assign roles for the user
    clear wt_activitygroups. refresh wt_activitygroups.
    loop at wt_roles into wa_roles where username = wa_user-username.
        [build an internal table, wt_activitygroups, for system/role assignments for the user]
    endloop.
        call BAPI_USER_LOCACTGROUPS_ASSIGN
          exporting
            username                      = [the users name]
          tables
            activitygroups           = wt_activitygroups
            return                       = wt_return.
    Endloop.
    Ideally, you would have two input files: one with the user data (one record per user), and another one containing the data for the BAPI_USER_LOCACTGROUPS_ASSIGN (on the format USERNAME, SYSTEM, ROLENAME); one entry per line. You'd loop at the first table, containing the user data, then create the user, then loop at all entries in the system/role assignment file for the same username, building an internal table of role assignemnts; then call the second BAPI (provided there were any role assignments to assign for that user!)
    Hope this makes sense. It's not rocket science really; you can omit most of the parameters of BAPI_USER_CREATE1, and the second BAPI is even simpler. You could consider validating the input data by checking entries in table USRSYSACT, which contains all valid system/role assignments as seen from the CUA system (this table gets updated every time you do a "text compare" from within SU01.
    Regards,
    Trond

  • Portal Runtime error in assigning a role to a user by UME

    Hi ALL,
    I am assigning a role to a user through UME using this piece of code:
    String uids = userFactory.getUserByUniqueName("Shilpa").getUniqueID();
    String roleid = roleFact.getRoleByUniqueName("pcd:portal_content/administrator/content_admin/content_admin_role").getUniqueID();
    roleFact.addUserToRole(uids,roleid);
    The userid and role is beinf fetched successfully but at the assignment of the role to the user , I am gettign Portal runtime error.
    The error log is following.
    <b> java.lang.NoClassDefFoundError: com/sap/abc/network/util/InfEPLog
         at UserListeners.userAssigned(UserListeners.java:27)</b>
         at com.sap.security.core.imp.RoleFactory.assignUserPerformed(RoleFactory.java:1466)
         at com.sap.security.core.persistence.imp.DistributedTransaction.doCacheUpdateAndNotificationForMembers(DistributedTransaction.java:565)
         at com.sap.security.core.persistence.imp.DistributedTransaction.doCacheUpdateAndNotificationForMembers(DistributedTransaction.java:815)
         at com.sap.security.core.persistence.imp.DistributedTransaction.doCacheUpdateAndNotification(DistributedTransaction.java:465)
         at com.sap.security.core.persistence.imp.DistributedTransaction.afterCompletion(DistributedTransaction.java:252)
         at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:414)
         at com.sap.engine.services.ts.jta.impl.TransactionManagerImpl.commit(TransactionManagerImpl.java:316)
         at com.sap.engine.services.ts.transaction.TxManager.commitLevel(TxManager.java:581)
         at com.sap.engine.services.ts.transaction.TxManagerImpl.commitLevel(TxManagerImpl.java:63)
         at com.sap.transaction.TxManager.commitLevel(TxManager.java:237)
         at com.sap.security.core.persistence.imp.DistributedTransaction.commit(DistributedTransaction.java:2742)
         at com.sap.security.core.imp.Role.commit(Role.java:337)
         at com.sap.security.core.imp.RoleFactory.addUserToRole(RoleFactory.java:1338)
         at com.sap.user.UserAdded.doContent(UserAdded.java:63)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.doPreview(AbstractPortalComponent.java:240)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:168)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Please tell me where I am wrong.
    Regards,
    Shilpa.

    Hi Shilpa,
    The error "java.lang.NoClassDefFoundError" means that your classpath is not set correctly. This is likely due to a missing reference. The class file may be in the jar, but at runtime the component (your component) needs to have access to the jar file which contains the class.
    Try adding the servlet.jar, activation.jar file in your project and also through your ADd external libraries at 'java build path'. also please ensure tht WAS and NWDS at the same SP level.
    Hope this might help you.
    Regards,
    Shaila

  • Unable to assign all security roles to a user with a new custom security role

    Dear All,
    Happy New Year.!
    I have a query regarding the assignment of Security Roles to new users in CRM. Normally we assign the security roles to new users via an Admin user who has 'System Administrator' security role assigned to him/her. This works perfectly fine, and we can assign
    any desired security role to the new user.
    However, in our case, we need to delegate the user creation rights to some of the client partners. We do not want to give them access to all the Administration functions; hence we created a new Security Role, lets say 'Support User Role'. We have provided
    'Create', 'Append', 'Append To', and 'Assign' rights on 'User' entity for this new security role. With this security role, we are able to create new users now, but we are only able to assign 'Agent' security role, not any other security roles.
    For example, if user 'x' has Security Role defined as 'Support User Role'. If 'x' tries to add a new user 'y', then 'x' is only able to assign 'Agent' security role to 'y', but not any other security role. As per business requirement, 'x' should be able
    to assign some other security roles, including 'Support User Role', to new user 'y'.
    I believe that there is something missing in Security Role configuration, which is causing the above problem. We compared both 'Support User Role' and 'System Administrator' security roles, but not able to figure out which minimum rights we can provide to
    'Support User Role' so that users with this security role can only add new users (with any security role), and that they are not having access on any other Administration features as well.
    Appreciate any help that you can provide on the above issue.
    Thanks in anticipation.

    Hi,
    Can you check if you have organization level Read access for Securitity Role and Organization level Assign access for Security role.
    Refer:-
    http://www.magnetismsolutions.com/blog/paulnieuwelaar/2013/04/22/permissions-required-to-manage-roles-in-dynamics-crm-2011
    Hope this helps!!!
    Thanks,
    Prasad
    Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question

  • One CUP request for assigning role to multiple users

    Hi,
    We assign roles to users in production only through CUP requests.. We use GRC 5.3
    Here we have a case where we need to assign one role to  60 users in production(each user may have different  roles assigned in the back end) . I can raise one CUP request for all users using " multi-user" option in Copy request . But when we want to make a risk analysis , it will not show risks at user level as each user had different roles and may get different risks by adding new role.
    Instead it will give risks if any for only that new role which want to assign. Our manager is not accepting as this is not giving complete picture of risks for each user when we add new role.
    Please suggest me if there is any other way where I can make a risk analysis for each user when I created a CUP request for multiple users.
    Or the only solution is to create 60 CUP requests ?? this would be too manual
    Regards ,
    jaags

    Raghu,
    thanks for the reply, you are right as per the audit .But suppose if it is for 200 users ,creating 200 CUP requests will be impractical right.
    there should be some solution for this , because there will be many situations practically where we have to assign roles to N number of users.
    Is this possible in GRC 10 ? any idea ?
    Regards,
    Jaags

  • Roles appearing in User managment but not in Users Form

    I have used the WF_LOCAL_SYNCH.propagateUserRole API to add roles to new and existing users in our production instance. That seemed to go well.
    When I view that user through the user management screen I see that he has the role assigned to them. Yet when he logs on he cannot see the role. When I view the user through the user form the indirect responsibility is not showing up.
    We have run the Workflow Directory Services User/Role Validation against the user with the following parameters:
    p_BatchSize – 10000 (Default Value 10000)
    p_Check_Dangling – Yes (Default value No)
    Add missing user/role assignments – Yes (Default Value No)
    Update WHO columns in WF tables – No (Default Value No)
    That has worked for some people but not all.
    Does anyone know what is going on or how to fix this?

    this you can find in Web console
    configuration>>user configuration>>action>>attributes
    I am able to add attribute but not able to make field as mandatory,while creating attribute we are not getting option like that you want this field mandatory or not but while modifying the attribute we are getting option like required field radio button if i select that i am getting error "you cant change an attribute to required unless all the user have value for this field"

  • Add Role To Business Partner

    Hi,
    I am using BAPI "BAPI_BUPA_ROLE_ADD_2" to add a Role to Business Partner.
    When i try to do that manually using transaction BP, in change mode i select the role to be added and SAVE. The role gets added to the BP.
    But when i try the same using BAPI, it does not work. The code is written as below.
    -- code ---
    DATA IT_BAPIRET2 TYPE TABLE OF BAPIRET2.
    CALL FUNCTION 'BAPI_BUPA_ROLE_ADD_2'
      EXPORTING
        BUSINESSPARTNER     = '900001'
        BUSINESSPARTNERROLE = 'TR0809'
      TABLES
        RETURN              = IT_BAPIRET2.
    COMMIT WORK.
    After which i go to the Table BUT100, give the Business partner number, No records are found.
    Please give me a solution or an alternative to add role to BP.
    Regards,
    Santosh

    Hi,
    IT_BAPIRET2  is Initial. No Error Messages.
    I don't get any error messages. i.e.  IT_BAPIRET2 is not filled with any messages.
    Additional Info:
    Only when i run the BAPI directly from SE37 Tcode, first time IT_BAPIRET2  is initial. Second Time if i just come back ( without doing /NSE37 ), if i just execute , Then it says the Role 'T...' already exists.
    But if i execuet the same BAPI again /NSE37 , IT_BAPIRET2  is initial.
    Thought the reason would be because of Memory / Buffer.
    After which i go to Tcode BP see if the role is added to the Partner number. It does not happen. Also tries looking into the Table BUT100, it does not appear there.
    Then tried executing the BAPI from SE38 giving a commit work. Thinking Commit work is not happening when its being executed from SE37.
    But the same result, is there anything which i have to look into.
    Or an alternative function module which i can try.
    please suggest.
    regards,
    Santosh

  • Assigning different authorizations inside a role to different users

    Hello,
    Could someone please guide me to how can we assign different authorizations (authorizations field values) for an authorization object inside a role to different users; i.e. in the role maintenance transaction (pfcg) after we create a new role and add an authorization object to it, if this authorization object has several authorizations (authorization field values), and if I need to add two users to that role, how can I assign to one user an authorization different from that assigned to the other user ?
    Thank you in advance.
    Best regards.
    Reda Khalifa
    IT Department - Almansour Automotive Group - Egypt

    Hi Reda,
    That documentation complicates the subject slightly as it is talking about principles that are at a lower level than the usual role level.
    We have 1 authorisation object - S_TRVL_BKS
    Authorisations have been created for this object, called S_TRVL_CUS1 and S_TRVL_CUS2
    In this context, an authorisation is an instance of an authorisation object that has been populated with data.
    Before the profile generator you used to create authorisations (auth objects populated with data) and assign them to profiles which are then assigned to users.
    In this example 2 profiles would be needed
    Profile1: S_TRVL_CUS1 and S_TRVL_CUS2
    Profile2: S_TRVL_CUS2
    Miller would be assigned profile1, Meyers would be assigned profile2
    The profile generator allows us to easily build authorisations and profiles and packages them up in a role.  This way, we can assign transactions and authorisation objects into a role, populate the authorisations (which is what we do in the authorisations tab in the role) and automatically create the profile.
    The example in the documentation is still valid because it requires 2 seperate authorisations (and therefore profiles and roles) to be assigned to different people.  Unfortunately this is not explained very well in the documentation.
    I hope that makes sense, roles are static and the permissions that they give do not vary dynamically.   In BW we can use variables to do something similar and to some extent structural authorisations in HR work dynamically however this doesn't apply to R/3 or ECC.  (it can be done in come cases but costs many, many £££/$$$'s)
    Please let me know if you want me to elaborate further on this
    Cheers
    Alex

  • DBUM 9.1.0.4.0 add role task rejected

    Hi all, I'm facing some problems with dbum connector. When i'm provisioning a user, the account is being created in target system but roles are not being granted. When I see "Resource History" i notice that the "Add Role or Grant" task is rejected. The user has all the permissions.
    does somebody face something like this?. Every response will be appreciated,
    thanks in advance,
    Guido

    thanks for your quick response. I made the same test (grant role) in db (oracle db) with the same user that is configured in the IT resource and it worked fine, so i think that user's privilegies are not the trouble here.
    here is the log:
    [2012-10-31T19:22:58.665-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.common.db.util.DBConnection : getNonPooledConnection:: FINISHED
    [2012-10-31T19:22:58.669-03:00] [oim_server1] [ERROR] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [APP: oim#11.1.1.3.0] ================= Start Stack Trace =======================
    [2012-10-31T19:22:58.670-03:00] [oim_server1] [ERROR] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [APP: oim#11.1.1.3.0] oracle.iam.connectors.dbum.common.db.util.DBUtil : executeQuery
    [2012-10-31T19:22:58.671-03:00] [oim_server1] [ERROR] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [APP: oim#11.1.1.3.0] Error occurred while trying to execute query.
    [2012-10-31T19:22:58.672-03:00] [oim_server1] [ERROR] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [APP: oim#11.1.1.3.0] Description : ORA-01741: identificador de longitud cero no válido[[
    [2012-10-31T19:22:58.673-03:00] [oim_server1] [ERROR] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [APP: oim#11.1.1.3.0] java.sql.SQLSyntaxErrorException: ORA-01741: identificador de longitud cero no válido[[
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1074)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1466)
         at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:2224)
         at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:2168)
         at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:333)
         at oracle.iam.connectors.dbum.common.db.util.DBUtil.executeQuery(Unknown Source)
         at oracle.iam.connectors.dbum.common.db.util.DBUtil.executeQuery(Unknown Source)
         at oracle.iam.connectors.dbum.operation.DBUMDatabaseOperation.executeQuery(Unknown Source)
         at oracle.iam.connectors.dbum.integration.DBUMProvisionProxyManager.executeQuery(Unknown Source)
         at oracle.iam.connectors.dbum.integration.DBUMProvisionManager.executeQuery(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpDBUMEXECUTEQUERY.EXECUTEQUERY(adpDBUMEXECUTEQUERY.java:178)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpDBUMEXECUTEQUERY.implementation(adpDBUMEXECUTEQUERY.java:87)
         at com.thortech.xl.client.events.tcBaseEvent.run(tcBaseEvent.java:196)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(tcDataObj.java:2492)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(tcScheduleItem.java:2917)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(tcScheduleItem.java:547)
         at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:602)
         at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
         at com.thortech.xl.dataobj.tcOrderItemInfo.processChildTableChange(tcOrderItemInfo.java:655)
         at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostInsert(tcOrderItemInfo.java:184)
         at com.thortech.xl.dataobj.tcUDProcess.eventPostInsert(tcUDProcess.java:234)
         at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:602)
         at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
         at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2906)
         at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.addProcessFormChildData(tcFormInstanceOperationsBean.java:1929)
         at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.addProcessFormChildData(tcFormInstanceOperationsBean.java:1593)
         at Thor.API.Operations.tcFormInstanceOperationsIntfEJB.addProcessFormChildDatax(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy352.addProcessFormChildDatax(Unknown Source)
         at Thor.API.Operations.tcFormInstanceOperationsIntfEJB_h6wb8n_tcFormInstanceOperationsIntfRemoteImpl.__WL_invoke(Unknown Source)
         at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
         at Thor.API.Operations.tcFormInstanceOperationsIntfEJB_h6wb8n_tcFormInstanceOperationsIntfRemoteImpl.addProcessFormChildDatax(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
         at $Proxy175.addProcessFormChildDatax(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy351.addProcessFormChildDatax(Unknown Source)
         at Thor.API.Operations.tcFormInstanceOperationsIntfDelegate.addProcessFormChildData(Unknown Source)
         at com.thortech.xl.webclient.actions.DirectProvisionUserAction.handleVerifyProcessData(DirectProvisionUserAction.java:2093)
         at com.thortech.xl.webclient.actions.DirectProvisionUserAction.goNext(DirectProvisionUserAction.java:363)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:269)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(tcLookupDispatchAction.java:133)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(tcActionBase.java:894)
         at com.thortech.xl.webclient.actions.tcAction.execute(tcAction.java:213)
         at org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
         at org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
         at org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
         at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
         at org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
         at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
         at org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.CSRFFilter.doFilter(CSRFFilter.java:76)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:121)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:107)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    [2012-10-31T19:22:58.674-03:00] [oim_server1] [ERROR] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [APP: oim#11.1.1.3.0] ================= End Stack Trace =======================
    [2012-10-31T19:22:58.674-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.common.db.util.DBConnection : closeConnection:: STARTED
    [2012-10-31T19:22:58.675-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.common.db.util.DBConnection : closeConnection : Connection closed....
    [2012-10-31T19:22:58.677-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.common.db.util.DBConnection : closeConnection:: FINISHED
    [2012-10-31T19:22:58.678-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionProxyManager : executeQuery : result:- 1741
    [2012-10-31T19:22:58.679-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionProxyManager : executeQuery:: FINISHED
    [2012-10-31T19:22:58.679-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionManager : executeQuery : Error code received: 1741
    [2012-10-31T19:22:58.680-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionManager : getErrorCodeKey:: STARTED
    [2012-10-31T19:22:58.681-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionManager : getErrorCodeKey : return code to be looked for:1741
    [2012-10-31T19:22:58.681-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionManager : getErrorCodeKey : Error code lookup name :Lookup.DBUM.Oracle.Error.Mapping
    [2012-10-31T19:22:58.682-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.common.dao.OIMUtil : getLookUpMap():: STARTED
    [2012-10-31T19:22:58.683-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.common.dao.OIMUtil : getLookUpMap() : LookUpName : Lookup.DBUM.Oracle.Error.Mapping
    [2012-10-31T19:22:58.695-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.common.dao.OIMUtil : getLookUpMap():: FINISHED
    [2012-10-31T19:22:58.696-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionManager : getErrorCodeKey : Error code lookup map :{959=INVALID_TABLE_NAME, 1935=MISSING_ROLE, 1920=USER_ALREADY_EXIST, 1031=INSUFFICIENT_PRIVILEGE, 50004=CHILDNAME_NOT_PROVIDED, 900=INVALID_SQL, 998=INVALID_PASSWORD}
    [2012-10-31T19:22:58.697-03:00] [oim_server1] [TRACE] [] [OIMCP.DBUM] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b66,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] oracle.iam.connectors.dbum.integration.DBUMProvisionManager : getErrorCodeKey:: FINISHED
    [2012-10-31T19:22:58.946-03:00] [oim_server1] [NOTIFICATION] [IAM-0060016] [oracle.iam.platform.auth.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b68,0] [APP: oim#11.1.1.3.0] La dirección IP desde la que se dispara el explorador es 130.120.5.9
    [2012-10-31T19:22:58.950-03:00] [oim_server1] [NOTIFICATION] [IAM-0060016] [oracle.iam.platform.auth.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b6a,0] [APP: oim#11.1.1.3.0] La dirección IP desde la que se dispara el explorador es 130.120.5.9
    [2012-10-31T19:22:58.950-03:00] [oim_server1] [NOTIFICATION] [IAM-0060016] [oracle.iam.platform.auth.impl] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b6c,0] [APP: oim#11.1.1.3.0] La dirección IP desde la que se dispara el explorador es 130.120.5.9
    [2012-10-31T19:22:58.950-03:00] [oim_server1] [NOTIFICATION] [IAM-0060016] [oracle.iam.platform.auth.impl] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b6e,0] [APP: oim#11.1.1.3.0] La dirección IP desde la que se dispara el explorador es 130.120.5.9
    [2012-10-31T19:22:58.967-03:00] [oim_server1] [NOTIFICATION] [IAM-0060016] [oracle.iam.platform.auth.impl] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b70,0] [APP: oim#11.1.1.3.0] La dirección IP desde la que se dispara el explorador es 130.120.5.9
    [2012-10-31T19:23:06.811-03:00] [oim_server1] [NOTIFICATION] [IAM-0060016] [oracle.iam.platform.auth.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] La dirección IP desde la que se dispara el explorador es 130.120.5.9
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010010] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] ********** Entrando en el segmento de autorización con los parámetros:: LoggedInUserId = 1, target resourceID = 126, Feature = USER_MANAGEMENT, Action = VIEW_USER_DETAILS **********
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010029] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] Se han encontrado resultados de OES en caché con la clave F: USER_MANAGEMENTS: 1P: VIEW_USER_DETAILSOESDefinition
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010021] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] Validando las obligaciones internas: [InternalObligation: name: VIEW_USER_DETAILS, values: [ALL_ATTRIB_OBLI], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false, InternalObligation: name: MODIFY_USER_PROFILE, values: [ALL_ATTRIB_OBLI], convertToObligation: false, InternalObligation: name: VIEW_USER_DETAILS, values: [ALL_ATTRIB_OBLI], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false, InternalObligation: name: MODIFY_USER_PROFILE, values: [ALL_ATTRIB_OBLI], convertToObligation: false]
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010022] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] ---------- Se ha cumplido la lista de obligaciones internas, devolviendo TRUE ----------
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010021] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] Validando las obligaciones internas: [InternalObligation: name: VIEW_USER_DETAILS, values: [usr_key, LDAP GUID, Status, usr_manager_key, User Login], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false]
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010022] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] ---------- Se ha cumplido la lista de obligaciones internas, devolviendo TRUE ----------
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010021] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] Validando las obligaciones internas: [InternalObligation: name: VIEW_USER_DETAILS, values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false, InternalObligation: name: VIEW_USER_DETAILS, values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false, InternalObligation: name: VIEW_USER_DETAILS, values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false, InternalObligation: name: VIEW_USER_DETAILS, values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key], convertToObligation: true, InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: UDCAO, values: [true], convertToObligation: false]
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010022] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] ---------- Se ha cumplido la lista de obligaciones internas, devolviendo TRUE ----------
    [2012-10-31T19:23:06.834-03:00] [oim_server1] [NOTIFICATION] [IAM-1010026] [oracle.iam.platform.authz.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: b5b137796995ea37:-53f1ad5e:13ab2c66c07:-8000-0000000000006b72,0] [APP: oim#11.1.1.3.0] ********** Saliendo del segmento de autorización con resultado Decision :PERMIT[[
    Obligations from policy:
    Name: VIEW_USER_DETAILS values: [ALL_ATTRIB_OBLI]
    Name: UDCAO values: [true]
    Name: MODIFY_USER_PROFILE values: [ALL_ATTRIB_OBLI]
    Name: VIEW_USER_DETAILS values: [ALL_ATTRIB_OBLI]
    Name: UDCAO values: [true]
    Name: MODIFY_USER_PROFILE values: [ALL_ATTRIB_OBLI]
    Obligations from policy:
    Name: VIEW_USER_DETAILS values: [usr_key, LDAP GUID, Status, usr_manager_key, User Login]
    Name: UDCAO values: [true]
    Obligations from policy:
    Name: VIEW_USER_DETAILS values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key]
    Name: UDCAO values: [true]
    Name: VIEW_USER_DETAILS values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key]
    Name: UDCAO values: [true]
    Name: VIEW_USER_DETAILS values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key]
    Name: UDCAO values: [true]
    Name: VIEW_USER_DETAILS values: [usr_key, Full Name, Display Name, User Login, First Name, Last Name, act_key, Status, usr_manager_key]
    Name: UDCAO values: [true] **********
    thanks again!
    Guido

  • SSAS 2012 , Role- Limit of users

    Hi Experts , 
    I am working on SSAS 2012 Cube .
    I am implementing Security on my cube for which I have created 2 Roles.
    Question: I need to know how many users can be added in one Role (Member Ship Tab)? What is the maximum limit ??

    Hi Rihan,
    According to your description, you want to know the maximum number of users can be add into a role, right?
    Here is a document that the list the maximum sizes and numbers of various objects defined in Analysis Services components under different server deployment modes.
    http://technet.microsoft.com/en-us/library/ms365363(v=sql.110).aspx
    However, the maximum number of users can be add into a role is not specify on that document. As per my understanding, we can add any numbers of users to the role as we want. In your scenario, how many users do you need to add into this role?
    If you really need to know the maximum number, you can open a support case with Microsoft. Visit this link to see the various support options that are available to better meet your needs:
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Regards,
    Charlie Liao
    TechNet Community Support

  • Function module to get the roles assigned to user

    Hi to all experts,
    I need a fm to retrieve the roles assigned to user .
    if a pass sy-uname as importing parameter i should to get all the roles assigned to that particular user

    hai,
    please try this.
    /VIRSA/RE_BAPI_CREATE_ROLE- Create Roles
    /VIRSA/ROLE_ASSIGN_CUA_NH
    /VIRSA/RE_BAPI_ROLE_TO_USERS
    ASSIGN_USERS_HIERARCHY - User Assignment to Role - this is a Normal FM
    try this bapis this may work
    BAPI_USER_LOCK
    - BAPI_USER_PROFILES_ASSIGN
    - BAPI_USER_LOCPROFILES_ASSIGN
    - BAPI_USER_LOCACTGROUPS_ASSIGN
    - BAPI_USER_CHANGE
    - BAPI_USER_UNLOCK

Maybe you are looking for

  • Adding namespace prefix to the XMLa root element

    I am facing a problem in our application. I am assigning an XML content to a XSD variable. While assignment operation is performed the prefix of the XML root element alone is getting replaced with default namespace, though the source XML has the pref

  • How to display All User Logged in time & Logout Time?

    How to display All User Logged in time & Logout Time? Hi.. I want to display All user who logged in the portal, their username, their time logged in, their time logged out.. where can i find these information? do Portal have already something like th

  • Invalid code in the column and DUMP function

    Hi all, My DB is 11.1 and Character set is UTF8. After ETL, I find some invalid characters appear in my tables, one of which is '�'. Since they are history data, I can't find the source data for them. The only choice for me now seems to remove all of

  • Mail always being sent from first account

    When I click "reply", my mail always goes out from my eathlink account, even if the original email came in on my website account. I have to manually change it, to have it go out from website account. How can I set the default so all my mails now are

  • Edi Inbound program

    hI Experts, Can any body help me how to write Inbound program in EDI with Technical Description. My requirement ls like this When the company is paying amount to vendors, The company has to send amount information to bank by using transaction F110. W