Grant privileges to the user to edit only his own information

Hi all,
my Portal version is 9.0.4.0.99
I would like to grant to all users the privilege to change/edit only his own information.
When I go to the Administer Tab, enter the username in the portlet User, and then I check the checkbox: "Allow User editing", then this User can edit all users.
How can I grant the privilege to edit only his own information?
Regards
Leonid Pavlov

The Portal does not expose the DAS Edit My Profile link until version 10.1.4. Prior to this version, if the associated DAS actually supports this, you can just add the link on your portal page as a URL item:
http://host.domain.com:7777/oiddas/ui/oracle/ldap/das/mypage/AppEditMyPage?homeURL=http%3A%2F%2Fhost.domain.com%3A7778%2Fpls%2Fportal &doneURL=http%3A%2F%2Fhost.domain.com%3A7778%2Fpls%2Fportal&cancelURL=http%3A%2F%2Fhost.domain.com%3A7778%2Fpls%2Fportal
I.e., it takes the url:
<infra-host>/oiddas/ui/oracle/ldap/das/mypage/AppEditMyPage
with 3 url-encoded parameters:
homeURL - link rendered with Home icon in DAS
doneURL - target for [ OK ] in DAS
cancelURL - target for [ Cancel ] in DAS

Similar Messages

  • User can edit only his own rows

    Hi,
    I have a simple generated application. I logged the user in the DB-table who has created the row. Now I want that all users can see all entries of the table (blackboard) and can create new entries, but the user can update only his own entries.
    Ideally he sees the Edit-Icon on the report only with the rows he created and he has the right to update.
    Regards, Juergen

    Juergen,
    Yes, I was answering a different question. A query like the following would show/hide the edit link based on a column's value:    select decode(ENAME,:APP_USER,
          ''||
    '<img src="#IMAGE_PREFIX#edit_big.gif" border="0" alt="Edit Big Icon">',
          null) Edit,
        ENAME,
        JOB
        from EMP Of course you want the edit page to check if the user requesting the page should be able to update the row corresponding to the primary key value passed in, just in case someone tampers with the URL and goes to the edit page directly. You could use an authorization scheme for that.
    Scott

  • How to restrict a schema owner from granting privileges to other users.

    How can we restrict a schema owner from granting privileges to other users on his objects (e.g. tables). Lets say we have user called XYZ and he has tables in his schema TAB1, TAB2 an TAB3. How can we restrict user XYZ from granting privileges on TAB1, TAB2 and TAB3 to other users in the database. Is it possible in Oracle 10g R2? Any indirect or direct way to achieve this? Please help on this.
    Thanks,
    Manohar

    Whenever someone is trying to prevent an object owner from doing something, that's generally a sign of a deeper problem. In a production database, the object owner shouldn't generally have CREATE SESSION privileges, so the user shouldn't be able to log in, which would prevent the user from issuing any grants.
    As a general rule, you cannot stop an object owner from granting privileges on the objects it owns. You can work around this by creating a database-level DDL trigger that throws an exception if the user issuing the statement is XYZ and the DDL is a GRANT. But long term, you probably want to get to the root of the problem.
    Justin
    Edited by: Justin Cave on Nov 6, 2008 9:52 PM
    Enrique beat me to it.

  • Restrict the user to edit Activity

    Hi guys
    What will be the validation for the below scenarion
    1) To restrict the user to edit any activity a " 5 Days after the close of the month". for eg is a activity is created on 13/02/2011 , it can be edited till 05/03/2011
    Waiting for the solutions

    Another approach will be to use a pair of dynamic pages. Dynamic Pages for Task are base on "Type".
    So if you have Types like ToDo, CallBack, Research create 3 more as ToDo-RO, CallBack-RO, Research-RO
    Make copies of the Task Pages that you use for ToDo, CallBack, Research and make all the field as Read Only.
    So "Cust ToDo Task Page" is copies as "Cust ToDo Task Page - RO" and so on
    All fields in the - RO pages are Read Only.
    Create a Dynamic Page and assign the correct pages to the Type Values
    Type "ToDo" has the "Cust ToDo Task Page"
    Type "ToDo-RO" has the "Cust ToDo Task Page - RO"
    and so on
    Create an field "RecordRO" with Field Type "Checkbox" called Default Value as "N". Have a workflow set this field as "Y" on appropriate event or time tigger.
    In your case one workflow will be Time triggered to set this to Y on 5th of Month post the creation. So simply export on 4th or 5th night all Records that have the filed as N and reimport the Field as Y. Else use a WebService.
    Have one more workflow (Workflow Expression could be like FieldValue('<bRecordRO_ITAG>') = "Y") to set Type as PreValue of Type +"-RO"; Update Expression will be PRE('<Type>') + "-RO" with Overwrite Existing Values as TRUE
    Let me know if this works for you.
    How much we miss the On Premise State Models :-(.

  • How to restrict contributor users to  edit only few set of pages

    Hi All,
    We wanted to restrict some of the contributor users to edit only few set of pages,
    is that possible to implement ?
    Can somebody please give some pointers
    Thanks
    Hari

    I was looking for a hint in the documentation and could not find any. This means that either it is something obvious (not to me, unfortunately), or this concept is not native to the Site Studio. This means that all contributors are equal - at least, the section http://docs.oracle.com/cd/E21764_01/doc.1111/e10614/c01_intro.htm#i422918 seems to be written in that way.
    What could you try?
    This section, http://docs.oracle.com/cd/E21764_01/doc.1111/e13650/ssxa_creatingsites.htm#CIHGGCFB , suggests that all contributors are assigned the role WCMContributor. There is probably no finer distinction than that a user has this role or not.
    Then, each of used objects (namely, region definitions, native/contributors files) have its metadata. You could try to give read-only access to those contributors who won't edit the region.
    Last thing, which looks the most promising, but also the most complicated, is that you will dynamically change the region template, based on a user logged in (a sort of self-defined contrib mode). An example can be found in this thread: Display Contributor Regions dynamically (note that the example is about languages, you will need to implement your own logic!)

  • Grant privileges to a user for user_lock

    user_lock.sleep (3000);
    i am using it in my procedure.
    is it require to grant privileges to a user for user_lock.

    There is no built-in package namely user_lock. Actually it is dbms_lock.
    http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_lock.htm#sthref3898
    I was using dbms_lock few days ago. Yes dba has to give the privilege to use this package.
    SQL> grant execute on dbms_lock to scott;
    Grant succeeded.
    [My experiment]
    http://mamohiuddin.blogspot.com/2007/02/plsql-block-abnormal-termination-ed.html

  • How to show asterisk * effect once the user starts editing the document??

    I wrote a java text editor. I creat a new internal frame and allows to open a document.
    How to have an effect (an asterisk * follows the filename in title bar) once
    the user starts editing the document? And once I save that file, that asterisk * will
    disappear. It seems to me we need to add a listener, but not sure how to change
    the title bar of internal frame??

    just use DocumentListener like
    myTextArea.getDocument().addDocumentListener(new DocumentListenet(){
    public void changedUpdate(DocumentEvent e){
    frame.setTitle( frame.getTitle() + "*" );
    implements two other methods too

  • How to use progress indicator which block the user for editing ?

    Hi All,
    I have a requirement where i need to show a round progress bar while processing to the database.For example :- I have a bounded taskflow and inside it I have a two jspx page called as "First.jspx" and "Second.jspx".And i have two textboxes and one "Save" button on first.jspx page.
    Now when user puts the values in the textboxes and hits the "Save" button , my ticker or progress indicator should say "Please wait while processing" and as soon as the transaction is complete , i need to show another page which is "Second.jspx" page. "Save" button action has method inside a managed bean which has some functionality and then it executes the VO(View Object) and commits the data.
    How should i implement the indicator?
    I have read this article :- http://www.oracle.com/technetwork/developer-tools/adf/learnmore/42-progressbarcolor-169184.pdf but it doesn't fit to my requirement.I need indicator which holds the user to edit anything on the page.Like what we get when we do any transaction in banks while navigating to payment gateway.
    Please suggest!!!
    Thanks and Regards,
    Shah

    Hi Shah,
    The answer was around the same are that you were looking into. http://www.oracle.com/technetwork/developer-tools/adf/learnmore/27-long-running-queries-169166.pdf but the sample was the 27.
    - Juan Camilo

  • How to restrict the user to enter only numeric values in a input field

    How to restrict the user to enter only numeric values in a input field.
    For example,
    i have an input field in that i would like to enter
    only numeric values. no special characters,alphabets .
    reply ASAP

    Hi Venuthurupalli,
    As valery has said once you select the value to be of type integer,once you perform an action it will be validated and error message that non numeric characters are there will be shown. If you want to set additional constraints like max value, min value etc you can use simple types for it.
    On the project structure on left hand side under local dictionary ->datatypes->simple types create a simple type of type integer
    The attribute which you are binding to value property ;make its type as simple type which you made
    Hope this helps you
    Regards
    Rohit

  • Restricting the user to access only one view in or database

    A user wants to create a database link , so that he can view one of our views. We want to restrict permission, so that he can access only that view, and not any of our tables. What is the best way to proceed?
    Thanks in advance,
    Gayatri

    Pl do not post duplicate threads - Restricting the user to access only one view in or database

  • Roles for the user to Edit the Dimension without being an administrator

    Dear Users,
    I have a query based on Planning security.
    I want the user to edit the dimensions and members in planning application. However, the user cannot be administrator.
    I have created a user and assigned the role of "Interactive User" on Planning roles and of "Dimension Editor" on Shared Services access. With this provisioning user the "Administration-->Dimension" is grayed out for the user.
    Please suggest if roles can be assigned to the user in order to Edit the Dimension without being an administrator?
    Regards,
    Praveen.

    I am sure this question gets asked over and over, they need to be an administrator.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • [WPF] AutoCompleteBox: oblige the user to select only items in list

    Hi,
    I'm using AutoCompleteBox from Codeplex.com
    Is there a way for oblige the user to select only items shown in list?
    I would avoid that user can to insert custom words in database.
    Thanks.

    Hi robertino_salemi ,
    In my experience, if you want to "avoid custom words and insert into database", I suggest that you could check these words before user inserts into database.
    I have made a code sample , suppose there is a button, it will check the value when click the button. you can refer to code below.
    You can also use the other event ,such as LostFocus,MouseLeave etc.
    <toolkit:AutoCompleteBox x:Name="autoTextbox" Width="150" Height="30" SelectedItem="{Binding}"></toolkit:AutoCompleteBox>
    <Button Width="100" Height="30" Content="submit" Click="Button_Click"></Button>
    List<string> ls = new List<string>();
    public MainWindow()
    InitializeComponent();
    ls.Add("abc" );
    ls.Add( "acc" );
    ls.Add("affc" );
    autoTextbox.ItemsSource = ls;
    private void Button_Click(object sender, RoutedEventArgs e)
    if(!ls.Contains(autoTextbox.Text.Trim()))
    MessageBox.Show("Error data!");
    return;
    Best Regards,
    Eoro

  • User display only his own sales orders

    Hi ,
    I have a question , I need to setup a user in order to give him only the possibility to create,change an display his own sales orders .
    In your opinion this is possible and if yes in which way ?
    Thank you for your help
    Vittorio

    Hi Vittorio,
    You can try this method. 
    Create a Sales Group for the particular user. 
    Assign the authorization for the sales group only to that particular user.
    Make the Sales Group mandatory entry while creating the sales order (VA01 screen).
    By doing this the user can can only create / change / display sales orders under his sales group.  Hope this helps.
    Thanks,
    Kumar Venkataraman

  • How to delegate permission to user to update only his attribute

    i create GPO logon that Update user descreption
    and to do  that h had to delegate  Permission "property-specifc" to user to write in descreption  attribute
    and that work
    but the problem is the user can update other user descreption if he use secripts
    and i want user to update only his descreption

    Hi,
    This is Exchange server forum. I would like to verify if there is an Exchange server. Actually, we have a dedicated support team regarding the Microsoft Windows server, I recommend you ask your question on our Windows server forum which is staffed by more
    experts specializing in this kind of problems. Thanks for your understanding.
    For your convenience:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=windowsserver
    If you have any problem with Exchange server, welcome to our Exchange forum.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Get every user to see ONLY its own created variants

    Our system is being accessed by different users.
    When executing reports, users save their own variants into the system. However, we would like to restrict the access from all users to all saved variants. The goal is to get every user to see ONLY its own created variants.
    I believe there is an user-exit that combined with some access controls can provide us with this functionality. Do you know if it is possible? and if the user-exit really exists?. Do you know the user-exit name?.
    Thank you in advance.

    Oscar
    If there is a user exit, you would have to apply this to all of the reports and programs.
    This is probably a bigger task than getting the users to change their variants to a single entry.

Maybe you are looking for

  • Can the people recognition function in PSE 9 be configured to look for a specific person?

    HI All: I have over 100k photos in my library.  I'd like to have PSE 9 search through these images and identify only my family members.  For instance, I would like PSE 9 to serach for images of only my daughter and provide a tag for each image that c

  • Cash Customer Billwise Details Report

    Hi ABAP Gurus, Any body is having the report on Cash Customer Bill wise Details (with invoice details) ? Input criteria - Company Code, Plant, Cash Customer Name(customer Name given while creating cash customer) & Date Range(Document date). I am usin

  • Restore from ufs datafiles onto vxfs

    Hi, Our source database is 9.2.0.7 on Solaris 9 ufs. We do hot backup to Netbackup tape using rman script. Is there any problem restoring it onto another box with Solaris 9 vxfs? Thanks. Robin

  • Broken cell references when user variable is changed

    In our Hyperion Planning Application, we have a user variable which help us select a specific scenario for user input in the planning form.. But when we change the value of the user variable & refresh the form the cell references break, the reason is

  • Prevent multiple personnel actions being performed on the same day

    Hi Experts, Does anyone know if it is possible to prevent multiple personnel actions from being performed on the same day even where the action does not change the status of the employee? Regards, Janet