Creating new user in enterprise portal 7 .0

Hi,
I have installed enterprise portal 7.0 and backend is ECC 6.0 on windows 2003.i have logged with J2EE_ADMIN user.when i am trying to create new user in EP7.0 ,i got this problem.(an error occured,contact system administrator).please help me.

Hi,
Go to http://<server>:5<instance no>00
Click on User Management. After login, go to Configuration tab and there you can check.
Thanks
Sunny

Similar Messages

  • Unique username generation when creating new user via FIM Portal?

    Hi,
    Is it possible to create a new user using the FIM Portal, and have FIM create the unique username upon submission of the request in the Portal?
    So effectively, when you create a new user in the Portal, the 'accountName' attribute would not be a mandatory field and therefore removed from the GUI using RCDC , and instead be generated based upon the unique AD username rules.
    Thank you.

    Just my 2 cents worth ... make sure you identify and test the "edge cases" for whatever solution you end up implementing, and don't just assume a solution that works for someone else will automatically work for you in 100% of cases (this is most likely why
    this feature is not OOTB, even though most people would want something like this from the get-go).
    To be specific, I have implemented option #2 myself with success, after initially implementing option #3 and running into grief with a particular use case (education environment end-of-school year roll-over involving large numbers of concurrent leavers/joiners
    in the same import/sync cycle).  To be specific, when implementing a workflow-based solution to do this there is a small but nonetheless realistic chance that 2 user requests being processed in parallel calculate exactly the same AccountName value, and
    of course one will succeed and the other will fail ... and of course by default this will fail the entire request.
    I solved the problem in my case by adoption option #2 using an approach where I reserved a unique accountName in the MV (downside is that in some cases the user may never end up being provisioned to AD if this is in advance of the actual hire date), thereby
    avoiding clashes by getting the FIM Sync Service to control integrity rather than the FIM Service where parallelism is a design feature :).
    So just make sure you understand the pros and cons of each approach when deciding what is best for you.  Note that this discussion has come up many times before on previous posts on this forum, and it will be worth looking through these if you are still
    in the early stages of formulating your approach.
    Bob Bradley (FIMBob @
    TheFIMTeam.com) ... now using FIM Event Broker for just-in-time delivery of FIM 2010 policy via the sync engine, and continuous compliance for FIM

  • Problem with creating new user in portal = portlet is not visible

    Hi,
    I've got a problem with creating new users in portal. In the Administer tab of the builder is the user portlet not visible.
    How can I make this portlet visible?
    Please Help
    thank you...
    Gilbert

    Hi..my problem slightly similar.
    I created one new user, and didn't select anything from "Public Groups Assignment" and "Privilege Assignment" for him.
    I expect the user will be a public user.
    But, when he try to logged in the portal,
    He cannot see all the PORTLETS related to database values..
    All he can see just LINKS -that all in my portal right now beside the report from database that the user cannot see :)
    So, what did i do wrong?
    Plz Advise, and thanks.

  • Unable to create new user thru Portal

    Hi,
    I am unable to create user from the oracle portal web page under the Administer tab.
    I have logged in as user PORTAL30 which has DBA rights.
    When I click the Create new user link, it generates an error page WWC-00000.
    Would appreciate if any can help me out urgently.
    OS: NT4 SP5
    9iAS 1.0.2.1
    Vipul
    null

    Cindy,
    Thanks for the solution. It worked fine after changing servername to lowercase.
    The servername was set in in httpd.conf by the 9iAS installer itself. I would like to express that Oracle should have checked before launching or should have listed it in the release notes.
    Once again thanks for the inputs, Cindy.
    Regards,
    Vipul
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by cindy:
    I too was having the same problem. I found this in another post:
    "this is reported as
    BUG:1534919
    the solution is to use lower case server name in httpd.conf. It must be in lower case."
    I made the change and am now able to create users.<HR></BLOCKQUOTE>
    null

  • Cannot copy or create new user in portal

    Hi all,
    I have tried to create new users in dual stack abap & java installation. However, j2ee_admin and sap* both display critical stop with message "An error has occured, contact your system administrator." Unfortunately, there is nothing more than this message in portal. I have used visual administrator from go.bat also but the result is the same with error:
    Caused by: java.lang.ClassNotFoundException: com.sap.security.core.persistence.datasource.PersistenceException
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
    Any clues!
    Regards.

    Hi Eduardo/Jo,
    That's fine, I can see abap user in both visual administrator and portal's identity mgt area.
    However, when attempted to logon with an super admin role abap user, the portal displays, user is locked... okay, go to portal with j2ee_admin and unlock this user... again login and message user is still locked.... Go to visual administrator the same user appears as locked. click the pencil button and try to unlock, visual admin displays message "unable to unlock user. details are available in status bar".
    Following is the perhaps relevant part of the long error details.
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException: Attribute "islocked" on namespace "com.sap.security.core.usermanagement" of principal "UACC.R3_DATASOURCE.MOHAMMAD" is not modifiable.
    So, all in all, portal cannot logon with super administrator becuase it appears locked in visual admin, cannot unlock this user in visual admin because of above error message.
    Any clues, please.
    Regards.

  • Scritps to create new user in portal

    Hi, anyone knows where can i get a script to create new users in portal?:
    add new user, add user in groups, set default group
    i've been trying to insert in the tables WWSEC_PERSON$ and WWSEC_FLAT$ but i couldnt get to see the user in portal application though its the tables. i guess i am forgetting some table (like something in the SSO)...
    Thanks
    Daniel Perez
    SJD

    Well, actually the api also adds the user to the group, but obviously, there's something that portal does when you add it manually that we are missing in the api, and that's what i need to discover.
    The code in the api, related to default group, is:
    /*In FUNCTION ldap_create_user */
    IF p_default_group is not null then
    BEGIN
    group_array := DBMS_LDAP.create_mod_array(14);
    user_vals(1) := 'cn=' || lower(p_default_group) || ',' || group_id;
    DBMS_LDAP.populate_mod_array (user_array, DBMS_LDAP.MOD_ADD, 'orcldefaultprofilegroup', user_vals);
    user_vals.DELETE;
    group_vals(1) := 'cn=' || p_oid_id || ', cn=users, ' || ldap_base;
    DBMS_LDAP.populate_mod_array(group_array, DBMS_LDAP.MOD_ADD, 'uniquemember', group_vals);
    group_vals.DELETE;
    retval := DBMS_LDAP.modify_s(user_session,'cn=' || lower(p_default_group) || ',' || group_id, group_array);
    DBMS_LDAP.free_mod_array (group_array);
    END;
    END IF;
    /*In FUNCTION portal_create_user*/
    IF p_default_group is not null then
    BEGIN
    wwsec_api.set_defaultgroup (p_groupid => wwsec_api.group_id (p_default_group),
    p_username => p_username);
    l_id := wwsec_api.id_sso(p_username => p_username);
    END;
    END IF;
    If i try to add the user to the group anyway with add_user_to_list:
    wwsec_api.add_user_to_list(p_person_id => wwsec_api.id(p_username),
    p_to_group_id => wwsec_api.group_id(p_default_group),
    p_is_owner => wwsec_api.NOT_OWNER);
    I get a User Defined Exception.
    I also can see the user in the list of members for the group and the group as the default group for the user in his profile.
    Anyway i still get the same message when trying to log in:
    Error: You do not have permission to perform this operation. (WWC-44131)
    Message was edited by:
    dani_sjd
    Message was edited by:
    dani_sjd

  • Error while creating new user

    Hi
    I HAVE LOGGED INTO oracle Portal with user : portal30 passwd : portal30.
    After selecteing the administer tab when i click on create new users I am getting error
    Error: (WWC-00000) with a back link ( which does not work ). I didn't get anything other than this on screen.
    I have tried to found out the soln but never succeded. What you think would be the reason for getting this error?
    do tell me on [email protected]
    Regards and thanks in advance
    Kedar

    Kedar,
    You may be able to find help on this by searching the 9iAS Portal forum, this forum is for questons relating specifically related to the PDK.
    thanks,
    Sue

  • Not able to create new users or groups

    hi all,
    We have configured multiple LDAPs by changing XML file.
    But now we are not able to create new users or groups.It is giving error saying that "Adapter is configured as read-only"
    Can anybody help me out in this problem.
    Thanking You,
    Amol.

    For multiple LDAPs to work we have downloaded the Xml file namely "Flat hierarchy + Database "
    We made the necessary changes and then uploaded it.
    Now we want to create users or groups in portal-database and not in LDAP. But it is throwing error saying that "Adapter is read only". We suppose that it is trying to create users and groups in LDAP.
    So can anyone help us to create users or groups in portal-database.
    Thanking You,
    Amol.

  • Problem in creating new user

    Hai all,
    I am new to Portals, when I am trying to create a new user it was displayed as "<b>User could not be created</b>". What is the actual process of creating a new user and how to work with that user. I have gone through some of the discussions in the form but unable to create the new one.
    Can any help on this please.
    Suma...

    Hi,
    Actual process of creating the user is
    logon to http://server:port/irj
    goto user administration
    goto users
    click create new user
    fill up all mandatory fields, define the data as configured (for e.g. password alphanumeric etc
    click create.
    You should be able to create the user.
    If this process doesnot work check ur UME store settings? if it is in LDAP server check if your LDAP is ab to craete new users etc? you can also try to create new users from Visual Admin .
    logoff and then try to login with the newly created user it should show password expire screen.
    regards,
    Rohin Aggarwal

  • Ess error & unable to create new user

    hi gurus...
    i new to portal and i m facing problem in ess and user creation ...
    1 .)   my ess is showing the following error
    Service cannot be reached
    What has happened?
    URL http://wind:8000/webdynpro/dispatcher/sap.com/pcui_gp~xssutils/XssMenu call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system EC1 with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:wind_EC1_00-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    2) In user management .. when i m clicking on create new user tab... it shows an error and says "An error occurred; contact your system administrator "   while i m the admin here and having all the right with me.
    pls help me regarding this....

    Hi,
    Did you install pcui_gp sca file suring deployment of ESS/MSS business package.?I think that sca file is missing
    1 .) my ess is showing the following error
    Service cannot be reached
    What has happened?
    URL http://wind:8000/webdynpro/dispatcher/sap.com/pcui_gp~xssutils/XssMenu call was terminated because the corresponding service is not available.
    2) In user management .. when i m clicking on create new user tab... it shows an error and says "An error occurred; contact your system administrator " while i m the admin here and having all the right with me.
    Is data dource configured to ABAP? then create in abap system such that users will be visible into portal.
    Regards,
    Koti Reddy

  • Can't create new users after GroupWise is moved from NetWare to Linux

    Hi,
    I moved GroupWise (Version 6.5 SP 6, single domain and single office)
    from NetWare 6.5 server to SUSE Linux Enterprise server 9. It seems the
    GroupWise server is running oaky. Existing users are able to connect
    their mail box and send and receive messages. But I can't create new
    users on the GroupWise server.
    I used ConsoleOne installed on the Linux server to create new GroupWise
    users. It seemed that I was able to do it. The new users appear on the
    NDS and the GroupWise File IDs were assigned for these users. And I was
    able to add these new users to distribution lists. But the users DB
    files (userXXX.db) were not created under /grpwise/po/ofuser on the Linux
    server and they cannot connect to the server. Old users cannot find them
    in Novell GroupWise Address book.
    Does anyone how to fix the problem?
    Thanks in advance!
    Jinkang

    Hi,
    [email protected] wrote:
    >
    > Hi,
    >
    > I moved GroupWise (Version 6.5 SP 6, single domain and single office)
    > from NetWare 6.5 server to SUSE Linux Enterprise server 9. It seems the
    > GroupWise server is running oaky. Existing users are able to connect
    > their mail box and send and receive messages. But I can't create new
    > users on the GroupWise server.
    >
    > I used ConsoleOne installed on the Linux server to create new GroupWise
    > users. It seemed that I was able to do it. The new users appear on the
    > NDS and the GroupWise File IDs were assigned for these users. And I was
    > able to add these new users to distribution lists. But the users DB
    > files (userXXX.db) were not created under /grpwise/po/ofuser on the Linux
    > server and they cannot connect to the server. Old users cannot find them
    > in Novell GroupWise Address book.
    >
    > Does anyone how to fix the problem?
    This clearly sounds like your domain (which is the part of groupwise
    which you admin against) doesn't/can't talk to the postoffice, so the
    change you made (to the domain) does never get to the PO (which is where
    the addressbook of your other users come from, and is what is
    responsible for creating the user DB). This seems very likely to be
    caused by your move not being done properly, and old information (either
    path or IP address) for the PO still being in the domain and/or domain
    database.
    So how's the domain linked to the PO?
    CU,
    Massimo Rosen
    Novell Product Support Forum Sysop
    No emails please!
    http://www.cfc-it.de

  • Create new user in  WebCenter Capture

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

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

  • Creating new user and group in BPEL PM.

    Hi,
    Please tell me how to cerate new user and groups in BPEL PM.
    I understand that BPEL PM uses jazn files to keep user information . I would like to know the steps to create new users and gourps in BPEL PM.
    Thanks

    Please refer this link http://download.oracle.com/docs/cd/E12483_01/integrate.1013/b28982/security.htm#CDDBJCHD and also you can create users/roles through EM (Enterprise Manager). Here even you can able to specify their roles.
    regards
    Rajesh A

  • Error while creating new user in Oracle 11i EBS

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

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

  • Old user account not accessible - Had to create new user account

    Why was I forced to create a new user account in order to access Apple discussions? The last time I had posted to Apple discussions was 11/06. From the emails notifying me of replies to my post, I can still go to the link where my question and the replies are. Last week I wanted to post another question. Instead I encountered a circular problem. Every time I tried to log in to discussions with my Apple ID and password (the same as my .Mac name and password, which were working fine for accessing .Mac), I was told that there was an error in my password. When I tried again, I was repeatedly re-directed to a "create new user account" web page that listed my .Mac email address as my Apple ID, as it should have. I tried to re-create my old user account with my own [real] name (as before) and was told that name was in use! Of course, it was me! (I had always used by real first name and surname as my name on Apple discussions.) So finally, very frustrated, I created a new name, a nickname, for discussions, and it worked. Now, all my previous posts are gone. It's as if I didn't exist in the Apple world until today, 9/16/07, but I originally had established my user account in 2004. I tried asking about this in a phone call to Apple support, but I was re-directed to the .Mac web site. Then I posted a question at .Mac feedback to no avail. I had a feeling that as soon as I "obeyed" and created a new user account that wouldn't be recognized as myself, my past posts would be sent into oblivion. I don't like losing all my previous posts that were attached to my user account. I have found this problem very frustrating and would really like an explanation.

    Hi decemberbaby,
    Try this procedure.
    Delete all the Apple Cookies in your browser, and empty the Cache.
    Go here Discussions Sign In, and try logging in with your original Apple ID again.
    If that still doesn't work, delete the Cookies again, and go to My Info, and log in with the original Apple ID.
    If you get the error message "Your Apple ID or password was entered incorrectly.", click on "Did you forget your password? Click here for assistance".
    On the page that opens, you can also click on "Forget your Apple ID
    ali b

Maybe you are looking for