Default favorites portlet for different groups in oid

Hi,
We are using Portal 10.1.4.
I want to use the favorites portlet to have default favorites for different user groups (So different set of default favourites for diffrent portal group)
Is this possible? Is the portlet cached at the system level? can this be changed?
Also, How do I hide the help link and image from the 'personalize' wizard?
Can the display in the wizards be modified in other ways?
cheers
Kev

Vijay, that doesn't seem to work. What I need (and I think it is the same as the original poster ) is to have several different instances of the favorites portlet or one instance that can have its links access controlled. e.g. A favorites portlet for the students group with links that only that OID group can see, a favorites portlet for staff with links that only the staff OID group can see. I am using portal 10.1.4 and cannot see any way to access control the default favourites.
Thanks,
Steven.

Similar Messages

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

  • How to use different default parameter value for different report subscriptions

    In ssrs is it possible to define different default parameter values for different subscriptions? In the following example I have a report which has two subscriptions with different start date and end date values:
    Report name – Testsubscription.rdl
    Subscription-1
    Input parameter (default values):
    start_date = first day of current Month
    end_date = till date
    Subscription-2
    Input parameter (default values):
    start_date = first day of current Quarter
    end_date = till date
    I know an alternative way of doing this would be to copy the rdl file with a different name but I am curious whether this can be done within a single report definition file. I am using SQL Server 2008 R2 Standard Edition.
    Thanks!
    spp

    Hi sppdba,
    As per my understanding, there is a report with two parameter: start_date and end_date, you want to configure subscription for the report, and set different default values for start date and end date. And you want to know if it is possible to achieve you
    goal by using a single report definition file.
    Since you are using SQL Server 2008 R2 Standard Edition, we need to achieve your goal by configuring two subscriptions for the report. For detail information, please refer to the following steps:
      1. In design surface, right click start_date and open Parameter Properties dialog box.
      2. In General pane, type Name and Prompt, set Data Type to Date/Time.
      3. Click Available Values in left pane, select Specify Values.
      4. Click Add button, in Label text box, type “First day of Current Month”, click (fx) button in Value section, then type the expression like below:
    =DateSerial(Year(Now()), Month(Now()), 1)
      5. Click Add button, in Label text box, type “First day of Current Quarter”, click (fx) button in Value section, then type the expression like below, then click OK.
    =DateSerial(Year(Now()), (3*DatePart("q",Now()))-2, 1)
      6. Right click end_date and open Parameter Properties dialog box.
      7. In Available Values pane, select Specify Values.
      8. Click Add button, in Label text box, type “Today”, click (fx) button in Value section, then type the expression =Today(), then click OK.
    Now that the parameters are created, we need to configure subscription for the report. For detail information, please follow these steps:
      1. Open Report Manager, and locate the report for which you want to create a new subscription.
      2. Hover over the report, and click the drop-down arrow.
      3. In the drop-down menu, click Manage. This opens the General properties page for the report.
      4. Select the Subscriptions tab, and then click New Subscription.
      5. Select the delivery extension and data source for the subscription.
      6. Select a method of delivery, then choose report delivery options.
      7. Specify conditions that cause the subscription to process and delivery to occur.
      8. Set start_date to First day of Current Month, end_date to Today, then click OK.
      9. Create a new subscription as step4 to 7, set start_date to First day of Current Quarter, end_date to Today, then click OK.
    The following screenshots are for your reference:
    For detail information about Creating Standard Subscriptions, please refer to the following document:
    http://msdn.microsoft.com/en-us/data/ms156307(v=sql.105)
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • Set different ringtone for different group of people

    I can not set different ringtomes within iphone 4s for different group people in order to know the different rigntone from which group of people.

    You can't and need to assign the ringtones to your contacts on by one.

  • What is the best way to present favorite photos for a group of people

    What is the best way to present your favorite photos for a group presentation?? I use iPhoto library. I also have Aperture downloaded on my iMac. Not too familiar with Aperture.  It is for a milestone birthday.

    I think it's easiest to work from iPhoto. When I had to do a similar presentation for a birthday bash, I loaded the picts from my camera and some from my computer into iPhoto on a relative's MacBook Pro avalable at the site. It did not take a lot of time or trouble.
    iPhoto allows fairly easy options for presenting the slide show , including various transitions and putting a sound track underneath.
    Regardless of whether the presentation was or wasn't  less elegant than what some more expensive software could do, the attendees loved what we did for that bash.
    Never used Aperture so I don't know what it can do. You could ask in the Aperature forums here:
    Aperture

  • How can I put "Favorites"portlets for various users in a page?

    How can i put in a page two "Favorites" portlets (one for each user that log on into the page and one for each group of users that logon into the page),so each
    user can customize (add favorites,delete favorites,..) it's own "Favorites" portlet and the other "Favorites" portlet is only customizable by a
    group of user,so if the user log on is not in that group can't customize the portlet.

    The favorites portlet is set up to work this way automatically. You put one version on a page, and the customizations are stored for each individual user. So the same portlet displays different favorites based on the logged in user. At this point, there is no way to define favorites for a group.

  • How to retrieve Min(startDate) and Max(endDate) for different groups of data? (sql server 2000)

    My sample dataset (below) contains 3 groups -- 'a', 'b', 'c'.  I need to retrieve the Min(startDate) and Max(EndDate) for each group so that the output looks something like this (date format not an issue):
    fk   minStart       maxEnd
    a    1/13/1985    12/31/2003
    b    2/14/1986    12/31/2003
    c    4/26/1987    12/31/2002
    What is the Tsql to perform this type of operation?  Note:  the actual data resides in a sql server 2000 DB.  If the Tsql is different between version 2000 and the later versions -- I would be grateful for both versions of the Tsql
    --I noticed that multiple lines of Insert values doesn't work in Sql Server 2000 -- this sample is in Sql Server 2008
    create table #tmp2(rowID int Identity(1,1), fk varchar(1), startDate datetime, endDate datetime)
    insert into #tmp2
    values
    ('a', '1/13/1985', '12/31/1999'),
    ('a', '3/17/1992', '12/31/1997'),
    ('a', '4/21/1987', '12/31/2003'),
    ('b', '2/14/1986', '12/31/2003'),
    ('b', '5/30/1993', '12/31/2001'),
    ('b', '6/15/1994', '12/31/2003'),
    ('b', '7/7/2001', '12/31/2003'),
    ('c', '4/26/1987', '12/31/1991'),
    ('c', '8/14/1992', '12/31/1998'),
    ('c', '9/10/1995', '12/31/2002'),
    ('c', '10/9/1996', '12/31/2000')
    Thanks
    Rich P

    Rich
    It is unclear what you are trying to achieve, you said that it is SQL Server 2000 but provide a sample data with SQL Server 2008 syntax
    Is it possible to use UNION ALL for your queries to make its one 
    select * from
    select * from #tmp2 t1 where exists
    (select * from (select top 1 * from #tmp2 t2 where t2.fk = t1.fk order by t2.startdate) x where x.rowID = t1.rowID)
    UNION ALL
    select * from #tmp2 t1 where exists
    (select * from (select top 1 * from #tmp2 t2 where t2.fk = t1.fk order by t2.Enddate desc) x where x.rowID = t1.rowID)
     as  der order by fk
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Web application for different groups

    I need to develop an application, which is used by 3 different group of people (each group from a different state, I might need to distinguish orders from different state). All the users data is stored in central LDAP server.
    I need to design schema for datbase and come up with a good architecture for web application (Servlets/jsp's etc).
    Guys, if you have worked on a similar project or if you have any suggestions on how to structure the application, please reply me with your suggestions and hints. I have to start working on this project from next week..I am planning to take few days for designing the application then I want to start coding

    I need to develop an application, which is used by 3
    different group of people (each group from a different
    state, I might need to distinguish orders from
    different state). All the users data is stored in
    central LDAP server.
    I need to design schema for datbase and come up with a
    good architecture for web application (Servlets/jsp's
    etc).
    Guys, if you have worked on a similar project or if
    you have any suggestions on how to structure the
    application, please reply me with your suggestions and
    hints. I have to start working on this project from
    next week..I am planning to take few days for
    designing the application then I want to start codingAre you getting paid? Are you willing to split that payment to those who help?

  • WSUS Manage Approval for different Groups

    We have different products the the company hosts and they require that servers be patched on Test servers prior to a code release. Once the the servers are tested then the same set of patches should be deployed to the production servers during a scheduled
    time when the code is released to the production servers. And that is the case for other products but the cycle between the product is always different. So we always want test group be product match the production group by product. What is the best solution
    to implement for this type of environment to be able to approve any missing update to the test group for a product and when time comes how to push the same updates to production groups.
    The way I have it seems messy because i have bunch of nested groups by datacenter > product name > purpose of the server "wether it is QA webserver, prod webserver, dev webserver, other servers,
    etc... and what i do is from Update Reports, run "Update Status Summary" report on the test group that has a status of "Needed, Failed, No Status" and from there approve the updates to that test group. Install the updates, etc... and then
    when I want to deploy the updates to certain groups, I run the "Updated Tabular Status for Approved Updates", select the same test group that was deployed to and the option "Installed/NotApplicable, Needed" and approve to the Production
    group. Seems like I am doing this all wrong. Appreciate the help. Thanks.

    Hi,
    I’m not sure if I have got your idea correctly. After you approved for test group, and there is any problem. You need approve for production group or all computer group.
    A similar question here:
    How does the WSUS approval process work ?
    For more information about approval process please refer to:
    Approving the Updates
    http://technet.microsoft.com/en-us/library/cc708474(v=ws.10).aspx
    Step 7: Approve and Deploy Updates in WSUS 3.0
    http://technet.microsoft.com/en-us/library/cc708475(v=ws.10).aspx
    Hope this helps.

  • 10g: unable to set default dashpoard (portalpath) for multiple groups

    Hi All,
    I am facing a problem while setting portal path for multiple groups.
    I have two RPD groups and each group need to have it's own default dashboard as a lending page.
    We are using RPD authentication and can't use database table to save portalpath for each user or group.
    What have I tried so far is as follows:
    We have two groups Group1 and Group2 which need to have default dashboard as *\shared\_portal\dashboard1* and *\shared\_portal\dashboard2* respectively.
    Approach 1: Create a Session INIT block with the following query:
    select case when 'Group1' = ':GROUP' then '\shared\_portal\dashboard1' else '\shared\_portal\dashboard2' end from dual
    Result: Failed - As all the users are directed to '\shared\_portal\dashboard2'. Somehow *':Group'* isn't getting the GROUP assigned.
    Even tried replacing ':GROUP' with 'VALUEOF(GROUP)' in SQL query, however it didn't help.
    Any help with achieving the same functionality will be appreciated.
    Regards,
    Kansal

    Kansal,
    Here you go...make use of below example and change as per you need.
    Create a SESSION - INIT BLOCK with this in query...Say PPIB
    SELECT CASE WHEN 'VALUEOF(NQ_SESSION.GROUP)' = 'DASH_usr' THEN '/shared/test' WHEN 'VALUEOF(NQ_SESSION.GROUP)' = 'DASH_ctr' THEN '/shared/test1' END FROM DUAL
    Assign a variable to it with name PORTALPATH and default to anything say '/abc/'
    This will work for sure...You can test this in RPD as well.
    Hope this helps

  • Managing updates for different groups

    Hi
    I have installed WSUS on a Server 2008 R2 VM and have configure WSUS computer groups using group policy. These groups have all updated and I can see the computers in there containers within WSUS.
    Does anyone have any advice on how to manage the updates for each group?
    I am just a bit confused, when I click on the updates section of the WSUS console and show all updates, how do I know what updates have been approved for what group of computers already?
    Thanks in advance
    Shane

    Hi Shane,
    We can use Update View.
    We can filter updates by classification, product, the group for which they have been approved, and synchronization date. We can sort the list by clicking the appropriate column heading in the title bar.
    To create a new update view, please follow the steps below,
    In the WSUS administration console, expand the Updates node, and then click
    All Updates.
    In the Actions pane, click New Update View.
    In the Add Update View window, under
    Step 1: Select properties, select the properties you need to filter the update view:
    Select Updates are in a specific classification to filter on updates belonging to one or more update classifications.
    Select Updates are for a specific product to filter on updates for one or more products or product families.
    Select Updates are approved for a specific group to filter on updates approved for one or more computer groups.
    Select Updates were synchronized within a specific time period to filter on updates synchronized at a specific time.
    Select Updates are WSUS updates to filter on WSUS updates.
    Under Step 2: Edit the properties, click the underlined words to pick the values you want.
    Under Step 3: Specify a name, give your new view a name.
    Click OK.
    Your new view will appear in the tree view pane under Updates. It will be displayed, like the standard views, in the center pane when you select it.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Paint different color for different group

    Hello guys,
    I want to make the report colorful, the color should be same for same group, the color should be change for every other group. Kind of did some research but cannot figure out yet, I will appreciate all your helps. Thank you in advance!
    -Bill

    Tim,
    Thank you for your fast response, actually I should have made my question clearer. Let's take your sample data, what I need is like this:
    For group 1 Nuts and Bolts Limited, make background yellow,
    981110 10-NOV-04 Standard EUR 122
    100000 28-MAY-04 Standard FIM 122
    100001 28-MAY-04 Standard FIM 200
    1 03-JUN-04 Standard FIM 400
    100004 28-MAY-04 Standard FIM 100
    00s 07-JUN-04 Standard FIM 100
    FI1009 10-MAY-04 Standard FIM 1220
    Stop make background yellow.
    For group 2 Tick Tock Clocks, make background blue,
    100002 28-MAY-04 Standard DEM 235
    100003 28-MAY-04 Standard DEM 100
    2001 01-JUN-04 Standard EUR 1000
    2002 01-JUN-04 Standard EUR 1500
    2003 01-JUN-04 Standard DEM 1000
    2004 01-JUN-04 Standard DEM 2000
    3001 04-JUN-04 Standard EUR 1000
    FI1011 25-MAY-04 Standard DEM 2000
    Stop make background blue.
    For group 3, make background back to yellow
    Big Bike Motorsports
    3001 01-JUN-04 Standard SEK 1000
    FI1013 02-JUN-04 Standard USD 25000
    Stop make background back to yellow
    For group 4, make background back to blue
    Second Cars
    FI1010 20-MAY-04 Standard FIM 2440
    Stop make background back to blue
    That is, I need the xml change the background every time the group is changed.
    Message was edited by:
    billzheng2004

  • Default where clause for different users

    Hi!
    Is it possible to implement a different where clause to the filter for when different users log into the application?
    Let's say I have a table DEPARTMENTS and users Mark and John.
    I would like the following:
    When Mark logs in and opens the report, it will have the following data:
    select * from DEPARTMENTS where REGION='EUROPE';
    Where John logs in and opens the report, he will see:
    select * from DEPARTMENTS where REGION='NORTH AMERICA';
    Thanks!

    Hi,
    if you go to the Security tab in Edit Application Properties you will find a section called Database Session. This is where you can set a session context that can be used by a database feature called Virtual Private Database (VPD) or Fine Grained Access Control (FGAC). This is a feature where the database can be set up to automatically modify any query in order to add extra query filters that have a context, usually related to the logged on user, thus allowing only access to relevant data. I would suggest the you read up on this feature as it is the recommended method of applying security in a row wise fashion.
    Regards
    Andre

  • Can I set up custom default printer profiles for different printers in mountain lion?

    I have 2 printers connected to my Mac. An officejet and an Eltron label printer. I constantly need to manually change the default label printer size to print to the label printer or officejet. Is there a way to set it where all print jobs going to the label printer is 4x6? Sometimes, I forget and waste some labels to the eltron or send a job to my office jet and it prints a 4x6 image of the document on letter paper. Obviously its a bit of a hassle. If anyone has a trick for this or even third party software, please advise.

    Andrew,
    If i am clear with your requirement then You can achieve this by setting the value manually in PR.
    OAMessageChoiceBean createMessageBean=(OAMessageChoiceBean)webBean.findChildRecursive("CreateEditIjp");
    createMessageBean.setText(pageContext,"InitialValue");Regards,
    Gyan

  • Default Domain profiles for different OUs / departments - GPO ?

    Hi,
    i know there is only one default domain user profile possible.
    We are using Windows 2012 R2 and Windows 7/ 8.1 Clients.
    We would like to delegate a few OUs.
    How is the best way to handle delegation and different profiles ?
    Should we create only one default domain user profile without any sofware installed ?
    Next we save this profile in Netlogon ?
    And each department / different OU admin deploy his software ?
    Is it possible to control where will be use the default user profile ?
    Maybe by security filtering ?
    Is this the right way ?
    Thank you very much & best regards
    Andi

    Hi Andi,
    Based on your description, did you mean that want to set default domain user profile? From Darrell Gorter’s
    description in
    this thread, this option seems to be unsupported and known it have issues.
    Meanwhile, please refer to following article and check if can help you.
    A Better Way to Customize the Windows
    Default Profile
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    If anything I misunderstand or any update, please don’t hesitate to let us know.
    Hope this helps.
    Best regards,
    Justin Gu

Maybe you are looking for

  • Anyone else seeing the page-curl bug I just reported to Apple?

    Here's the bug: If you import AVCHD footage into iMovie (or even a screen recording made in QuickTime Player) in "Large" (not full size), the page-curl transition will corrupt when iMovie tries to play it back at the original footage's size or larger

  • Word from pdf cannot be saved

    Why I cannot save a word doc converted from pdf?

  • Navigation with MouseListener

    Hi! My navigation goes wrong, but perhaps it's an easy answer to it? In my application I have a JFrame with BorderLayout. In West I have a JPanel with some JLabels ( let's call them A, B and C) creating a menu with 3 alternatives and in Center I have

  • Outlook sync errors

    Lately I have been getting this in Outlook on my home computer. I d not seem to have this same problem in the office accessing the same remote Exchange server. I do not see any resources about this on line. 11:28:32 Synchronizer Version 15.0.4551 11:

  • Weblogic stress test

    Hi, I have a forms 11g applications that have been installed on an HP ProLiant DL360 G7 (64GB) with Oracle Weblogic 1.0.3.3 64 Bit / Oracle Fusion Middleware 11.1.1.3 64 Bit(RHEL 5.5 64-Bit). I guess the machine is not bad for 300-400 concurrent user