RE: Hiding portal favourites for all users..

Hi,
I would like to know how to hide the "Portal Favourites" column in the Portal screen for all the users.
It works for a customized iview.when i tried to do in Default framework page..its not getting applied for all the users..
Can somebody tell me how to do this ?...Thanks.

Hi Addy
Content Administration->Portal Content
navigate to Portal Content->Content Provided by SAP->End User Content->Standard Portal Users
You can see the default framework page
Open the framework.
Select the desktop inner page check box and click OPEN.
Now you can see the portal favourities iview.
Remove it from the page.
Also check this forume link
remove portal Favorites
Hope this information will help you
Regards
Ruturaj
Edited by: Ruturaj Inamdar on Jul 29, 2009 7:52 AM

Similar Messages

  • Portal favourites for all users to be same

    hi all,
    we have implemented ESS over portal and i have added some links to portal favourites.
    they are appearing fine in my portal favourites section.
    Now the requirement is that i want all users to see the same links when they logon by their respective ids.
    but this is not happening. those links are in portal favourites for my id only.
    Kindly let me what to do.
    the way I added those links was to just click over the link in ESS workset and from the page title bar, selected the option, add to portal favourite.
    thanks

    Hi Ankur,
    I guess you want one person to manage favorites for all the users of Portal. In such a case you can achieve this without any development work using KM. Just follow the below steps:
    1. Create a folder in KM inside documents folder (Content Admin > KM content > documents), say Favorites.
    2. Create links (external/Internal) inside the folder.
    3. Create a KM navigation I view by name Favorites and edit the property Path to Initially Displayed Folder = /documents/favorites (your folder path in KM)
    4. Add this I view to your homepage and page to the subsequent role
    5. Assign the role to the user.
    It works like custom favorites for all users using which you can centrally control user favorites just by adding or removing links in the KM favorites folder.
    Regards,
    Santhosh

  • Moving Portal Favorites for All Users

    Hi,
    I need to migrate all portal favorites for all users from one environment to another (Test - Prod)
    How can I do this with ICE when all I can see in the userhome directory a folder with my username and my favorites? Where are all the other users favorites stored?
    Regards,
    Roaa

    Hi Rooa,
              All Users Portal Favourites are stored under Content Administration -> KM Content -> Root -> Userhome.
    This folder has all the data related / specific to a user. You can trasport this through to ICE to your other environment (QA or prod).
    Check if this helps.

  • Moving Workspace settings for all users

    Hi
    I wanna move all workspace settings(like default startup options,preview modes, different type of separators etc ) for all users from test to dev enviroment.
    Does anybady know how to do it?
    regards
    sasha

    Hi Rooa,
              All Users Portal Favourites are stored under Content Administration -> KM Content -> Root -> Userhome.
    This folder has all the data related / specific to a user. You can trasport this through to ICE to your other environment (QA or prod).
    Check if this helps.

  • How to set a common page for all users after loging on?

    hi all,
    Now "My Dashboard" is the default page after logon.
    i want to set a default home page for all users. users can see the home page after loging on.
    how to change the default dashboard from "My Dashboard" to "Home page" for all users?
    thanks,
    dan

    Hi,
    Steps:
    Tried to set default dashboard for all the users.
    1. Created a session init block
    2. Used data source as select '/shared/SH Test/_portal/Test1' from dual
    3. Assigned this value to PORTALPATH session variable
    4. In Presentation services > Administration > My account > Default dashboard should be set to 'default'. Then only the dashboard specified in init block will be displayed otherwise My account will override the init block.
    5. Save the changes made to rpd.
    5. Logout and relogin to see if it is working fine. it is working perfectly fine.
    For details please refer the GSC replication document. But it is for all the users.
    if customer would like to have user/group based home page.
    1. They may need to have 2 separate tables.
    i. Group_path_tab with 2 columns. Group_id, portal_path
    Have group wise portal path for all the groups
    ii. User-group map table
    Group_id, Group_name, user_id
    User should be part of some group.
    2. Then in the init block write the sql should be something like this
    select A.portal_path from Group_path_tab A, User_group_map B
    where B.user_id = :USER
    and B.Group_id = A.Group_id
    SO based on USER session variable, it will try to identify the group and then the portal_path.
    Finally assign this value to PORTALPATH session variable.
    ref:
    http://total-bi.com/2011/01/obiee-11g-change-default-dashboard/
    Thanks!

  • Creating portal desktop for the user

    Hi All-
    Please help me out...
    1) Could you let me know the detailed procedure ( if possible please provide screen shots) to create "Portal Desktop for the user".
    2)Suppose we developed a webDynpro Application and we need to make it Role Based access....please let me how to achieve this..
    3)Help me out in creation of "Roles" in Portal Content Development and the steps to assign pages to "Roles"
    Regards,
    Cris

    Hi Cris,
    Follow these links for the required info.
    Creating Portal Desktop for specific user
    Portal Branding for specific user
    Creating Roles & worksets
    http://help.sap.com/saphelp_nw04/helpdata/en/4f/bceaffeb8c114ebef8255b63079c7c/frameset.htm
    Integrating webdynpro in portal
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/2fffe990-0201-0010-aab0-e61c3250bcf3
    Hope I am helpful.
    Cheers,
    Santhosh

  • Getting tasks for all users in a role

    Hi,
    We need to get all users in a Role, and out of those, find out which one has the least tasks in their UWL using a WebService. Saw some example codes and here's my attempt at it. Doesn't quite work, I'm getting the Logged in users context or session doesn't exist Exception. Any help on this will be GREATLY appreciated.
    public class LeastTasksBean implements LeastTasksLocal {
         public String getUserLeastTasks( String sRole )
              try{
                   Map<String, String> users = new HashMap<String, String>();
                   Map<String, String> tasks = new HashMap<String, String>();
                   final int sessionIdleTimeout = 60;
                   String Users[] = UMFactory.getRoleFactory().getUsersOfRole( sRole, true );
                   if( Users != null ){
                        for( int i = 0; i < Users.length; i ++ ){
                             UWLContext  uwlContext      = new UWLContext();
                             IUWLService uwlService      = findService();
                             uwlContext.setAllowBackEndConnections( true );
                             IUser uwlContextUser        = UMFactory.getUserFactory().getUser( Users[0] );
                             uwlContext.setUser            ( uwlContextUser );
                             Locale loc                  = new Locale( "ES" );
                             uwlContext.setLocale          ( loc );
                             HttpServletRequest request  = getHttpRequest();
                             uwlContext.setOriginRequest   ( request );
                             IUWLSession session         = uwlService.beginSession( uwlContext, sessionIdleTimeout );
                             uwlContext.setSession         ( session );
                             IUWLItemManager itemManager = uwlService.getItemManager( uwlContext );
                             QueryResult result          = itemManager.getItems( uwlContext, null, null );
                             users.put( String.valueOf( i ), uwlContext.getUserName() );
                             tasks.put( String.valueOf( i ), String.valueOf( result.getItems().size() ) );
                             uwlService.endSession( uwlContext );
                        int userTasks = 0;
                        int leastTasks = Integer.valueOf( tasks.get( 0 ) );
                        int userKey = 0;
                        for( int i = 0; i < Users.length; i ++ ){
                             userTasks = Integer.valueOf( tasks.get( Integer.toString( i ) ) );
                             if( userTasks < leastTasks ){
                                  leastTasks = userTasks;
                                  userKey = i;
                        return users.get( Integer.toString( userKey ) );
                   else{
                        return "No users exist for this role";
              //Exception Handling
         private IUWLService findService() throws NamingException
              Properties properties = new Properties();
              properties.put( InitialContext.INITIAL_CONTEXT_FACTORY, "com.sapportals.portal.prt.registry.PortalRegistryFactory" ); 
              InitialContext ctx = new InitialContext( propiedades ); 
              IUWLService uwlService = ( IUWLService ) ctx.lookup( IUWLService.ALIAS_KEY );
              return uwlService;
         private HttpServletRequest getHttpRequest() throws Exception
              Properties properties = new Properties();
              properties.put( "domain", "true" );
              ApplicationWebServiceContext wsContext =
                   (ApplicationWebServiceContext) new InitialContext( propiedades ).lookup( "/wsContext/" + ApplicationWebServiceContext.APPLICATION_WSCONTEXT );
              HttpServletRequest request = wsContext.getHttpServletRequest();
              return request; 

    Hi David,
    I have a similar requirement on our project. I need to get a count of pending workitems for all user but I'm getting similar message when I try to access UWL context of any other user.
    Did you find any solution for this? Is it possible to get the workitems for all users using webservice or wendynpro?
    I would appreciate if you can provide some inputs on this.
    Thank you in advance.
    Regards,
    Seema Rane

  • Changing Default Portlets on My Pages for All Users

    Hello,
    I want to add the Collaboration My Projects Portlet on the default My Pages that comes out of box during a portal install.
    I did trying going to Default Profiles - Edit Profile Layout - went to the My Pages as the default profile and added My Projects.
    Then finished up.
    However, when logging in as a user (via Active Directory which was previously synced) - nothing had changes.
    Suggestions how to add My Projects on a My Page for all users?
    Thanks,
    V

    Vivekvp wrote:
    Great...I added a new one, and it dropped it to the bottom of the page, in the middle column.
    Any idea on how to move it to the top left by default?
    Help...again?
    VRandom thought, but you might want to try changing the "Mandatory Portlet Priority". I know the portlet isn't mandatory, so it SHOULDN"T work, but I've seen whackier things:)
    Good luck!

  • New flash player not working for all users

    I have Flash 10.0.22.87 installed on a freshly built Citrix 4.5 PS.  When the administrator is signed in, everything works just fine.  When my users sign in, they navigate to a webpage that requires flash and it either tells them that Flash is not installed or it prompts them to install (but does nothing when you tell it to).
    Did flash player become profile specific with this new release?  I have 10.0.12.36 and 9.0.115.0 on my other Citrix servers and they work without issue for all users.  I've tried uninstalling with the utility I downloaded from adobe.com and re-installing with the offline activeX control.  I've played with the security settings opening thing wide open and it still does not work.  There is no different software between the problem server and the other Citrix servers other than this version of Flash.
    Any suggestions?  Thanks in Advance
    Linc

    I am experiencing the same problem on my LAN.  Administrator account the app works fine, end users sign in with non admin accounts and it will not work.
    I spent some time reading online and found the following instructions on the NET.  I tried them and I thought it worked because I was able to log on as a non admin user test account and the flash player worked just fine. 
    Log in as Admin
    2. Download the following zip file from here:
    www.supportflash.com/reset_all.zip
    3. Unzip this folder onto your desktop.
    4. Drag both files ‘reset_min_all.cmd’ and
    ‘subinacl.exe’ to your
    desktop.
    5. Run the reset_min_all.cmd file.
    6. It will open a DOS like terminal and start
    running through registry
    keys.
    7. When it is finished it will say “press any key
    to continue”.
    8. At this point you can install the latest Flash
    Player:
    for Internet Explorer:
    http://www.adobe.com/support/flashplayer/ts/documents/tn_19166/Install_F
    lash_Player_9_ActiveX.zip
    other browsers:
    http://www.adobe.com/go/getflashplayer
    9. Check that Flash Player is working for the
    Admin.
    10. Check that Flash Player is working as the
    other 2 users.
    I hope this information helps. Feel free to reply
    if you need further
    assistance on the issue discussed here or file
    a new case if you want to
    report a new issue in the Support Portal:
    I also found 6 different versions of Version 8 that supposedly does not require Admin priveleges but it does.  Back to the drawing board. 

  • View chat history for all users and prevent them f...

    "I need to be able to view chat history for all users in the organization and prevent them from deleting their chat history.  This needs to be done form a centralized admin portal and not on each workstation. I don’t see that as possible with Skype for Business.  If it is please let me know. That is a must-have. The rest I can work around. "
    Can anyone please provide documents that confirm if its possible or not.
    Thank you

    You can reset a VIs rev history using VI Server to load the vi and a method to reset. See attached (LV 8.6)
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness
    Attachments:
    Reset VI History.vi ‏9 KB

  • Can a page only have 1 style for all users?

    Portal 3.0.6
    I was wondering if there is a way to allow users to apply page styles to their page version of the standard page only. We have a multi-tab page that all users have. I would like the ability for users to select / create new styles for their version of the page without affecting other users. If we grant manage style on the page they can modify the style, but it effects all users which is no good. Also, we are constantly announcing new portlets, so we cannot have the user copy the default page to their own.
    So the short question is:
    Can a page only have 1 style for all users?
    Thanks,
    Tom Hillson
    null

    There is an option on setting a style for a page to use the User's default style. User's can create a style and set it as their default through the Navigator. Any page with the user's default style selected will pick up that style or if the user doesn't have a default, it will fall back on the overall portal default set in global settings.

  • Activate Accessibility Features for all users?

    Is there a way to activate Accessibility Features for all users by editing a table on the Portal side?
    EP6 SP2 and NW04S.
    Thanks
    Jean Seguin

    Hi Jean,
    not that I would know of. But you can easily write a small portal component which sets the accessibility level of all users to your preferred level.
    The code snippet below should give you an idea of what I mean
    IUserFactory userFactory = UMFactory.getUserFactory();
    IUserSearchFilter filter = userFactoy.getUserSearchFilter();
    ISearchResult result = userFactory.searchUsers(filter);
    while (result.hasNext()){
      String userId = (String)result.next();
      IUserMaint user = userFactory.getMutableUser(userId);
      user.setAccessibilityLevel(IUser.SCREENREADER_ACCESSIBILITY_LEVEL);
      user.commit();
    Best regards,
    Martin

  • How do I set Firefox to be usable for all users on one computer?

    How do I set Firefox to be usable for all users on one computer?

    I would think the about:config entries discussed are ex-factory set to values each user has to change individually, after the installation has run its course. The solution could be to have patched files ready to install post factum:
    [https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/A_brief_guide_to_Mozilla_preferences A Brief Guide to Mozilla Preferences - MDN]

  • HT1660 how can I use one single library for all users on the same laptop?

    how can I use one single library for all users on the same laptop?

    You are most of the way there. Each user having access to hard drive is the key. If users are limited in file privileges this is harder.
    Any files you add to your library and any files she adds to her library are available to the other. Just not automatically. Each user must add the files to their own library using the add file or add folder option from menu bar.
    What I have done is set library location to a location outside of My Documents\My Music. On my network storage I have a folder names s:\itunes. Both accounts iTunes are set to use this location for the library.

  • How to set the same General settings for all users

    Hi Experts,
    How can i set the same general settings for all users e.g. marking the checkbox "Display header" to true for all users? General settings are possible under User Settings Button.
    Regards,
    Arti.

    Hi Arti!
    You can default user settings in a PFCG role, in the "personalization" tab.
    If you have a PFCG role that is common to all your users, you can set the default values here.
    However it does not prevent them to change these settings later, except if you modify the "user settings" fields properties in cProjects application.
    Matthias

Maybe you are looking for