How would we hide Providers in Portal 9.0.2 from Users unauhourized to see?

Hi! I am using Oracle 9ias 9.0.2 on Windows 2000 Server. My Portal Version is 9.0.2.2.22
I am interested in knowing how to secure the Portal Repository Providers like "Administration, Database Administration, Monitoring" etc from End Users so that when to want to Customize a Page, they shouldnt see them in the Portlet Repository. (I wonder how my.oracle.com is doing this so effeciently)
We tried the following.
1. Revoke all access to Public by going to each page and Access Tab and checked "Specify Access Settings" and Revoking "View" previleges to "PUBLIC". I don't know why Oracle gives View Priveleges to "PUBLIC" in general. Don't they want Portal to be secure "out-of-the-box" or Are they doing some Cookie magic which we don't know of.
2. Went to Navigator->Portal Repository Page Group-->Edit Root Page-->Edit Page Group Properties-->Configure Tab-->Content and Classification-->Picked Administration, Database Administration and Monitoring and made them "HIDDEN".
3. Enabled Item Level Security on the Portal Repository Page Group and wanted to Pick "Access Settings on the thing that is showing those Page Display's i.e the "Sub Page Display". But this designed as an Item and Portal Administrators Cannot Pick Security on this Item.
Dont know how to do this in Portal Version 9.0.2.2.22.
Could some body through some light?
Any help is Greatly Appreciated.
Thanks
RK

Here are the steps to secure the providers:
login as schema owner
adminstrator tab
portlets tab
click on icon Edit a Provider Registration
select provider like LOGIN SERVER edit
Access Tab
Select the users/groups and the Privileges you wnat to give.
hope this helps
regards

