Error in user creation in portal

While Creating a user named as  SLDADMIN in portal i am getting error the log file contains
#1.5#0016E69E70D20069000006A80000143400044E33DA212183#1211884516747#com.sap.security.core.wd.maintainuser.MaintainUserComp#sap.com/tcwddispwda#com.sap.security.core.wd.maintainuser.MaintainUserComp.public void saveModifications( )#J2EE_ADMIN#76936#SAP J2EE Engine JTA Transaction : 0ffffffcb6812052b5#sapserver2.delhi_BS1_13330450#J2EE_ADMIN#da4e23e12bd711ddc1ac0016e69e70d2#SAPEngine_Application_Threadimpl:3_6##0#0#Error##Java###Error in the persistence
EXCEPTION
#1#com.sap.security.core.wd.exception.UmeUiPersistenceException: The UME/ABAP user management connector is set to read-only mode and therefore rejects the creation request for user SLDADMIN
Please help

Hi,
You should control in ABAP via SU01 the user SAPJSF (JSF Service User).
This user should can have 2 roles :
For read-only access from the AS Java to the ABAP system, choose the role SAP_BC_JSF_COMMUNICATION_RO.
For read-write access from the AS Java to the ABAP system, choose the role SAP_BC_JSF_COMMUNCIATION.
You can have more information [here|http://help.sap.com/saphelp_nw04s/helpdata/en/9e/fdcf3d4f902d10e10000000a114084/content.htm]
Best regards,
Mathieu
PS : reward points if helpful

Similar Messages

  • User Creation In portal Using NWDS

    Hello Experts
    Is there any way we can create a job in SAP Netweaver Portal using NWDS for the user creation.
    Any pointers will be extremely helpful as I am new to this.
    I am using SAP Netweaver 7.3 SP 09.
    Thanks
    Utsav Mishra

    Hi,
    You can use the sample code.You can create an  Abstract Portal component in  NWDS and write the required code inside of it.
    Users can be created with the UserFactory newUser() method.
    IUserMaint represents a modifiable user object. You must issue
            a commit() in order to actually create the user.
    An associated account needs to be created for the User with
            newUserAccount() using the UniqueID of the new User.
    Take care to delete the user if an error occurs (catch the
            appropriate exception and handle it).
    // Create User
    String uid = "testuser01";
    IUserMaint newUser = UMFactory.getUserFactory().newUser(uid);
    newUser.setFirstName("Test");
    newUser.setLastName("User");
    newUser.setEmail("[email protected]");
    newUser.save();
    newUser.commit();
    try
    // Create User Account
    IUserAccount uacc = UMFactory.getUserAccountFactory().
    newUserAccount(uid,newUser.getUniqueID());
    uacc.setPassword("secret");
    uacc.save();
    uacc.commit();
    // NOTE: productive passwords cannot be set if the
    // account is created in a SAP System
    // continue process by trying to set password flag…
    // Now try to modify password change flag for the new user
    try
    IUserAccount uacc = UMFactory.getUserAccountFactory().
    getMutableUserAccount(uacc.getUniqueID());
    uacc.setPasswordChangeRequired(false);
    uacc.save();
    uacc.commit();
    catch (UMException ex)
    //trace warning: “Password is not productive and has to
    // changed during the first logon”.
    catch (UMException umex)
    UMFactory.getUserFactory().deleteUser(newUser.getUniqueID());
    //trace error: “User cannot be created because of an
    // error which occurred during the creation of the
    // corresponding account object”
    You can refer to the below URL for abstract portal component
    Creating an AbstractPortalComponent (SAP Library - Running an Enterprise Portal)
    Please reply in case you have any queries.
    Regards
    Veera

  • User creation in portal

    HI,
    Can we change the registration flow in the portal, so that a mail is sent to the email address and only when the user clicks on the link in the mail, the user account becomes active. Until the user clicks on the link and activates his account the user account should not be active.
    Can we implement this in SAP EP?

    Hi,
    You could do it via the UME API, but you would have to code it yourself.
    You could create the user via the admin functionality (but with the standard email generation disabled for user creation) , and manually lock it, or create the user via a custom WebDynpro or JSP front end that users the UME API to create and lock the user.
    Then use a mail API to generate the email with a URL to a servlet running on the Portal server, which extracts an id of the user from the URL (either the username in unencoded form which is a bit dodgy, or using some unique number that you store against the user to be activated to associate the two) and again use the UME API to unlock the user.
    Should be fairly straightforward providing you are confident with:
    1 - Deploying a web application to J2EE engine containing a servlet.
    2 - Can figure out how to use the UME API
    3 - Can use a mail API like Javamail, which is straightforward
    Cheers,
    Steve

  • User creation in Portal Connected to LDAP

    Hi Gurus,
       i want to know if we have LDAP connected to a Portal and someone creates a user on Portal UME , will the user get created in LDAP or portal UME.
       The situation is where any registerd user  accessing the portal should be authenticated against LDAP and he can also do a self registration from portal.So if he self registers, does his user id/Password gets created in LDAP or it stays in Portal UME.If it gets stored all the way to LDAP then we are fine, if not , then is there a way to replicate this user id password to LDAP.
    Thanks in Advance!

    >
    Gaurav Garg wrote:
    > Hi Gurus,
    >    i want to know if we have LDAP connected to a Portal and someone creates a user on Portal UME , will the user get created in LDAP or portal UME.
    User will be created in UME only not in LDAP.
    >    The situation is where any registerd user  accessing the portal should be authenticated against LDAP and he can also do a self registration from portal.So if he self registers, does his user id/Password gets created in LDAP or it stays in Portal UME.
    No the user is created in UME database and not in LDAP. If you are setting up your user persistence in LDAP (authenticating users from LDAP) then you have to setup users in LDAP. UME has a read only access to things that it pulls from LDAP.
    Regards,
    Zaheer

  • Error while user creation/search

    Hi,
    I am getting the following exception while trying to create/search a user in OIM 11gR2
    oracle.mds.exception.MDSRuntimeException: MDS-00010: DuplicateRefException. In document /oracle/iam/ui/runtime/form/view/pages/userCreateForm.jsff there are multiple elements with the same ID _xg_pfl0
    Moreover I am not able to view the user form wherein I can add custom attributes. Searching Form Designer is returning no result.
    All other functionalities are working properly.

    You get this error if you have duplicate component ids on one of your pages.
    MDS its the meta data service which is used to store information about a jsf page in a special repository.

  • Error in user creation

    I am getting error while trying to create a new user in my 9i database.
    Database: Oracle9i Enterprise Edition Release 9.2.0.6.0
    SQL> CREATE USER abcd IDENTIFIED BY abc_d;
    CREATE USER abcd IDENTIFIED BY abc_d
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20001: Error Encountered :ORA-01401: inserted value too large for column
    ORA-06512: at line 99
    Pls suggest...

    I got this output from this query.
    SQL> select owner,TRIGGER_NAME,status ,TRIGGERING_EVENT,TRIGGER_TYPE from dba_triggers where owner='SYS';
    OWNER TRIGGER_NAME STATUS TRIGGERING_EVENT TRIGGER_TYPE
    SYS AW_DROP_TRG ENABLED DROP AFTER EVENT
    SQL>
    What do I understand with it?

  • Formalised user creations in Portal

    How do I create users (already existing database users) in Portal 3.0 based on existing users?
    For instance if we want 600 users to use a site (an Intranet) in personalised way (so we cant use a universal user everybody can use), but dont what do create 600 (taking a whole week or so to create manually) users by hand then how do we do it assuming they already exist as database users?

    Hi Malik ,
    For your scenrio there is no ready made iview but these things can be achieved easily .We can get these values from the api and EP database tables .On a low level you can refer to
    http://help.sap.com/saphelp_nw04s/helpdata/en/fb/144120ea5b4e9c9385d493a578d6c9/frameset.htm
    Portal SP9: Portal Activity Report
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/getting%2blogged%2bin%2bportal%2buser%2bdetails%2bin%2bweb%2bdynpro
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/list%2bof%2blogged%2bon%2busers%2bin%2bthe%2bportal
    http://help.sap.com/saphelp_nw04/helpdata/en/20/b7ced1025f3245b43d23184fc0212f/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a770132b-0901-0010-5a88-b228ccc7b7b6
    UME API:-Tihis api will give details about the user and no of login and failed attempts and all.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3641e490-0201-0010-c68f-e51221925714
    Thanx
    Pankaj

  • Error of type Not a known DirStatus - WGM throws error upon user creation

    Dear MacWorld,
    i run a OS-X 10.5.8 Server as OD-Master, clean install on MacPro, no migration, all updates applied, everything fresh from scratch, but my 2md installation of OS-X-server. All standard checks accomplished (Kerbreros, DNS, LDAP, ... everything fine so far).
    Each time i add a user in WGM (run remotely via ARD) i receive the errormessage
    "Got unexpected error
    Error of type Not a known DirStatus (-1) on line 2112 of /SourceCache/WorkgroupManager/WorkgroupManager-319.2.2/Plugins/UserAccounts/Use rAdvancedPluginView.mm"
    Makes me feel uncomfortable, although the resulting accounts look healthy so far. Since this is the last check before the final roll out of my OD in my organization, i'd like to get rid of it now rather then troubleshoot the OD later.
    Any hints?
    Cheers,
    my first post here!

    You seem to have your targetEntity mixed up, the @OneToMany should be B.class and @ManyToOne should be A.class.

  • Vista problem and error createding users.

    Hi All. About 4 weeks back I took on a task to install Leopard server in a small office. 5 macs all running leopard and one dell running Vista home basic.
    The server is a brand new Mini with 4 Gigs of Ram and the 320 Gig HD. Storage is on a 2T external box.
    Installation was a nightmare. I had to install via Target disk as the Mini was too new to boot from the Leopard DVD (10.5.4) then apply the updates while running the server on the host mac using the mini's HD as the startup drive. It took about 4 goes to get it all up and running.
    I set up the users and all's well - except for the dell. It can access the shares and read but cannot write, despite having the same priviledges as the rest of the group. What puzzles me (I know too little about windows and even less about vista) is that while the macs all presented a log-in/password box when they first connected, the dell just went straight to the shares. I cannot find a way of making the dell authenticate. Have I done something wrong or is it Vista home Basic that is the culprit.
    Next issue, I cannot get a shared iCal to work (but the wiki calendar works brilliantly) as I keep getting told (this is me the admin) that I don't have permission!
    Third issue (and this is worrying me), while testing with the dell I created another user with a new name just to see if it was the original settings that were at fault - but - I couldn't. Everytime I tried to create a new user I get an error message -
    "User creation failed. The server reported the error '-14120' while trying to create the user"
    It doesn't matter what I do I cannot create another user.
    I'd really appreciate some help here.
    Finally, (it's not a problem - yet) I have to set it up so that all the users can log in from home to access the shares - and that includes the dell.

    Hi David, I'm back again.
    The problem I'm having with the new user error may be hidden in this short section from the log:
    Also, one of the users (who has been perfectly OK) is now getting a Kerberos log-in error and can no longer write to the shares.
    LOG:
    Sep 28 13:33:57 MuseMini imap[81400]: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No principal in keytab matches desired name)
    Sep 28 13:33:57 MuseMini imap[81400]: badlogin: [172.16.1.36] GSSAPI [SASL(-1): generic failure: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No principal in keytab matches desired name)]
    Sep 28 13:36:06 MuseMini ctl_cyrusdb[81445]: checkpointing cyrus databases
    Sep 28 13:36:06 MuseMini ctl_cyrusdb[81445]: done checkpointing cyrus databases
    Sep 28 13:36:22 MuseMini servermgrd[61]: servermgr_accounts: got error -14098 trying to log to local LDAP node
    Sep 28 13:36:22 MuseMini servermgrd[61]: servermgr_accounts: got error -14120 trying to write config record
    Sep 28 13:38:43 MuseMini servermgrd[61]: DirectoryService crash detected, reauthorizing node
    Sep 28 13:38:43 MuseMini servermgrd[61]: servermgr_accounts: got error -14098 trying to log to local LDAP node
    Sep 28 13:38:43 MuseMini servermgrd[61]: DirectoryService crash detected, reauthorizing node
    Sep 28 13:38:43 MuseMini servermgrd[61]: servermgr_accounts: got error -14098 trying to log to local LDAP node
    Sep 28 13:38:43 MuseMini servermgrd[61]: DirectoryService crash detected, reauthorizing node
    Sep 28 13:38:43 MuseMini servermgrd[61]: servermgr_accounts: got error -14098 trying to log to local LDAP node
    Sep 28 13:38:43 MuseMini servermgrd[61]: DirectoryService crash detected, reauthorizing node
    Sep 28 13:38:43 MuseMini servermgrd[61]: servermgr_accounts: got error -14098 trying to log to local LDAP node
    Sep 28 13:38:43 MuseMini servermgrd[61]: DirectoryService crash detected, reauthorizing node
    Sep 28 13:38:43 MuseMini Server Preferences[80311]: XSAdminQueueController: gotServerError: -14120 forTransaction: <XSAdminTransaction: 0x1711f980>
    Sep 28 13:38:43 MuseMini servermgrd[61]: servermgr_accounts: got error -14098 trying to log to local LDAP node
    Sep 28 13:38:43 MuseMini Server Preferences[80311]: Error creating user: {\n command = createUser;\n error = "-14120";\n}
    Sep 28 13:38:57 MuseMini imap[81506]: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No principal in keytab matches desired name)
    Sep 28 13:38:57 MuseMini imap[81506]: badlogin: [172.16.1.36] GSSAPI [SASL(-1): generic failure: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No principal in keytab matches desired name)]
    Sep 28 13:38:57 MuseMini imap[81509]: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No principal in keytab matches desired name)
    Sep 28 13:38:57 MuseMini imap[81509]: badlogin: [172.16.1.36] GSSAPI [SASL(-1): generic failure: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (No principal in keytab matches desired
    It looks to me as though I may have to go through the entire install again - and I really don't want to do that.
    Help!

  • Getting error while creating the user in user administration in portal

    Hi folks,
         i am unable to create the user in user administration in portal due to the following error,
    could you please help regarding this issue
    "Current user has user creation permissions in the UME, but cannot create users in the back-end system (data source). The original and possibly untranslated message was: "No active writeable datasource found for user creation, check your Persistence Configuration.".

    Hi All,
    I am closing this thread as this is not in the correct forum.  This should be opened in LDAP or UME.  Please open the thread under the correct heading.
    Beth Maben
    EP - Senior Support Consultant
    AGS Primary Support, Business Suite & Technology
    Please see the UWL Wiki @
    http://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • Portal User Creation Problem

    While Creating user in Portal i am getting following error Please help
    Current user has user creation permissions in the UME, but cannot create users in the back-end system (data source). The original and possibly untranslated message was: "No active writeable datasource found for user creation, check your Persistence Configuration.".
    Thanks
    Bhupinder

    Hi,
    If it is ABAP+JAVA stack, we have to create user only in ABAP stack only. We cannot create user in portal. Once we create user in ABAP stack , we can login to portal using that user.
    If there is permission probelm, please assign the permission to the respective user that is " manage_all" action.
    Please let me know if you have any clarifications.
    Regards,
    Bala.

  • Solution Manager 4.0,  Red hat Linux 4.0 ES & AS, JSF user creation error

    Dear SAP Gurus,  Please advise.
    I have problem during the installation of SAP SOL Man4.0
    Input:
    I am using <b>SOL Man 4.0</b> with Linux version 2004s version2
    1. <b>Red Hat 4.0 ES</b> , 2. <b>Red hat 4.0 AS</b> (Tried both)
    <b>Java 1.4.2_09
    java Cripto: 1.4.2</b>
    when it go the step 34 out of 44 when it create JSF user creation, I am getting error
    It could not able to create Java user.
    It stops. this error is coming during sapjsf user creation.
    is this bug in SOL man 4.0, any one able to successfully install on Linux.
    I see lot of people had probem while doing on windows, but no one tried on Linux.
    I really appriciate, if some one can help on this.
    Thanks
    Ashok .K
    [email protected]

    Dear Raguraman C ,
    Thanks for your help, here is the log i got, during installation step of <b>Phase 33 of 45 JSF user creation</b>.
    Please analyse, advise me what Java settings need to be changed.
    Thanks
    Ashok .K
    [email protected]
    INFO       2006-12-29 00:06:38
    Execute step createJSF of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind |ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2|0.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.jlaunch.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:264]
               CSyCurrentProcessEnvironmentImpl::setGroup(PSyGroup)
    Real group id set to 501.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:543]
               CSyCurrentProcessEnvironmentImpl::setEffectiveGroup(PSyGroup)
    Effective group id set to 501.
    INFO       2006-12-29 00:06:39 [syxxccuren.cpp:105]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO       2006-12-29 00:06:39
               CJSlibModule::writeInfo_impl()
    Output of /usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck / tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/O RA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install -c sysn r=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX - r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message is written to the logfile /tmp/sapi nst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    WARNING    2006-12-29 00:09:27
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.t ools.UserCheck /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir /SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS /install -c sysnr=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SA PJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message" finished with retu rn code 4. Output:
    Dec 29, 2006 12:06:44... Info: User management tool (com.sap.security.tools.UserCheck) called for  action "checkCreate"
    Dec 29, 2006 12:06:44... Info: Connected to backend system SM1 client 001 as user DDIC
    Dec 29, 2006 12:06:45... Info: Called for user SAPJSF
    Dec 29, 2006 12:06:49... Info: Formal password check successful
    Dec 29, 2006 12:06:49... Info: Will create user SAPJSF
    Dec 29, 2006 12:09:20... Info: Created user SAPJSF of type A with reference user <none>
    Dec 29, 2006 12:09:22... Warning: Error during creation of user SAPJSF. Will remove user again to  ensure clean exit state
    Dec 29, 2006 12:09:27... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Invalid request.
            at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
            at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1395)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3917)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3354)
            at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1876)
            at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
            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:324)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Dec 29, 2006 12:09:27... Info: Leaving with return code 4
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.clone.
    ERROR      2006-12-29 00:09:27
               CJSlibModule::writeError_impl()
    CJS-30196  Invalid request.
    ERROR      2006-12-29 00:09:27
    FCO-00011  The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind |ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2 |0|createJSF was executed with status ERROR .
    Ashok kalakota My coment:
    Phase 33 of 45 JSF user creation
    INFO       2006-12-29 00:06:38
    Execute step createJSF of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind |ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2|0.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.jlaunch.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:264]
               CSyCurrentProcessEnvironmentImpl::setGroup(PSyGroup)
    Real group id set to 501.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:543]
               CSyCurrentProcessEnvironmentImpl::setEffectiveGroup(PSyGroup)
    Effective group id set to 501.
    INFO       2006-12-29 00:06:39 [syxxccuren.cpp:105]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO       2006-12-29 00:06:39
               CJSlibModule::writeInfo_impl()
    Output of /usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck / tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/O RA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install -c sysn r=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX - r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message is written to the logfile /tmp/sapi nst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    WARNING    2006-12-29 00:09:27
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.t ools.UserCheck /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir /SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS /install -c sysnr=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SA PJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message" finished with retu rn code 4. Output:
    Dec 29, 2006 12:06:44... Info: User management tool (com.sap.security.tools.UserCheck) called for  action "checkCreate"
    Dec 29, 2006 12:06:44... Info: Connected to backend system SM1 client 001 as user DDIC
    Dec 29, 2006 12:06:45... Info: Called for user SAPJSF
    Dec 29, 2006 12:06:49... Info: Formal password check successful
    Dec 29, 2006 12:06:49... Info: Will create user SAPJSF
    Dec 29, 2006 12:09:20... Info: Created user SAPJSF of type A with reference user <none>
    Dec 29, 2006 12:09:22... Warning: Error during creation of user SAPJSF. Will remove user again to  ensure clean exit state
    Dec 29, 2006 12:09:27... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Invalid request.
            at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
            at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1395)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3917)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3354)
            at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1876)
            at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
            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:324)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Dec 29, 2006 12:09:27... Info: Leaving with return code 4
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.clone.
    ERROR      2006-12-29 00:09:27
               CJSlibModule::writeError_impl()
    CJS-30196  Invalid request.
    ERROR      2006-12-29 00:09:27
    FCO-00011  The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind |ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2 |0|createJSF was executed with status ERROR .
    [root@machine5 AS]# cat UserCheck.log
    Dec 29, 2006 12:06:44... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Dec 29, 2006 12:06:44... Info: Connected to backend system SM1 client 001 as user DDIC
    Dec 29, 2006 12:06:45... Info: Called for user SAPJSF
    Dec 29, 2006 12:06:49... Info: Formal password check successful
    Dec 29, 2006 12:06:49... Info: Will create user SAPJSF
    Dec 29, 2006 12:09:20... Info: Created user SAPJSF of type A with reference user <none>
    Dec 29, 2006 12:09:22... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Dec 29, 2006 12:09:27... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Invalid request.
            at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
            at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1395)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3917)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3354)
            at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1876)
            at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
            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:324)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Dec 29, 2006 12:09:27... Info: Leaving with return code 4
    [root@machine5 AS]# pwd
    /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS
    [root@machine5 AS]#

  • OIM User Creation Error After OIM and OID Intregation

    Hi,
    I am new in oim and i am getting popup error message for user creation from OIM application after oim and oid intregation through libovd.
    Error message : LDAP create event failed : orclguid attribute has duplicate value.
    please guide me for resolving error.
    Thanks & Regards,
    Rajeev

    Hi,
    Thanks for reply...i checked1307549.1 in metalink, In that link they are telling us to modify some tables in the data base.i have some question regarding the following steps please help.
    === ODM Solution / Action Plan ===
    1. Use the following query to find fields with "plain text" values:
    select svr.svr_name, spd.spd_field_name, svp.svp_key, svp_field_value
    from svp
    inner join spd on spd.spd_key = svp.spd_key
    inner join svr on svr.svr_key = svp.svr_key
    2. Set these plain text values to null after making backup of table.
    *(kashyap:: Which fields values we have to change)*
    3. Edit the Directory Server to re-set values.
    *(kashyap:: could you please explain this)*
    Expected error at this stage:
    -- no "System Error call admin...", but that makes sense since the values in question pertained directly to the Directory Server --

  • GRC AE User provisioning for Portal giving error

    Hi,
    We are having GRC AC 5.3- SP9.
    While doing user provisioning for Portal, we are getting the following error:  DBCacheVerifier.java@58:isExpired(). Detailed error log is attached herewith. The back end system (EP Dev) is installed with GRC RTA. Connectors are testing OK. The CPIC user id in backend system EPDev is ED1GRC and has SUPER ADMIN Authorizations, with SPML read/write actions attached to the Role. EP Dev system is having UME as data source, not LDAP. The issue was existing even before the SP9 upgrade. We have restarted the Server several times lately. Pls help me in this.
    Thanks & Regards,
    Jagadish H S
    BASIS Team, BPCL, Mumbai.

    Jagadish,
    This type of error would normally be a data setup issue. Have you imported all of the initial data files (XML ones)?
    Otherwise, if it is just a cache issue, then restarting the server would normally solve the proplem. I would also check the Java Netweaver Admin console to ensure that the memory settings are sufficiently configured to match the hardware that is deployed.
    Simon

  • Tray as appearing in the Portal User Creation screen

    Hi all,
    I am on WAS 6.40 SP15, NWDS 2.0.15 and EP 6.0 SP15.
    When I place 'tray' ui element in my application, I see one vertical line on the left side and horizontal line. I have to remove these lines.
    Can anyone suggest how to modify the 'tray' ui element so that I get a tray as appearing in the Portal User Creation screen.
    Regards
    Srinivasan T

    Hi,
    Then you will have to modify the standard UWL configuration file.
    If your task looks like a standard task (maybe you copied a standard task and modified it slightly), you have to find the ItemType corresponding to the standard task in the UWL configuration file then copy this ItemType and adjust it for you custom task. Please take a look at my last post in another thread : Re: UWL - how to approve purchase requisitions
    If your task is 100% custom then you'll have to find out what is behind the Approve and Reject buttons in the Business Workflow and modify the UWL configuration file accordingly. For instance if a function module is used to approve or reject the request you can define your approve and reject actions using the FunctionModuleActionHandler. You can find more information in the documentation : [Task Launch Customization|http://help.sap.com/saphelp_nw70/helpdata/en/36/dd4ad73c86412e81e9ce66eeb147e7/frameset.htm].
    Regards,
    Pierre

