User Management in JSP

hi all,
i want to make a user managment for already built web Site, i want to make a isolate type of User management system so i can easily embed it in different web site.
can any one suggest me any good tutorial , article or any sample code?
thx

http://sourceforge.net/projects/bofhms
http://sourceforge.net/projects/cw-ums
http://sourceforge.net/projects/jgum
http://sourceforge.net/projects/minpo
http://sourceforge.net/projects/corendaldiry
http://freshmeat.net/projects/opa/

Similar Messages

  • Supplier User Management- Register Supplier User

    Supplier User Management > Register Supplier User
    I do this on the form and it sets up a supplier user with no problem. It even sets up the securing attribute for the user with the iSupplier Portal id.
    Is there a way to do this registering on the backend? An API I don't know about? Or some other way to do this?
    Thanks

    Not sure about APIsor WFlows, but I did some work on iSupplier a while ago, and found this SQL useful.
    #       iSUPPLIER APPS.PO_SUPPLIER_USERS_V VIEW
            GENERATES LIST OF iSUPPLIER USERS
            LINKED TO SUPPLIER TABLES
    SELECT *
      FROM apps.po_supplier_users_v;
    #        iSUPPLIER EXTERNAL SUPPLIER REGISTRATIONS
    SELECT   *
        FROM pos.pos_supplier_registrations psr
    ORDER BY psr.creation_date DESC;
    #        iSUPPLIER FND REGISTRATIONS
    SELECT fr.registration_id
         , fr.creation_date
         , DECODE(
              fr.registration_type
            , 'POS_REG', 'BY_CCC'
            , 'POS_SUPP_REG', 'ONLINE'
           ) status
         , fr.registration_status
         , fr.user_title
         , fr.first_name
         , fr.middle_name
         , fr.last_name
         , fr.email
         , fr.phone
         , fr.requested_user_name
      FROM apps.fnd_registrations fr;
    #        iSUPPLIER PRODUCTS AND SERVICES
    SELECT *
      FROM apps.pos_sup_products_services psps
         , apps.fnd_lookup_values_vl
    WHERE psps.vendor_id = '65352'
       AND fnd_lookup_values_vl.lookup_type = 'POS_SUP_PROD_SVC_STATUS'
       AND fnd_lookup_values_vl.lookup_code = psps.status
       AND fnd_lookup_values_vl.enabled_flag = 'Y'
       AND fnd_lookup_values_vl.start_date_active < SYSDATE
       AND (
               fnd_lookup_values_vl.end_date_active IS NULL
            OR fnd_lookup_values_vl.end_date_active > SYSDATE
    #        iSUPPLIER BANK ACCOUNT CHECKING
    SELECT   psbar.creation_date
           , psbar.request_status
           , fu.description supplier_user
           , fu.user_name supplier_username
           , pv.vendor_name supplier
           , psbar.last_update_date
           , fu2.user_name last_updated_by_userid
           , fu2.description last_updated_by_name
           , psbar.bank_name
           , psbar.bank_number
           , psbar.bank_branch_name
           , psbar.bank_branch_number
           , psbar.bank_branch_type
           , psbar.bank_account_name
           , psbar.bank_account_number
           , psbar.account_description
           , psbar.account_type
           , psbar.account_holder_name
           , psbar.notes_from_supplier
           , psbar.notes_from_buyer
           , psbar.address_line1
           , psbar.address_line2
           , psbar.address_line3
           , psbar.address_line4
           , psbar.city
           , psbar.county
           , psbar.state
           , psbar.zip
        FROM pos.pos_sup_bank_account_requests psbar
           , applsys.fnd_user fu
           , applsys.fnd_user fu2
           , po.po_vendors pv
       WHERE psbar.created_by = fu.user_id
         AND psbar.last_updated_by = fu2.user_id
         AND psbar.vendor_id = pv.vendor_id
         AND pvsa.purchasing_site_flag = 'Y'
    ORDER BY 1 DESC;
    #       iSUPPLIER APPS.PO_SUPPLIER_USERS_V VIEW
            GENERATES LIST OF iSUPPLIER USERS
            LINKED TO SUPPLIER TABLES
    SELECT   fnd_user.user_name user_name
           , fnd_user.creation_date user_creation_date
           , fnd_user.last_logon_date
           , po_vendors.vendor_name supplier
           , po_vendors.vendor_id supplier_id
              user_parties.person_first_name || ' '
              || user_parties.person_last_name
             ) user_party_full_name
           , user_parties.email_address
        FROM apps.fnd_user
           , apps.hz_parties user_parties
           , apps.hz_parties company_parties
           , apps.po_vendors
           , apps.hz_relationships vendor_relationship
           , apps.hz_relationships employment_relationship
       WHERE fnd_user.person_party_id = user_parties.party_id
         AND employment_relationship.object_id = company_parties.party_id
         AND employment_relationship.subject_id = user_parties.party_id
         AND employment_relationship.relationship_type = 'POS_EMPLOYMENT'
         AND employment_relationship.relationship_code = 'EMPLOYEE_OF'
         AND employment_relationship.start_date <= SYSDATE
         AND employment_relationship.end_date >= SYSDATE
         AND vendor_relationship.object_id = po_vendors.vendor_id
         AND vendor_relationship.subject_id = company_parties.party_id
         AND vendor_relationship.relationship_type = 'POS_VENDOR_PARTY'
         AND vendor_relationship.relationship_code = 'PARTY_OF_VENDOR'
         AND vendor_relationship.start_date <= SYSDATE
         AND vendor_relationship.end_date >= SYSDATE
         AND fnd_user.last_logon_date IS NOT NULL
    ORDER BY 2 DESC;
    #        iSUPPLIER SPECIFIC PROFILES
    SELECT DECODE(
              fpov.level_id
            , 10001, 'Site'
            , 10002, 'Application'
            , 10003, 'Responsibility'
            , 10004, 'User'
            , NULL, 'Not Set'
           ) profile_level
         , mw_level_values.mw_set_against set_against_id
         , fu.description person
         , fpot.user_profile_option_name
         , fpot.description
         , fpo.profile_option_name
         , fpov.profile_option_value
         , fpov.last_update_date
         , fpov.last_updated_by
      FROM applsys.fnd_profile_option_values fpov
         , applsys.fnd_profile_options fpo
         , applsys.fnd_profile_options_tl fpot
         , applsys.fnd_user fu
         -- TABLE BELOW GROUPS ALL DATA INTO A BIG UNION FOR USE LATER ON
         -- ALL RESPS, ALL APPLICATIONS, AND ALL USERS
    ,      (SELECT '10001 0' mw_level_id
                 , 'Set at Site Level' mw_set_against
              FROM DUAL
            UNION
            SELECT '10002 ' || fat.application_id
                 , fat.application_name
              FROM applsys.fnd_application_tl fat
            UNION
            SELECT '10003 ' || frt.responsibility_id
                 , frt.responsibility_name
              FROM applsys.fnd_responsibility_tl frt
            UNION
            SELECT '10004 ' || fu.user_id
                 , fu.user_name
              FROM applsys.fnd_user fu) mw_level_values
    WHERE fpo.profile_option_id = fpov.profile_option_id(+)
       AND fpot.profile_option_name = fpo.profile_option_name
       AND fpov.level_id || ' ' || fpov.level_value = mw_level_values.mw_level_id(+)
       AND mw_level_values.mw_set_against = fu.user_name(+)
       AND fpo.end_date_active IS NULL
    --   AND LOWER(mw_level_values.mw_set_against) LIKE
    --                           '%ccc internet procurement catalog administration%'
    --   AND LOWER(fpov.profile_option_value) LIKE '%gov%'
    --   AND LOWER(fpot.user_profile_option_name) LIKE '%one%time%'
    --   AND fpot.profile_option_name LIKE '%FND_OA_ENABLE_DEFAULTS%'
       AND fpot.user_profile_option_name IN
              ('POS: External Responsibility Flag', 'Apps Servlet Agent'
             , 'Application Framework Agent', 'Applications Servlet Agent'
             , 'Applications JSP Agent', 'Applications Web Agent'
             , 'Default Country', 'Node Trust Level', 'HZ: Generate Party Number'
             , 'Applications Portal Logout', 'GUEST_USER_PWD'
             , 'iSP Default Responsibility For External User'
             , 'POS: Allow Invoice Backdating'
             , 'POS: Default Responsibility for Newly Registered Supplier Users'
             , 'PON: External Application Framework Agent', 'POS: External URL'
             , 'Sourcing Default Responsibility For External User'
             , 'Responsibility Trust Level', 'Default Country'
             , 'GL Set of Books Name', 'Applications Portal Logout');

  • Can only see User Management in Admin Tools

    I configured an LDAP realm and included the required admin group to access
    the Administration Tools. However, the only thing I can see in
    Administration Tools is User Management. Why is that?

    Wendy,
    Would it be possible for you to send us a file from your LDAP directory
    server? Please forward this information to the support case you have open.
    In the \iPlanet\Servers\slapd-yourhost\config directory.
    Send the dse.ldif file.
    Basically what we want to do is to compare the user and group dn values
    specified in the vlvBase lines with your config.xml. Also grab the
    string that starts with creatorsname ... look for something like
    creatorsName:
    uid=admin,ou=administrators,ou=topologymanagement,o=netscaperoot
    The principal value in the config.xml will be the creatorsName string.
    Set the principal string in config.xml should be something like
    Principal="uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot"
    unless your iPlanet schema has been changed.
    So, in the config.xml LDAPRealm definition explicitly set Group is context.
    GroupIsContext="false"
    Set the AuthProtocol to simple.
    Your config.xml LDAPRealm definition should have 13 fields and look
    something like:
    <LDAPRealm
    AuthProtocol="simple"
    Credential="password"
    GroupDN="o=beasys.com, ou=Groups"
    GroupIsContext="false"
    GroupNameAttribute="cn"
    GroupUsernameAttribute="uniquemember"
    LDAPURL="ldap://myhost.beasys.com:389"
    Name="myLdapRealmV1"
    Principal="uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot"
    SSLEnable="false"
    UserAuthentication="bind"
    UserDN="o=beasys.com, ou=People"
    UserNameAttribute="uid"/>
    -- Jim
    Wendy Kajiyama wrote:
    Hi,
    iPlanet 5.0, no service pack.
    I got the user and group DN from our Network Admin.
    "Jim Litton" <[email protected]> wrote in message
    news:[email protected]...
    Wendy,
    Can you also supply the vendor and version number of your directory
    server?
    I was looking at your config.xml from your support case and I am
    unfamiliar with the user DN and group DN strings you are using.
    Where did you find the syntax for those strings? Is that particular
    string syntax documented somewhere on the LDAP vendors site?
    Jim Litton
    Developer Relations
    Ture Hoefner wrote:
    Hello Wendy,
    I suspect a configuration problem in the LDAPRealm, but it is possible
    that you have a P13N-only license. That is probably a long-shot because
    I
    don't know if we sell those any more. You are using Portal 7.0, right?
    I can try to help... can you answer these questions:
    * which version?
    * After you log into as "administrator" (who is a member of
    "SystemAdministrator"), can you access the Group Management tools and
    see
    the "SystemAdministrator" group and the list of users who belong to that
    group?
    * Do the all of the users and groups that you see match what you have
    in
    your LDAP server?
    "Wendy Kajiyama" <[email protected]> wrote in message
    news:[email protected]...
    Hi Ture,
    Thanks for your reply. Unfortunately, after contacting support and
    receiving the patch for LDAP I am still having the problem of not being
    able
    to see the icons in Admin Tools.
    Any other ideas?
    Thanks,
    wendy
    "Ture Hoefner" <replyto@newsgroup> wrote in message
    news:[email protected]...
    Hi Wendy,
    Which version?
    After you log into as "administrator" (who is a member of
    "SystemAdministrator"), can you access the Group Management tools and
    see
    the "SystemAdministrator" group and the list of users who belong to
    that
    group? Does it match what you have in your LDAP server? If you cannot
    list
    members of groups in your Portal JSP admin tool then contact support
    and
    ask
    for the patch that fully enables WLS's LDAPRealm for use with Portal
    (it
    is
    CR070870 for Portal 4.0, I don't know if there is a patch for 7.0, or
    if
    it
    is included in a SP for 7.0...)
    If you are able to list the users in a group then make sure you have
    the
    group "SystemAdministrator", not "SystemAdministrators".
    I've used delegated portal administration with LDAPRealm for 7.0 so I
    know
    it works. I suspect a configuration issue. I will try to help you
    figure
    it out.
    "Wendy Kajiyama" <[email protected]> wrote in message
    news:[email protected]...
    yup, i set up LDAP to have the required administrator groups and log
    in
    the
    admin tools as administrator which is a user in the
    SystemAdministrator
    group.
    "kurt c" <[email protected]> wrote in message
    news:[email protected]...
    could this not be a permissions issue? are you logged in as
    'administrator'?
    "Wendy Kajiyama" <[email protected]> wrote:
    I checked to see if ebusiness.jar was in my application and it's
    there.
    Any
    other ideas?
    Thanks!
    wendy
    "Peter Laird" <[email protected]> wrote in message
    news:[email protected]...
    Wendy,
    You may be seeing CR081150, which is a bug report regarding the
    removal
    of
    ebusiness.jar
    from your application. If you remove this JAR, the admin tool
    fails
    to
    load certain
    EJBs which cause it to only display more than the user tool. The
    workaround is
    to put ebusiness.jar back into your applicaiton. If this is
    unacceptable,
    contact
    Support and they will work with you.
    Cheers,
    PJL
    "Wendy Kajiyama" <[email protected]> wrote:
    I configured an LDAP realm and included the required admin group
    to
    access
    the Administration Tools. However, the only thing I can see in
    Administration Tools is User Management. Why is that?

  • OIM 9.1.0 with Database User Management: Connector Exception upon Connect

    Hi,
    I've been struggling with the Database User Management connector (9.0.4) with Sybase, following the steps word-for-word as per the documentation (Oracle® Identity Manager Connector Guide for Database User Manage Release 9.0.4; E10425-0; July 2009).
    When defining the IT Resource through the Install Connector wizard, I get the following when it does a connection test:
    14:51:52,795 ERROR [WEBAPP] Class/Method: CreateITResourceAction/testConnectivityForDataBase/ClassNotFoundException encounter some problems: No ClassLoaders found for: com.sybase.jdbc2.jdbc.SybDriver
    java.lang.ClassNotFoundException: No ClassLoaders found for: com.sybase.jdbc2.jdbc.SybDriver
    even though I've ensured jconn2.jar is in the ThirdParty directory, reflushed the cache, and restarted OIM; the connector still can't seem to load the driver.
    I've tried the database testing script with similar results.
    Any thoughts?
    Cheers
    Simon
    PS: I believe v5.5 of JConnect (as required by the OIM Connector) has been EOL'd and Sybase. They recommend you use v6.0 (v6 is jconn3.jar)), which from what I can see should work as com.sybase.jdbc3.jdbc.SybDriver; I tried that as well but had the same ClassNotFoundException.

    I've fixed it; needed to copy jconn2.jar into the $JBOSS_HOME/lib directory and restart the server.

  • Can not launch user manager

    Hello,
    I just installed Lookout 6.0 , the OS is Windows 2000, and not install
    any NI's DSC module. When choose the menu Options>>user manager
    and trying to launch it , there always popup an error message : could
    not start the user manager. Please advise what is wrong and how to
    repair it. Thanks.
    David

    This may help you... 
    http://digital.ni.com/public.nsf/allkb/6ABE5C9554F285D386256E9B0066156E
    -Khalid

  • SAPJSF user cannot log-on to the User Management Engine.

    We have a newly installed PI 7.0 system.
    SLDCHECK is succussful but if we go to the http://hostname:50100/sld - we are redirected to http://hostname:50100/logon/logonServlet?redirectURL=%2Fwebdynpro%2Fdispatcher%2Fsap.com%2Ftc%7Esld%7Ewd%7Emain%2FMain
    When we check the default.trc file, we see the error: User "SAPJSF" is the communication user for the connection between User Management Engine and the ABAP backend system SIDCLNTxyz. This user cannot log-on to the User Management Engine.
    The SAPJSF user is not locked in SU01.  This user is used by the JCO providers to connect to the gateway service.
    We opened Visual Administrator and navigated to Server0 -> Services -> UM Provider
    We changed the password  property at ume.r3.connection.master.passwd
    We then restarted the ABAP and J2EE engine.  But we still see this error.
    Any help to solve this issue is appreciate.
    Jay Malla

    Hi,
    Please, refer the link below. It says you cannot logon with SAPJSF user to J2EE engine for security reasons.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4e/225b42eeb66255e10000000a155106/frameset.htm
    Thanks
    R.Murali

  • User Management - How to submit Additional Access Request on behalf of employee

    User Management - how can we configure "Access Requests" so that Managers can submit Additional Access Requests, or Initial Access Requests on behalf of employee?
    Have looked at "Manage Proxies" but this seems to allow access to everything - not ideal
    Please assist with knowledge and/or experience
    Many Thanks
    Me

    Additional Access Request Registration Process is complete
    Giving access to User Management to users is not an option.
    What I would like is the scenario below - is this achievable?
    When employee goes to iProcurement > Preferences > Access Requests > Request Access | they can submit an access request on behalf of themselves.
    Would like an option where a manager, navigates to same UI as above, has option to choose a subordinate, and request additional access on their behalf
    The table UMX_REG_REQUESTS has columns REQUESTED_FOR_USER_ID & REQUESTED_BY_USER_ID - so it seems they don't have to be same person (manager can submit request on behalf of an employee)
    Can this be achieved through UI for "Access Requests"?

  • Hiding fields in standard user management view

    Hi all,
    How to hide fields in user management views.
    Like in the create user view, suppose I want to hide the <b>additional information fieldgroup</b>. how can I do it?
    I have the par file and tried to comment the code which is related to the additional information field group. But when we try creating an iview from the new par(modified par-i changed changed the name ) I do not c the portal component called <b>create user</b>. I am a bit confused.
    Can anyone help me out regarding this.
    thanks,
    Paul

    Hi Paul
    Have a look at
    http://help.sap.com/saphelp_webas630/helpdata/en/d1/956f8b86b2a949913ed22d253e0012/content.htm
    and http://help.sap.com/saphelp_webas630/helpdata/en/91/646d498fd94142a37e90a3b848e45e/content.htm
    By setting the default values you can either have them displayed or hidden.
    Hope this helps,
    Regards
    Uma.

  • BPC Mass User Management Tool in BPC 10.0 NW-Version Component Error

    Hi,
    We have a problem when importing request K900024.RBP and R900024.RBP.
    We changed the UJ_STRING in "DATA: lv_value TYPE uj_value" in the source code as recommended at BPC Mass User Management Tool in BPC 10.0 NW
    Unfortunately, when we try to import CSV files we receive a error message "BPC Version Component must be 800". Our is 801.
    Where can I find this files or its upgrades? Is there a SAP link?
    Can anybody help us?
    Best Regards,
    Ana Teresa

    Hi Ana,
    See note https://css.wdf.sap.corp/sap/support/notes/1861347.  You should solve this issue.
    Best Regards,
    Charlie

  • Problem connection in OIM 9.1 with SAP user managment

    Hi!
    When I want to provision a sap user management resource to an user, it appeared this problem.
    2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] Create User Request
    2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] userId :PRUEBA4803, userGroup:AUDITOR_ARG,lastName:prueba4803,firstName:prueba4803,userTitle:0003,langComm:S,department:,langLogIn:,timeZone:,telephone:,extension:,Fax:,email:,dateFormat:1,decimalNotation:Y,function:,roomNo:,floor:,building:,code:,commType:,alias:,startMenu:000,userType:A,sapUserId:,empId:PRUEBA4803,fromHRMS:
    2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] SAP Create Connection Request
    2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] Inside XLSAPUTILITIES
    2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] SAP Create Connection Requesting****
    2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] START SAP Connection creation.
    It is strange because it was working all right since 3 months ago and in these 2 last weeks, it is frequently this problem. Sometimes it works sometimes it does not.
    Of course, I tried the connection between OIM and SAP, with the SAP login, and the connection is all OK.
    My oim vertion is 9.1 and the SAP User Management connector is 9.0.4.1.
    Did anybody have this problem before?
    Bye!

    Oh I forget, when I restart the application server, in my case the jboss, the problem is fixed. Strange...

  • OIM 11g: Error Installing Sybase DBUM User Management 9.1.0.4 connector

    Hi All,
    While installing Sybase DBUM User Management 9.1.0.4 connector from OIM console, I get the following:
    While on Step 2 of the wizard (Connector Installation):
    - Configuration of connector libraries: passes
    - Import of connector XML Files (using deployment manager): FAILS
    The following error message appears:
    DOBJ.XML_IMPORT_ERROR
    Unresolved dependency{WIN=Reconciliation Manager}
    Operating System: Linux
    Thanks in advance for any ideas!

    which release of OIM are you using.
    Did you try to retry the installation of connector?
    If not then refrsh your OIM database and then install again.
    Seems like some earlier installation has kept some data in OIM DB.

  • MS SQL DB User Management Connector Unable to Select Multiple Server

    Hi,
    We are trying to connect to multiple server using MS SQL DB user management connector but receive the error below when selecting server.
    <Sep 3, 2012 4:28:59 PM MYT> <Error> <XELLERATE.APIS> <BEA-000000> <Class/Method: tcLookupOperationsBean/getLookupValuesForColumnFilteredData encounter some problems: Lookup.PDBUM.MSSQL.DBNamesis not a valid form field>
    Running InitUtil
    Running ExecuteStoredProcForAuthTypeUser
    Running SetProcessFormData
    <Sep 3, 2012 4:30:13 PM MYT> <Error> <XELLERATE.ADAPTERS> <BEA-000000> <Class/Method: tcAdpEvent/verifyServer encounter some problems: IT Resource Type mismatch found for Adapter variable MSSQL_ITRVerify that IT Resource selected on Process Form matches IT Resource type selected for variable>
    Running InitUtil
    Running ExecuteStoredProcForAuthTypeUser
    Running SetProcessFormData
    Running COMBINENAMEWITHSUFFIXPA
    Target Class = com.thortech.xl.util.adapters.tcUtilStringOperations
    Running COMBINENAMEWITHSUFFIXPA
    Target Class = com.thortech.xl.util.adapters.tcUtilStringOperations
    Running InitUtil
    Running ExecuteStoredProcForAuthTypeUser
    Running SetProcessFormData
    <Sep 3, 2012 4:33:13 PM MYT> <Error> <XELLERATE.ADAPTERS> <BEA-000000> <Class/Method: tcAdpEvent/verifyServer encounter some problems: Could not determine IT Resource Key for variable MSSQL_ITR>
    delete mds name:/db/MSSQL DB User Privilege Login Requestrecon.profile
    Unable to delete profile with mds name:/db/MSSQL DB User Privilege Login Requestrecon.profile
    <Sep 3, 2012 4:33:43 PM MYT> <Warning> <Socket> <BEA-000450> <Socket 8 internal data record unavailable (probable closure due idle timeout), event received 17>
    <Sep 3, 2012 4:33:48 PM MYT> <Warning> <Socket> <BEA-000450> <Socket 4 internal data record unavailable (probable closure due idle timeout), event received 17>
    MS SQL DB connector version is 9.1.0.4
    Any ideas on this error above?
    Thank you.
    Edited by: 950985 on Aug 17, 2012 12:21 AM

    verify lookup : Lookup.DBUM.MSSQL.Configuration and provide the required information (eg: provide query property file)
    --nayan                                                                                                                                                                                                                                                                   

  • Error Installing OIM - Ebiz User Management connector

    Hi all,
    I am trying to install ebusiness suite user management connector 9.1.0.1.0.
    But, while installation, I am getting an exception
    Invalid Connector Installation Directory
    Ensure that the connector installation files are in the specified directory.
    From the server log, I have seen this error.
    ERROR,01 Jun 2010 11:29:19,153,[XELLERATE.WEBAPP],Class/Method: ConnectorInstallProcessAction/CopyJarFilesForInstallation encounter some problems: IO exception while copying jar files
    java.io.IOException: FileCopy: destination file is unwriteable: /g03/oim/xellerate/JavaTasks
    at com.thortech.xl.webclient.actions.ConnectorInstallProcessAction.copy(Unknown Source)
    at com.thortech.xl.webclient.actions.ConnectorInstallProcessAction.copyJarFilesForInstallation(Unknown Source)
    at com.thortech.xl.webclient.actions.ConnectorInstallProcessAction.completeInstallation(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.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
    at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.ConnectorInstallProcessAction.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    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:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    But, before this, I have done the ebusiness suite employee reconciliation 9.1.0.1.0 in the same way.
    Please let me know, if any one has faced this kind of error earlier.
    Regards
    Vicky

    Figured out the error,
    When I have installed Ebiz HRMS Employee recon connector, it has imported all the files with root privileges. (Dont know why importing was done with root privileges).
    Becuase of EBSCommon.jar and Common.jar having root as the owner, EBIZ UM connector is unable to replace those files. After modifying the owner and group of these two files to oracle.
    I am able to succesfully install the UM connector.
    Regards
    Vicky

  • OIM - SAP Employee Recon and SAP User Management Connectors vs. OC4J

    In reading through the SAP connector documentation I've found that we cannot use OC4J to run OIM if the 9.0.3 SAP User Management Connector or SAP Employee Recon Connector is used. This is all related to a conflict in JDK versions supported between the SAP JCo (Java Connector) library and OC4J. A thought we've had is to use a Remote Manager for these connectors. Can anyone validate this approach? Is it possible to use a different JDK version with your remote manager? Is there another workaround that anyone is aware of?
    Thanks

    Hi,
    The remote manager should work with different JDKs. We are going to be doing the same thing for one of our adapters.
    As for SAP, I cannot think of another workaround -- we actually abandoned the SAP JCo approach and are doing web services with XI.
    Thanks,
    Deborah
    http://www.linkedin.com/in/dvolk

  • Sap UM connector 9.1.2 trouble with "SAP User Management User Recon" task

    Hello All,
    i have a problem with Sap UM Connector version 9.1.2.
    OIM version 11.1.1.5
    Windows 2008 R2
    Problem is:
    Then accounts in Sap are created through direct provisioning feature of connector everything works ok (subsequent update or delete an account).
    But if a user account is created in Sap using Sap GUI, scheduled task "SAP User Management User Recon" of connector doesn't create reconciliation event to link user.
    Sometimes it does though, but for one user account created using Sap GUI in OIM created two reconciliation events, so corrsponding user in oim have two records for resource SAP.
    In this reconciliation events, one have full set of attributes (Login, First Name, Last Name, E Mail, etc), another one - just these 3 attributes: IT Resource, User ID, Lock.
    "SAP User Management Delete Recon" scheduled task works ok then user account has been deleted using Sap Gui.
    How one can troubleshoot such behavior?
    Can anyone advise please?

    resolved the issue by updating sap um connector to version 9.1.2.5

Maybe you are looking for

  • Possible Mighty Mouse solution?

    Myself along with what seems alot of people have had problems with the scroll wheel on the mighty mouse. My first one, which I bought for my eMac, was fine for the first few days, then one day, the vertical (down) scrolling gave out. It almost is lik

  • Apple Preview- Change DPI

    Is there a way to change the DPI of a photo within Apple Preview? I could also use iPhoto. I'm trying to avoid using Photoshop as it always saves in an Adobe format. Thanks, Alexander

  • My iTunes is only playing half of a new song i downloaded

     

  • Allocate space on disk using java

    Hello folks I am making a file Sharing System. What it does it that when ever a user makes an account, it allocates a space (let say 4MB) on the disk (lets say D:\username\)... How can we do that using java? IS there some class available?? or any oth

  • Select, where column = alias

    Hi, is it possible to use c.LgDatM in where clause? I would like to tell him to give me values only for months from column LgDatM. My where clause: WHERE MONTH(LogDate) BETWEEN 3 and 4) and the code SELECT c.LgDatM, a.EmpCount, b.LgDat FROM (SELECT M