Similar Messages

  • How to create a VI that detects and records responses from user

    Does anyone has experience in creating a VI that allows the user to e.g., watch a video or series of images, pause or rewind video etc. and the VI records the duration of all pauses or user responses.

    avenue wrote:
    How to create a VI that detects and records responses from user
    You definitely need to check what 'EVENT STRUCTURE' is and how to use it... because thats needed to write such code.
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.

  • How to get list of FMs while creating Contact Person from User Admin Link

    Hi Experts,
    We are implementing SAP ECommerce for my SAP ERP. In one of our requirements, we need to develop MASS UPLOAD program which will take input as Contact Person's first name, last name, address and authorization details and create new Contact Person as it is done through User admin link.
    To develop above tool, I want to trace all the Function Modules which are called while creating new Contact Person from User admin link.
    Please provide your inputs on how I can get the trace of FMs.
    Thanks,
    Keya

    Hi Keya,
    For a B2C eCommerce solution, you are looking at FMs BAPI_CUSTOMER_CREATEFROMDATA1 and ISA_USER_CREATE and the table USAPPLREF which holds the reference to the customer and user.
    To get the FMs called, you would have to do a session trace during B2C user registration / B2B user creation from UME. You could search this forum on a 'how-to' for doing a session trace or lookup the development and extension guide that provides a lot of useful information.
    Cheers,
    Ashok.

  • How to deploy a VO Bind variable to get value from user session....

    Hello everbody...
    A JSF Page has a table based on VO with two parameters. One of this parameters I will pass by operation ExecuteWithParams.
    but the other parameter I need to pass a value from User session.
    Is that possible? How would I do that? I´m using jdev10.1.3
    Thankyou...

    When you created a binding for executeWithParams in your pageDef, the action binding should have had NamedData elements for each of the parameters. These would have been assigned values from a variableIterator up in the executables section. The parameter that gets its value from user input should be left alone. For the parameter that gets its value from the user session, change the EL expression that defines its NDValue attribute so that it references the session information that you want to use. This can be a sessionScope variable that you set earlier in the session, as Frank suggests, a property of a managed bean in session scope, or some other variable.

  • How to reinstall window 8.1 when app data deleted from user folder

    due to fault i deleted my app data from user folder of c drive  due to this some apps and software not working prioperly so i want to reinstall my windos but it is not done  so help me to solve this problem of deleting app data

    Hi there 
    Welcome to the HP Support Forums! It is a great place to find the help you need, both from other users, HP experts and other support personnel. I understand that you deleted the App data from your profile and now apps are not working properly.  I am happy to assist with this. Please post the full product number for your notebook. See the following, if you need help with that information.
    How Do I Find My Model Number or Product Number?
    Also, was Windows 8.1 your factory installed operating system? I would recommedn that you backup any personal data, files, etc from the system before doing anything else. Then you can do a system recovery to restore the factory installation.
    Performing an HP System Recovery (Windows 8)
    Troubleshooting HP System Recovery Problems (Windows 8)

  • How would I save and name multiple images automatically acquired from a Imaqdx camera?

    I have a code that can save images however, there is a need for user input when it comes to saving the images.
    I also attached the code.
    Attachments:
    CodeForPictures.vi ‏116 KB

    Hi Theydon,
    The number of photos is going to be set by how often you are calling that IMAQdx Snap.  This right now is going to be limited by the prep time between shots.  If you make it so the loop will run more than once a second, you will get more photos.  
    Secondly, why do you have that while loop around the write to file?  You don't actually need it, and this is probably what is causing the files to skipover those files.  If you would still like to decide whether or not to save the image, you could use a case structure instead of this while loop. 
    Cheers,
    Marti C
    Applications Engineer
    National Instruments
    NI Medical

  • How would I change the variables in multiple methods with the user input?

    Here is my code for a tic tac toe game I have to do for an assignment, it is currently set at the normal 3 x 3, but the teacher what the user to be albe to change these to between 3-5 before they start playing, here is my codeing
    import java.util.*;
    public class TicTacToe
    Constructs an empty board.
    private String[][] board;
    private static int ROWS = 3;
    private static int COLUMNS = 3;
    public TicTacToe()
    int size = in.nextInt();
    board = new String[ROWS][COLUMNS];
    // Fill with spaces
    for (int i = 0; i < size; i++)
    for (int j = 0; j < size; j++)
    board[i][j] = " ";
    Sets a field in the board. The field must be unoccupied.
    @param i the row index
    @param j the column index
    @param player the player ("x" or "o")
    public void set(int i, int j, String player)
    if (board[i][j].equals(" "))
    board[i][j] = player;
    Creates a string representation of the board, such as
    |x o|
    | x |
    | o|
    @return the string representation
    public String toString()
    String r = "";
    for (int i = 0; i < ROWS; i++)
    r = r + "|";
    for (int j = 0; j < COLUMNS; j++)
    r = r + board[i][j];
    r = r + "|\n";
    return r;
    I am having a problem figuring out how to change the variables ROWS , COLUMNS to the given user input, it seems easy but i can't really figure out how to do it
    thanks ahead of time

    import java.util.*;
    public class TicTacToe
    Constructs an empty board.
    private String[][] board;
    private static int ROWS = 3;
    private static int COLUMNS = 3;
    public TicTacToe()
    int size = in.nextInt();
    board = new String[ROWS][COLUMNS];
    // Fill with spaces
    for (int i = 0; i < size; i++)
    for (int j = 0; j < size; j++)
    board[j] = " ";
    Sets a field in the board. The field must be unoccupied.
    @param i the row index
    @param j the column index
    @param player the player ("x" or "o")
    public void set(int i, int j, String player)
    if (board[j].equals(" "))
    board[j] = player;
    Creates a string representation of the board, such as
    |x o|
    | x |
    | o|
    @return the string representation
    public String toString()
    String r = "";
    for (int i = 0; i < ROWS; i++)
    r = r + "|";
    for (int j = 0; j < COLUMNS; j++)
    r = r + board[j];
    r = r + "|\n";
    return r;
    }sorry for not posting code correctyl new to this forums
    Thanks for the help but let me rephrase my question, the rows and columns are the same like 3x3, 4x4 ,or 5x5,
    -when the program runs it will ask the user for what they want to set the tic tac toe at between 3 - 5.
    My question is how do I get the code
    Scanner a = new Scanner ( System.in );
    System.out.print("Enter the size of the tic tac toe box to be between 3-5 : ");
    int sizeTicTacToe = a.next();to change the variables of ROWS COLUMNS
    I just want to know of a way to make the users input of sizeTicTacToe to change the variables ROWS & COLUMNS in my toString() and TicTacToe() methods

  • HT1296 How would I change the downloading on an i phone from a computer to a laptop?

    I had a computer before I got my own laptop, but back then I had to down load my i phone 4 to the computer now everytime I want to down load music I have to go back to the computer instead of being able to do it from my laptop. Also when I do that it also downloads my parents contacts list to my phone and then I have to delete them one by one.

    This has to do with the iTunes library. You should make sure all the music you want is on the laptop library and then you would not have to do this.

  • How would you limit the number of Web App items a user can enter.

    I am creating a web app where people can list objects/items. I want to offer plans that will enable users to enter up to a predefined number of entries and no more than what they paid to enter. They can then come back as often as they wish during their subscription period to update, create, and/or delete entries ( but again, never more than what thier subscription entitles them ).
    Fore sake of illustration.
    User Plan 1 entitles user to enter 1 web app item,
    while
    User Plan 2 entitle user to enter 3 web app items, and
    User Plan 3 entitles user to enter 5 web app items.
    These are annual plans.
    Any ideas?

    Hi,
    As per your query you can not define to any user for schedule selected background jobs. I hope you are clear for this.
    Anil

  • How can I disable the telemetry prompt in kiosk mode from user preference.

    We are running firefox in kiosk mode , I am using r_kiosk plugin to disable all the functionality, and update the user pref with following , but still getting the telemetry prompt is showing up.
    pref("toolkit.telemetry.prompted", false);
    pref("toolkit.telemetry.rejected", true);
    pref("toolkit.telemetry.enabled", false);
    rpm : firefox-24.4.0-1.el6.centos.x86_64
    Do we have any option to increase the frequency / manually initiative the telemetry prompt to verify after updating the user preference.

    The about:config page shows toolkit.telemetry.prompted as an Integer pref with value 2 for me.
    *toolkit.telemetry.enabled = true
    *toolkit.telemetry.prompted = 2
    *toolkit.telemetry.rejected = true

  • How do I hide the "hidden" Album on my iPad

    Previously in iPhoto on my Mac I would use the 'hide' function to stop pictures being sent to my iOS devices, it also meant I could keep collections of photos complete but still edit the content to make it more concise, duplicate/similar pictures would be hidden.
    Any content in that was hidden would not sync to iOS.
    Now I find the "hidden" album is not only visible, but sits very prominently on the second row of the albums view and is a hotch potch of random images.
    Also any "hidden" images are very much visible on iOS within their albums and the all photo view.
    How do I hide this album again in iOS?

    iPad User Guide (For iOS 5.0 Software)

  • How I can hide the iCloud music library in iTunes?

    How I can hide the iCloud music library in iTunes? I want to see only my local music library.

    If you go into edit and click preferences there is a checkbox in the "store" tab that says "Show iTunes in the Cloud purchases" if you uncheck that it will show only the local content.

  • How can I hide the version of ColdFusion showing in COldFusion Administrator

    How can I hide the version of coldfusion being shown from the coldfusion administrator login page? Right now I have the Version: 6,1,0,83762 showing.

    For security reasons.
    If there are known vulnerabilities with a specific version of a software release, you don't want to have someone who is scanning to be able to pull that information and then be able to try known attacks that will increase their chances of compromising your site/application.

  • How to rename (com. company ) the portal content folder, iview, role.,

    Hi All,
    How can we rename the folder name, folder id, role, workset, page and iview properties to a new company(brand) name?
    For example, if we have com.xyz in the folder id prefix, we need to rename as com.abc.
    Basically this is required to change the brand name in the each level of the portal package. The end user should not see the old brand name in any of the content including view, url, etc.,
    Please help! Thanks in advance!
    Regards,
    Senthil

    Hi,
    Changing the ID of a PCD object is not like changing an attribute.
    As the PCD is a JNDI provider, the name of the object is its unique identifier, and changing it conceptually means deleting it, and creating a new one.
    One of the obvious ways to solve the issue in your case is to change the prefix once in each system.
    However, in newer versions of the portal (like 7.3 and above), there is an option of change recording, that can be used:
    Managing Change Recording in the Portal - Portal - SAP Library
    Unlike in older versions where deletions and "change IDs" couldn't be transferred, this feature enables to transfer also such operations on the content.
    All the above is correct as long as you are not trying to change content which is provided by SAP.
    Content provided by SAP, that starts with the "com.sap." prefix must not be changed.
    Thanks & regards,
    Michal

  • Is there a way to sync past messages from my old iPhone to my iPhone 5 ? I'm aware of the iTunes backup syncing but how would I transfer that between two devices ?

    Is there a way to sync past messages from my old iPhone to my iPhone 5 ? I'm aware of the iTunes backup syncing but how would I transfer that between two devices ?

    Restore from old iPhone backup can past all data including messages to your new iPhone. Or you can resfer to this iPhone 4/4S SMS to iPhone 5 transfer tutorial. It shows you how to transfer messages only.

Maybe you are looking for