The User portlet and the Portal User Profile portlet

Im trying to create a sub administrator home page on version
309, however the 'create user' portlet has been split into
a 'create user' and a 'update user profile' portlet (as seen on
the new default portal30 homepage).
However the only portlet that seems to be available in the
portlet list is 'update user profile' portlet.
So how do I add the create user portlet to my homepage?

I found the wwsec_api and wwsso_api_user_admin packages. I now know I can build my own user profile screen and use these APIs to add, update, and remove users.
However, do I need to use the wwsec_person$ table, or can I create my own? Or can I add additional fields to the wwsec_person$ table? I have 7 additional pieces of information that need to be captured. I could just use some of the database fields in the table that we don't currently have use for, but then the name of the field will not accurately represent the contents of the data (i.e. store our "Organization" data in the "Department" field, our "DSN Phone Number" in the "Work Phone Number" field, etc.) and it would make for difficult maintenance.
Can anyone offer suggestions as to how they implemented a customized User Profile, easily?

Similar Messages

  • How to fetch data for skills catalog to the ESS skills profile

    Hi Experts,
    I am adding qualifications using the following path:
    SPRO > Personnel Management > Personnel Development > Master Data > Edit Qualifications Catalog
    This should reflect in the Portal under Career and Job > Learning Page > Skills Profile. Can you please guide me about the steps to be taken to make this available.
    Further to this,
    If an employee updates his skills in the portal skills profile, that should update his infotype 24 accordingly. What configuration should be done to make this happen.
    Your guidance is much appreciated.
    Thanks,
    Toa

    Hi Toa,
    Can you have a look at the switch QUALI/ESSST in T77S0 the documentation says:
    "Within the ESS service used to edit the skills profile, this entry
    enables you to restrict the view of the skills catalog to the skills
    group determined here."
    It might help
    Best regards
    Sarah

  • User profile is not avaliable on the first request to portal.

    Hi, I am having a problem with anonymous user profile.
    When user come to our portal for the first time:
    1) In desktop backing file we will initialize it's anonymous profile.
    ProfileWrapper userProfile = SessionHelper.getProfile(SessionHelper.getSession(request, true));
    userProfile.setProperty("UserProperties", "user-region-name", "Germany");
    2) The in Java Page Flow action I could read or change this value, but in the following forwarded .jsp page
    I read only NULL values.
    In the JSP I tried to read it by scriptlet, tags.
    <%
    ProfileWrapper userProfile = SessionHelper.getProfile(session);
    String segmentJ = ((String) userProfile.getProperty("UserProperties", "user-region-name"));
    System.out.println("JSP CODE:"+segmentJ);
    %>
    JSP CODE: [<%=segmentJ%>]
    <profile:getProperty propertyName="user-region-name" propertySet="UserProperties" id="segment"/>
    ruser-region-namee : <c:out value="${segment}"/><br>
    But in the both situations I read only NULL values.
    In the next request(F5) all values are accessible.
    Please adivice how can I read user profile or deal with it in correct way?
    P.S At the same moment I couldn't read user profile in the Struts portlet at all. :(
    Thanks

    Hi
    Couple of things.
    1. Try using this below API to get ProfileWrapper and see if that helps. This is what I use on my side after login action, and I could get user profile details.
    ProfileWrapper aProfileWrapper = ProfileFactory.getProfile(loginId, null);
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14255/index.html
    2. Now, in the backing file, you are setting some properties. Which lifecycle methods are you setting them in. Like in handlePostBack or preRender. For time being, set them in both these methods and add proper System.out.printlns to observer which method is actually getting invoked. handlePostback gets called only when we move across tabs, as per my observation so far. So I set them or get them in preRender method.
    Thanks
    Ravi Jegga

  • I just created a new profile/user on my MacBook Pro. My pointer/mouse. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. Mouse moves but will not click. Already tried restarting and the pram zap.

    I just created a new profile/user on my MacBook Pro. My pointer/mouse on my trackpad. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. The Mouse moves but will not click. Already tried restarting and the pram zap. The problem starts when I log out of my main profile. I get to the login screen and my laptop stops responding to clicks. When I manage to make my way back to my main profile the mouse works perfectly.  Should I just delete the new profile and try again?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • I used the migration assistant to transfer files from my PC to my Mac but it recreated my user profile from the PC and I wanted to transfer the files to the new different user profile I've setup on the Mac. How can I transfer everything now?

    I have an older Windows laptop and I am switching to a new MacBook Air. The main user on the Windows laptop is going to be different than the main user on the MacBook. I used the migration assistant to transfer data to the MacBook but it recreated the whole older profile on the new Mac when I just wanted to pull everything over into the new user profile I had already created on the new MacBook. How can I go about putting the data over into the new user profile and erasing the older other user profile it recreated? Would I erase the old user profile on the new Mac and start over with the migration assistant using some setting I missed that lets me pull the data over to the new main user on the MacBook? Or is there a way to rename the old user profile on the Mac to match what I want the new username/password to be somehow?
    Or would it be best to back the data I really need from the old PC onto an external HD and then copy it over to the new Mac from the external HD?
    Looking for advice on how to best go about this. On the old PC I had multiple profiles and it was awkward. On the new Mac I just want a single profile for the primary user and both users will just share the same user profile. I wasn't sure if the Migration Assistant only let you recreate entire profiles or if there was a way to just import data from the old PC's primary profile into the new Mac's new primary profile with some setting adjustment.
    Data would be docs, pics, bookmarks, music. Fairly basic.
    Thanks for any and all advice,
    -Crosscourier.

    Look in the /Users/ folder.

  • ITunes 12.1.2.7 works for one user profile and not another on the same PC

    When using iTunes 12.1.2.27 with my user profile in Windows 7, it will run for about a minute before I get the message that iTunes has crashed and that Windows is searching for a solution.  It never finds one, and the problem persists.  I've tried doing a restart of the computer and uninstalling and reinstalling iTunes.  Nothing works.
    However, my wife has a separate user profile on the same computer.  The same installation of iTunes that crashes with me works as it should when she uses it with her profile.  What's going on, and how do I fix it? 

    See Fix unexpected quits or launch issues in iTunes for Windows - Apple Support.
    tt2

  • Error in Windows 7: User Profile Service was not logged on. The user and administra​torprofile

    Error in Windows 7: User Profile Service was not logged on. The user profile can not be loaded. Administrator profile and the code does not work. What do I do?
    HP G5384sc desktop pc

    Hello
    Unfortunately I did not manage to fix my computer yet. My printer is broken so I bought a new one, but since I do not have administrator rights, I can not connect the new printer, so I have to write all-installing notes down with pencil and simultaneously translate them into Danish so it is a very slow process. I'll tell you if it succeeds, otherwise there is of course the primitive way to buy a new computer, but it's the same as giving up. Not yet.
    Until now, many thanks for the good suggestions.
    Kind regards
    Birgeres

  • Can I sysprep a system and keep all the user profiles?

    Hi All,
    I'm creating a Windows 7 image that I would like to have 4 user profiles in addition to the administrator one.  Each computer is a standalone (public use) computer and uses  a specific user account/profile depending on how the computer
    will be used.  When I sysprep the image and deploy it with connecting to the Deployment WorkBench the user accounts are still there but the changes to the desktops are gone.  Is there I setting I can use to stop this.  I understand the CopyProfile
    option creates a default profile I really do want 4 separate desktops to make deployment easier.  It worked great for XP.

    1. This is by design and sysprep does not allow to tune its behaviour. Sysprepping W XP and W 7 is quite different.
    2. copyprofile parameter has only one purpose - to copy administrator profile to default profile and adapt permissions appropriately.
    3. I would reconfigure installation with script, or better by GPO in AD.
    Rgds
    Milos

  • Need urgent help on how to compare the user profile and process form attributes

    Hi All,
    We have a requirement  where after editing the  user profile attributes we have to compare the currently modified user  profile attributes and the existing     
    process form attributes and based on the differences we have to update the  process form accordingly.
    We have around 80 attributes so we cannot follow the procedure where
    we update the lookup process_triggers
    and add the "change attribute" task
    and "update attribute" taskin the process definition
    because it creates aroung 160 tasks in process definition. So we are doing it by writing a custom code. Is there any other simple way to do it or any API"s which can help us.
    Need very quick help.Thanks in advance.
    Regards,
    Geetha

    Check MOS: 1595938.1
    -Bikash

  • I have a seemingly endless number of user profiles in my manager, when there should be the default, they all have some random hash and finish in "....hat" is this an issue?

    Ran my profile manager to create a second user profile for work and noticed there were a ton of profiles in there. all with seemingly random hashes, they all finished in |....hat| not sure what to make of it.

    Marcelo,
    I've been trying to load hundreds of pictures onto an SD card for digital photo frame and have the exact same problem. This also happens with a USB flash drive.
    Found a solution - stuff the files - copy the stuffed file onto card and unstuff at destination. Give it a try - would love to know if it works for you as well.

  • Example of creating a valid LDAP user and group in the Portal tree

    I need to create (via bulk LDIP or API) fresh users AND groups into OID that can be used by Portal. In theory it sounds easy - just create an appropriate LDIF file.
    What is the best way to achieve this?
    I don't the know the structure that should be used in the LDIF file that would create the correct structure held for all the Portal users and groups in OID.
    I've looked through the OID admin and dev guides but am still confused as to what exactly I have to do. It seems that Portal accounts are synchronised by a method called Provisioning.
    All I want to do is bulk upload Portal compatible users into the repository.
    Can somebody please assist.
    Cheers,
    John

    I have below changes in files
    1] In jps-config.xml
    -- Added identity store and selected it from drop down in Security Context tab.
    2] In weblogic-application.xml
    In Security tab --> Role assignment mapped valid-users to principle name.
    <security>
    <realm-name>myrealm</realm-name>
    <security-role-assignment>
    <role-name>valid-users</role-name>
    <principal-name>DERDev</principal-name>
    </security-role-assignment>
    </security>
    3] Same thing done in weblogic.xml . I do not know the difference between weblogic-application.xml and weblogic.xml configuartion and which will work.
    4] Added security role "DERDev" along with the default/automatically added role "valid users"
    <security-role>
    <role-name>DERDev</role-name>
    </security-role>
    Still no luck ...... i am missing again ? I referred many links but found not a single document mentioning all steps
    Mukesh

  • Lost all files and applications installed after changing user profile in the registry of windows 8.1 pc

    The original user profile on my windows 8.1 pc is C:\Apple\acer sm. I tried changing it to C:\Apple\Apple. After I rebooted my PC, I found out that all my files and applications are lost. What shall I do to recover them?
    Your help would save my life. Thank you!

    Hi AppleMist,
    We wonder if you changed the registry entry or path of user profile.
    If you did that in registry please try changing it back.
    After changing your user profile and reboot, system won’t read the profile you changed but a new user profile (C:\Apple\acer sm or TEMP) should be created by system. Try renaming this new one as acer sm.old and changing the apple back to acer sm.
    It should works fine if you didn’t change file in profile, if it doesn’t work perform a system restore.
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • What Are The Minimum Permissions In Order An User To Be Able To Access User Profile Data With JavaScript And REST API

    The question says it all:
    What Are The Minimum Permissions In Order An User To Be Able To Access User Profile Data With JavaScript And REST API.?
    In the User Profile -> Permissions there is only the option for "Full Control".

    Hi Nikolay,
    Thanks for posting your issue, you need to set permissions on User Profiles = Read. Kindly find the below mentioned URLs to get the code and more details on this.
    http://www.vrdmn.com/2013/02/sharepoint-2013-working-with-user.html
    http://www.vrdmn.com/2013/07/sharepoint-2013-get-userprofile.html
    http://sharepoint.stackexchange.com/questions/61714/sharepoint-2013-call-the-rest-api-from-sharepoint-hosted-app
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2013/04/09/how-to-query-sharepoint-2013-using-rest-and-javascript.aspx
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Working on the User Profile and Mysite web

    I just trying to get few information from a user (like if the mysite web exits) and working with that. The main problem is understand if the user has a mysite web and delete it if exists but to do that the only possible way seems using CSOM. Also I should
    create a Powershell script for that. Did anyone never do that?
    If a post answers your question, please click "Mark As Answer" on that post and "Vote as Helpful"
    salvatoredifaziosharepoint.blogspot.com
    Twitter: @Salvodif
    MVP SharePoint Server

    Hi Salvo Di Fazio,
    PeopleManager.GetMyProperties method returns a type of UserProfiles.PersonProperties, that represents the user profile properties.
    PersonProperties contains a PersonalUrl property, that is the absolute URL of the user’s personal site.
    We can use this property to check the user’s personal site, check whether it exists.
    Following is an example about how to get user’s profile using CSOM:
    How to: Retrieve user profile properties by using the JavaScript object model in SharePoint 2013:
    http://msdn.microsoft.com/en-us/library/office/jj920104.aspx
    Thanks,
    Qiao Wei
    TechNet Community Support

Maybe you are looking for

  • How to take a dmp from my designer user

    dear friends i'm new with oracle designer i created a uers named ERP and granted all the needed privilages then i succeded to install the reprosotry after that i created a new application folder and i created my ERD digram successfuly then i managed

  • Outlook integration - missing menu items in "Business Partners" module

    Hello! We have a problem with the Outlook Integration addon for SAP 2007. When we add a new user, the addon installs correctly, but there's no "Outlook messages import" and "Import settings" items in "Business Partners" module. Another items and sett

  • Mac mini only logs on to guest

    I seem to have lost my admin account access....when I boot up, all I get is the guest account access. How do I get my admin account back?

  • Development tool for Other Modules of Oracle Apps

    With reference of my last post ( Oracle Apps and Oracle Developer 6i ). Grant Ronald (Ace Member) reply me that not all applications are built on Oracle Developer 6i, actually I want to know that which modules of Oracle Apps built on which tools. Kin

  • Is not available in Saudi Arabia.

    FaceTime is not available in Saudi Arabia. How long the service is not available are tired of prevention for this servicewhich is considered separately from Apple for customers. Sorry Apple ..................!