How can I make my users password unchangable

Hi Expert,
i faced a problme currently. we have a training system which a lot of people have full authorization.
my users password have been changed several times by someone else. so i do not know if i can make it unchangable? and do you know if i can make the system do not lock my user after failed login attempt.
THANKS IN ADVANCE!
Cliff

> Thanks for your answer however some trainee have full access to the system due to the basis course needs..
Have a look at grouping users and make sure the trainers are in a group that cannot be modified by the trainees. As a security consultant I tend to disbelieve anyone who claims to need 'full access'. What is this course about?  "How to administer a complete SAP system all alone? "
Apart from that I always tell my trainees to behave or they'll fail the course/test/certification. I always assume I deal with adults when SAP is concerned.
> for the second part why i can not change login/fails_to_user_lock in RZ11? I have "SAP_ALL"  authorization
That could be because it is in the  default profile or instance profile. Have a look at RZ10 instead. (http://help.sap.com/saphelp_nw04/helpdata/EN/22/41c43ac23cef2fe10000000a114084/frameset.htm and http://help.sap.com/saphelp_nw04/helpdata/EN/c4/3a6247505211d189550000e829fbbd/frameset.htm)
Jurjen (Heeck is my last name)
Edited by: Jurjen Heeck on Sep 3, 2008 9:12 AM

Similar Messages

  • How can I make a document password protective in Business Bluprint?

    Dear Folks,
    How can I make a document password protective in Solar01.
    Regards.

    Hi Nabi,
    Before uploading the document in SOLAR01 make it password protected. Your requirement will be met.
    best regds,
    Alagammai.

  • How can I make my user input on the same line as the question?

    The only way I know of doing it is
    System.out.println ("Please enter an uppercase letter of the English Alphabet: ");
              letter = dataIn.readLine ();But that makes Please enter an uppercase letter of the English Alphabet:
    **User input here, a line down**So how can I make it all fit into one line with this sort of layout:
    Please enter an uppercase letter of the English Alphabet:  **USER INPUTS HERE, SAME LINE**

    change your call from println to print.
    check the API docs for this stuff, it tells you everything you need to know.
    Good Luck
    Lee

  • How can I make JSpinner value remain unchange

    Hi,
    I've posted this message on Programming forum before, and many friends recommend me better to post in Swing forum.
    I have a question on how to make the value remain unchange after some confirmations? In my program, I have to ask whether user want to change the value,
    if yes, something other settings will be reset.
    if no, I hope the vaule in Jspinner remains unchange.
    I tried to use the state stateChanged event to detect any value change. and set back the previousValue, however, it comes into the event many times...
    pbrockway2 has suggested me to add a flag inside stateChanged to prevent it comes into the event, however, this method not so work all times. And the value also will keep being increased or decreased.
    Can some of you give a hints, the code below :
           jSpinner_row.addChangeListener(new ChangeListener()
                public void stateChanged(ChangeEvent event)
                    if(CheckFlag)
                        int result = JOptionPane.showConfirmDialog(ParentFrame,
                                "Are you sure you want to row setting ?",
                                "Setup", JOptionPane.YES_NO_OPTION,
                                JOptionPane.QUESTION_MESSAGE);
                        if (result == JOptionPane.NO_OPTION)
                            CheckFlag = false;
                            jSpinner_row.setValue(jSpinner_row.getPreviousValue());
                            CheckFlag = true;
                            return;
                        else
                            // do reset of controls and re - construct panel
                            CheckFlag = true;
            });

    this might (?) be one way, but, as is, only works with SpinnerNumberModel
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      JSpinner spinner;
      final int MIN = 0, MAX = 100;
      public void buildGUI()
        JPanel p = new JPanel();
        spinner = new JSpinner(new SpinnerNumberModel(MIN,MIN,MAX,1));
        ((JSpinner.DefaultEditor)spinner.getEditor()).getTextField().setEditable(false);
        spinner.setUI(new ChangeVerifierUI());
        p.add(spinner);
        JFrame f = new JFrame();
        f.getContentPane().add(p);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      class ChangeVerifierUI extends javax.swing.plaf.basic.BasicSpinnerUI
        protected Component createNextButton()
          JButton nextButton = (JButton)super.createNextButton();
          nextButton.removeMouseListener(nextButton.getMouseListeners()[0]);
          nextButton.addMouseListener(new MouseAdapter(){
            public void mousePressed(MouseEvent me){
              if(((Integer)spinner.getValue()).intValue() < MAX) checkChange(+1);
          return nextButton;
        protected Component createPreviousButton()
          JButton previousButton = (JButton)super.createPreviousButton();
          previousButton.removeMouseListener(previousButton.getMouseListeners()[0]);
          previousButton.addMouseListener(new MouseAdapter(){
            public void mousePressed(MouseEvent me){
              if(((Integer)spinner.getValue()).intValue() > MIN) checkChange(-1);
          return previousButton;
      public void checkChange(int direction)
        int result = JOptionPane.showConfirmDialog(null,"Are you sure you want to row setting ?",
            "Setup", JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE);
        if (result == JOptionPane.YES_OPTION) spinner.setValue(
          ((Integer)spinner.getValue()).intValue()+
          (((Number)((SpinnerNumberModel)spinner.getModel()).getStepSize()).intValue())*direction);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • How can i modify the user password and responsibility?

    as i know, i can define user form sercurity/user/define.
    if the user have forgoten their password, how can i reset their password. ?
    and if i want to change their responsibility, how can i do.?

    Hi
    you can reset user password by doing:
    - sercurity >> user >> define
    - search for user you want to reset password for him and set new password and reenter it and save what you make
    - when this user reenter with the new password he will prompted to reenter new password and he will done as he like
    FOR changing their reponsibility you can doing:
    - sercurity >> user >> define
    - search for user you want to change his reponsibility and:-
    * if you want to add new one to hime you can navagate to reponsibility field and enter the reponsibility you need and set its active date(from - to)
    *save what you made
    * if you want to revoke reponsibility from him you can set date of from field = date of to field
    *save waht you made                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can I make firefox remember passwords on ALL sites?

    Firefox has a feature to remember my passwords, which is very useful. However, some sites mess with this so they won't save my passwords. In some cases these sites turn "autocomplete" off for the password field in their html; in other cases they appear to use some kind of javascript magic to stop me from saving my passwords.
    First of all, why should websites try to stop me from saving my password? Do they really think its more secure if people have to write their passwords on stickynotes on their monitor to remember them--or worse, use the same password on all sites? I what way is it conceivably more secure? In any case it's MY business how I manage my passwords--not theirs!
    I have had some success in battling evil sites that try to stop my from saving my passwords by editing the nsLoginManager.js file. But this is not convenient as I must keep doing this every time firefox gets upgraded, and it doesn't work for some sites like American Express which I think use some sort of javascript to stop me from doing what I want.
    So my question is, how can I effectively make firefox remember ALL the passwords I want, when _I_ want to--and NOT obey evil websites that just want to practice CYA while actually making me LESS secure?

    You can use the Remember Password bookmarklet: <br />
    https://www.squarefree.com/bookmarklets/forms.html#remember_password <br /> ''Has worked for me when I have needed it to save a password on a web site that used autocomplete=off.'' As far as the Bug that '''cor-el''' linked, I can't remember ever running across a website that did it like that.
    Or, you can use the Saved Password Editor extension, which includes a means of manually adding Username/Passwords to Firefox. <br />
    https://addons.mozilla.org/en-US/firefox/addon/60265

  • How can I retrieve my user password for imac

    Just bought an imac.  My password won't work and I can't access my computer how can I change my password or retrieve the old one?

    You can use your Apple ID to rest your admin password >  OS X: Apple ID can be used to reset your user account password

  • How can I change the User Password expiry date

    Hi,
    I want to know how can I change the password expiration date of my user without changing his password. For eg:-
    User password expires on 12th May 2007. I want to extend to 12th Jun 2007. Is there any option in Oracle.
    Alter User <USERNAME> password expire .....<to new date>;

    The command is not alter user set expire...
    You should modify the user's profile, and set a timeframe:
    ALTER PROFILE DEFAULT LIMIT
    PASSWORD_LIFE_TIME = num_of_days;
    This way your password will be valid from the last time it was changed and for the time frame previously defined.
    ~ Madrid.

  • How Can I change all User Passwords Within a Directory Instance

    Hi Experts,
    I've been asked to refresh an old directory instance with some production data.  Easy enough I thought, however, the user has requested that all user passwords within the old directory instance are preserved.  Is that at all possible?  My chain of thought was that I can extract user passwords from the old instance into a file: -
    # ldapsearch -D cn="Directory Manager" -w xxxxxxxx -b o=xxxxxxx objectclass=* userpassword > <name of file>
    And then then use ldapmodify (or alike) to re-import the user passwords once I've refresh the old instance with the production data.  However, to my knowledge, in order to modify a particular entry via a file, i'd need the following format: -
    dn: gci=-1,ou=people,o=xxxxxxxx
    changetype: modify
    replace: userpassword
    userpassword: xxxxxxxxxxxxxxxx
    The only information I have in the file I created using the ldapsearch command above is as follows: -
    dn: gci=-1,ou=people,o=xxxxxxxx
    userpassword: xxxxxxxxxxxxxxxx
    I don't want to have to edit the file and add the relevant missing entries accordingly as the generated file has somewhere in the region of 150 thousand entries.
    Am I approaching this the correct way?  Is there any other mean of achieving my requirement.
    Thanks in Advance.

    Hi,
    It does not seem a big deal to add the missing lines to your output file.
    For instance, the following awk command should do the trick
    cat search.out
    dn: gci=-1,ou=people,o=xxxxxxxx
    userpassword: xxxxxxxxxxxxxxxx
    cat search.out | awk '/userpassword/ {print "changetype: modify} ; print "replace: userpassword"; }  {print $0}
    dn: gci=-1,ou=people,o=xxxxxxxx
    changetype: modify
    replace: userpassword
    userpassword: xxxxxxxxxxxxxxxx
    Then you can use ldapmodify to apply your changes
    -Sylvain

  • Some users don't appear at the login screen when restarting, only upon logging in as a user who does appear, then logging out. How can I make all users appear on the initial list?

    I've inherited a previously used early 2011 13-inch MacBook Pro at work.
    I now have my own account on the computer, however the account does not show up on the list of users to log in as in the start up log in screen. It will only appear if I first log in as one of the users who do appear, then logout. The background also changes between these two log in screens - the start up one is white whereas after logging out of one user it's the brushed steel background. My account has admin powers.
    Anyone have any ideas how I can make this account also show up on the start up screen?
    Thanks in advance for any help.

    I do think it has something to do with FileVault.
    Under System Preferences -> Security & Privacy -> FileVault I try and click "Enable users" near the bottom (after unlocking with an admin password). If I do this from my own account a green check mark appears next to my name, but upon clicking "done" I received this message after a brief loading period:
    The following users weren’t allowed to unlock this disk because an unknown error occurred: (myusername).
    I tried going into the root account and performing this same process, the first time System Prefences unexpectedly quit, and the second I received the same error as above after clicking the "Enable User..." button next to my account and trying to hit "Done".

  • How can I make a user imported image rotate on a control?

    I am trying to import a graphic to use in place of the needle on an indicator. When i do this, however, the image does not rotate, it merely moves around while maintaining its original orientation.
    Is there a way that I can import my own image into a control or indicator, and have it rotate (pivot around some center) when given a numerical input, such as 0 to 360 degrees?

    Hi Kevin12345,
    I do know of a way to import an image to control... and have it rotate.
    Depending on the complexity of your image, a picture control may be usefull.
    The Robot arm example demonstrates how an angle can be used to control an image. If the image you are trying to import to complex to code, this may not be viable.
    If you can be happy with a reduce resolution (i.e. interger degree steps only) you could use your favorite image edit app to rotate the image one degree at a time, and then import each image into a picture ring.
    All of these work-arounds lack scaling.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How can i access my user password

    I can't download things to my macbook because i don't know my password to the user1 the store where i bought it at set it up and i don't know it is there anyway i can change it without having to go back to the store?

    Boot from your install disc and reset it in there. Use 'Reset Password' from the Utilities drop down window. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G + 120G OCZ Vertex 3 SSD Boot HD 

  • How can i make a pl/sql function for BLOB datatype

    hi..anyone here who is very familiar about BLOB datatype. i have a COLUMN_ID, COLUMN_A in a certain TABLE_1. COLUMN_A is blob datatype that contains almost 250,000rows
    SQL>select column_A from table_1 where column_id=1234567
    column_A
    00000001000000010000000606D4E833074B69EC06D4E91F074CO18406D50C58074C031E
    how can i make a user-defined function to compute and convert this blob datatype into decimal length value. this hex value are points in the map.. the function must contain
    1.get the length of a blob then
    2.convert blob to variable hexadecimal characters by parsing it into 8
    3.to_number function or other function used to convert haxadecimal characters to decimal numbers
    4.phythagorean formula to compute length between two points. this is the formula i think LENGTH =
    SQRT(power((coordinate_x-prev_coordinate_x),2)+power((coordinate_y-prev_y),2));
    after this when i type this
    SQL>select user_function(column_A) from table_1 where column_id=1234567
    user_functions(column_A)
    --output length will be in decimal value already
    the function will goes like this
    step1 is to get the blob length
    00000001000000010000000606D4E833074B69EC06D4E91F074CO18406D50C58074C031E
    step2 is parsing of data by eights
    00000001 =>1
    00000001 =>1
    00000006 =>6 (number of coordinates)
    06D4E833 => X1
    074B69EC => Y1
    06D4E91F => X2
    074CO184 => Y2
    06D50C58 => X3
    074C031E => Y3
    step3 to_number function used to convert hex char to decimal
    step4 compute by phytagorean (NOTE ! when computing length the third parsed eight will tell how many coordinates are there..the number of coordinates is ranging from 2 up to E..above example shows 6 coordinates so it means
    LENGTH1 =
    SQRT(power((X2-X1),2)+power((Y2-Y1),2));
    LENGTH2=
    SQRT(power((X3-X2),2)+power((Y3-Y2),2));
    TOTAL LENGTH=LENGTH1 + LENGTH2
    thanks

    its my first time to use that.There's got to be a first tiem for anything. Be brave.
    btw if theres more easy suggestion pls feel free..Well of course the easiest solution would be if the calling program passed in the parameters as separate arguments instead of glomming them together in a string that has to be parsed. This sort of kluj really ought not to have survived into C21.
    Cheers, APC

  • How can I make a playlist unchangable?

    How can I make a playlist unchangable?

    Right-click on it and choose "Copy to Play Order"
    The songs can no longer be re-arranged (assuming that's what you meant). I think songs can still be added and deleted.
    CG

  • How can I make (automatic) accounts for users of my adobe muse site?

    Adobe, google, facebook and more site haves accounts for his users, but how can I make a system with accounts for users of my adobe muse site?

    Hi,
    Try some suggestion given in this thread
    http://forums.adobe.com/message/5362643#5362643

Maybe you are looking for