Maybe you are looking for

  • Can a Button be created in a PDF to go back to website index page?

    I should know this. But the idea to do it hasn't crossed my mind to do it. I use PDF's extensively in my website http://www.phillipmjones.net/ Is it possible to put in a Home Button, at the end to have it go back to the index page, rather than having

  • Deployment username and password for LDAP & Jdeveloper 9i

    Ok -- I finally got 9iAS R2 up and running and now I'm trying to connect with JDeveloper 9i. By default, my installation changed the JAZN security provider to LDAP (from what I see). The first problem was/is that the client didn't connect using the d

  • SolMan ChaRM - System landscape not ready yet

    Hi all, We are configuring ChaRM for an implementation use, therefore all the systems are not set up yet. Is it possible in SolMan to define logical component without "real" systems ? We saw that in STMS it was possible to create virtual systems, but

  • Actually an MS Excel issue

    I am working on a dashboard with an Excel spreadsheet that has 3 columns: Column A is a "order date", example of the date reads: 5/20/2008 Column B is "ship date", example of the date reads: 7/23/2008 I need column C to figure out the number of days

  • Many Many Event ID 2115 from Health service and RMS goes gray

    I have been scowering the net on Event ID 2115 and found all the usually suspects. None of these that relate to the accounts and profiles appear to be helping.  The errors i am getting seem to encompass all of the various collections. I am not sure w