Password  lenght  10 character ECC 6.0

Hey
We are just about to upgrade our HR-R/3 system. In the new release the auto generated password in SU01are 30 characters and it's just to long. Can anyone explain to me in a simple context, how you can change it into 10 characters.
thanks

Please see this document:
http://help.sap.com/saphelp_erp2005vp/helpdata/en/cc/4a0ff78271bb4399c80e659466f828/frameset.htm
- April King

Similar Messages

  • Password of ddic in ecc 6.0 ides

    hi,
    Password of ddic in ecc 6.0 ides
    Thanks in sdvance.

    hi
    good
    go through this link
    http://docs.freebsd.org/doc/4.5-RELEASE/usr/share/doc/handbook/sapr3.html
    thanks
    mrutyun^

  • ISA 500 series maximum password lenght

    Hello,
    What is the maximum password lenght that the new ISA500 series supports for users, both local database and with RADIUS server? Our two factor identification needs 44 characters + PIN.
    Thanks.

    Hi John, thank you for using our forum, my name is Johnnatan I am part of the Small business Support community. To answer your question the maximum password length that the ISA500 series supports for users is 1-64 characters and the port range is  from 1 to 65535. I hope you find this answer useful
                                                                              "GuideMe"
    Cisco has a very useful tool called GuideMe, is made for small business products, and your device is in this category, you can use this address for accessing the tool:  http://sbkb.cisco.com/CiscoSB/Loginr.aspx?alt1=&pid=4&eroute=Super , is very easy to use, just complete the 3  spaces on this way:
    Select a category: (Select the device type on request), e.g. Routers
    Enter model: (Type the model on request), e.g. RV042
    Question: (Type what you want to know  about the device), e.g. VPN
    And it'll be showing all the information you need about what you wrote.
    “Please rate useful posts so other users can benefit from it”
    Greetings, 
    Johnnatan Rodriguez Miranda.
    Cisco Network Support Engineer.

  • H:inputTextarea problem to fix the lenght of character

    hi,
    I have one h:inputTextarea on my page.i want to fix the lenght of the character. i want to put the character lenght 20 character,so user can not put the 21 character in textArea.

    You can probably use validators.
    I stole following snippet from [IBM |http://www.ibm.com/developerworks/library/j-jsf3/]
    <h:inputText id="firstName"
                    value="#{UserRegistration.user.firstName}">
         <f:validateLength minimum="2"
                                   maximum="25" />
    </h:inputText>With some alteration you should be on your way (I think)
    Best Regards,
    Martijn

  • Input field set to password display shows character but traces nothing

    Hi,
    I have a password field on key frame to which I navigate when the proper sequence of key strokes is entered.  My guess is that the password field is getting the last key stroke as it appears to have a single character in it when it appears; however, setting its text = "" has no effect and tracing its text returns nothing.
    Is there a way to ensure that the a text input field is clear?
    I'd appreciate any ideas.
    Best regards,
    Chris McLaughlin

    thanks for your reply.
    I am pretty sure that the list where I get the data contains values. I tried it by outputting the in ordinary table as shown here:
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    It outputs properly but when I tried this, it just output NOTHING FOUND TO DISPLAY.
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>

  • Can't create database link when password has special character

    I'm trying to execute the following statement within sqlplus
    create database link alpha connect to scott identified by tiger! using 'db_alpha'
    note that the password for the account has an exclamation point in it. the command fails. I've tried placing the password in quotes (') and double-quotes ("). The double-quotes work, but then the link fails to function properly.
    We are required to have a special character in our passwords... so how do I get that special character into the password for the database link?
    Thanks in advance,
    Darren

    for some weird reason, I can't post the reply I want. every time I try, the forum hangs and doesn't save the message. give me a sec...
    I have put the password within double quotes... so I'm starting to think the problem is something else. I've been reading other posts regarding creating database links and I've obtained limited results. Here's what I've done, and the results I'm getting.
    (names changed to protect the innocent)
    My oracle database is on SYSA. I'm on SYSB. I set my TWO_TASK=SYSA and just use sqlplus to connect as user1.
    I want to run a command on user2's tables. Normally I would just grant read access to user1 on user2's tables and use a command like
    nert spaces to get this to save (weird forum bug here, I can't delete the text to the left)
    SQL> sel{color:black}{color}ect * fr{color:black}{color}om u{color:black}{color}s{color:black}{color}e{color:black}{color}r{color:black}{color}2{color:black}{color}.{color:black}{color}m{color:black}{color}y{color:black}{color}_{color:black}{color}t{color:black}{color}a{color:black}{color}b{color:black}{color}l{color:black}{color}e{color:black}{color};
    However, user2 is for test data and those tables get dropped and recreated often and it is cumbersome to try to remind everyone to recreate the grants. So I can't trust that user1 will have access to user2's tables. So my goal with the database link is to create a private (for user1 only) database link and access the tables that way, that way I bypass the grant issue. This works out better for me because we only change that password every 2 months. I just recreate the database link once every two months, rather than recreate grants multiple times every week. Well, that's the theory anyway.
    Back to creating the database link, I thought my issue was the special character in the password because if I remove the exclamation point everyting works (except that the password is invalid). Below is what it looks like when I do this...
    Attempt #1:
    SQL> create database link BLAH connect to user2 identified by "tiger" using 'BLAH';
    Database link created
    SQL> sel{color:black}{color}ect * fr{color:black}{color}om my{color:black}{color}_{color:black}{color}table{color:black}{color}@{color:black}{color}BLAH;
    sel{color:black}{color}ect * fr{color:black}{color}om my{color:black}{color}_{color:black}{color}ta{color:black}{color}ble{color:black}{color}@{color:black}{color}BLAH
    ERROR at line 1:
    ORA-01017: invalid username/password; logon denied
    ORA-02063: preceding line from BLAH
    So that looks like it's just a password issue. If I put in the correct password... the error changes to this...
    Attempt #2:
    SQL> create database link BLAH connect to user2 identified by "tiger!" using 'BLAH';
    Database link created
    SQL> sel{color:black}{color}ect {color:black}{color}* fr{color:black}{color}om my{color:black}{color}_{color:black}{color}table{color:black}{color}@BLAH;
    sel{color:black}{color}ect * fr{color:black}{color}om my{color:black}{color}_ta{color:black}{color}ble{color:black}{color}@BLAH
    ERROR at line 1:
    ORA-02085: database link BLAH.AAA.BB.CCC.DDD connects to
    DEVDB.AAA.BB.CCC.DDD
    To me, that doesn't make sense. If the link isn't working... how did it get the "invalid username/password" in Attempt #1?
    Anyway, in perusing other forum posts, one post said to put in the full text from the tnsnames.ora file instead of the alias. So I do a little cut/paste and try this...
    Attempt #3:
    SQL> create database link BLAH connect to user2 identified by "tiger!" using
    2 '(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = server001.aaa.bb.ccc.ddd)(PORT = 9999)))
    3 (CONNECT_DATA = (SERVICE_NAME = devdb)))';
    Database link created.
    SQL> sel{color:black}{color}ect {color:black}{color}* fro{color:black}{color}m my{color:black}{color}_{color:black}{color}tab{color:black}{color}le{color:black}{color}@BLAH;
    sel{color:black}{color}ect {color:black}{color}* fr{color:black}{color}om {color:black}{color}my_{color:black}{color}tab{color:black}{color}le@B{color:black}{color}LAH
    ERROR at line 1:
    ORA-02085: database link BLAH.AAA.BB.CCC.DDD connects to
    DEVDB.AAA.BB.CCC.DDD
    Any ideas on what I'm doing wrong?
    Darren

  • Cisco prime Changing the password lenght for snmp authentication

    When i try and put in passwords for the snmp for authorisation and privacy i find that prime infrastructure
    wont accept less than 12 characters
    How can i change this setting please
    It under Configure/switches/(switch)
    Steve

    When you run the validation job you can capture the traffic via the packet capture utility in device center.
    Be sure to filter only to the device being tested or else you will get a really big tcpdump (jet file).
    You can open the resulting jet file in Wireshark to look at the transfer deciphered. That will show you exactly what commands are being sent and what reply comes back from the device.

  • Password Generate to many character after upgrade to ECC

    Dear Expert,
    We just finish to upgrade ECC without unicode conversion. When we try to generate new password form transaction SU01. It will reset password with 40 character set. Can we have 8 charater for new password ?
    Regards,
    Somkeit

    Hi,
    I thing the solution for you is this parameter:
    login/password_downwards_compatibility
    set it to right value. ERP is using new password generator, place for for storing passwords etc. This parameter
    control this mechanism.
    Kind regards,
    Mirek

  • SAP ECC 6.0 dummy password lock issue???

    The password for dummy sap ecc 6.0 installed in external hdd gives error "too many failed attempts, login no longer possible". Can anybody tell me how to unlock it???

    Hi Markus,
    Basically I am trying to install sap on a three tier node setup, node1 as Application host and node2 as database node.
    1)     Installed the SCS on node1
    2)     Installed Oracle u201Csapserver.cmdu201D on node two.
    When I continue with the database portion of the sap installation, I am unable to see the database located on node2.
    Do I use sapinst on node2 to complete the database installation?
    Regards,
    Iqbal

  • Can't use special character "ç" in airport password

    Hi,
    I'm trying to connect to a wireless network, whose password contains the character "ç". For some reason airport won't let me input that character, but all others are fine. I've tried edit => insert special character, I've tried to copy / paste but nothing works. Does anyone have a solution??
    Thanks

    Hi Jon, and a warm welcome to the forums!
    This is far fetched, but I wonder if it has anything to do with this strange "feature"...
    http://docs.info.apple.com/article.html?artnum=107666
    You've already tried all but one thing I yhink, can you edit it/paste it into Keychain Access?

  • How to change the maximum character setting for password in firefox

    i have a long password about 18 character to open an application from my desktop , but I cannot type in the 18 character password on my laptop using firefox browser. Is urgent can please help?

    You can try to increase the maxlength by running this code in the Scratchpad (Web Developer > Scratchpad;Shift+F4) or the command line of the Web Console (Web Developer > Web Console;Shift+Ctrl+K), but the server may not accept it.
    *https://developer.mozilla.org/en/Tools/Scratchpad
    *https://developer.mozilla.org/en/Tools/Web_Console
    <pre><nowiki>N=document.querySelectorAll('input[maxlength]'),I;
    for(i=0;I=N[i];i++){
    if(I.getAttribute('maxlength')=='12'){
    I.setAttribute('maxlength','20');
    }</nowiki></pre>

  • Password character limit using LDAP with HPUX 10.20?

    Hi,
    I'm a little new to this, so sorry if this is a bit of a daft question - we've got an LDAP server running under HPUX 11.00 and it seems our HPUX 10.20 machines only authenticate against the first 8 characters of the users password. System security policy rules for the password in SAM are set to a higher value and HPUX 11.00 machines have no trouble with lengthy passwords at all.
    Can anyone recommend anything to check or do?
    Thanks greatly in advance,
    Neseem.

    Hi,
    The ldap server password length is 8 char this has nothing to do with the password lenght which you have set in the HP UX SAM.The ldap pasword lenght is 8 char long which ever OS it may be installed that's the standard lenght they have set in the Directory server product itself.

  • 5-character password?

    I went to the Verizon Wireless store.  I told an employee that my phone is broken and I would like to buy one.  He asked for my cell phone number and I gave it.  Then, he asked for a password.  I gave it and it was wrong.  He said that the password was 5-character.  My cell is in my mom's account.  I didn't understand what he was talking about.  Can anyone help me?

    DianaBM23 wrote:
    I went to the Verizon Wireless store.  I told an employee that my phone is broken and I would like to buy one.  He asked for my cell phone number and I gave it.  Then, he asked for a password.  I gave it and it was wrong.  He said that the password was 5-character.  My cell is in my mom's account.  I didn't understand what he was talking about.  Can anyone help me?
    ask your mom
    there is an account password that is needed to upgrade
    it keeps people from upgrading on family accounts without the account holders permissions
    in other words its working as intended

  • This system does not let you log on using a password

    hi all,  i  am very new to sap basis. i have changed the below profile parameters in RZ10.
    login/min_password_length=3
    login/min_password_lowercase=1
    login/min_password_uppercase=1
    login/min_password_digits=2
    login/min_password_specials=1
    after changing values i restarted the Instance. But the problem is when i am trying to login to the system it is showing  an error message : "This system does not let you log on using a password". I know why  this error occurs...
    but how to resolve this error? plz Help.
    Thanks in advance

    login/min_password_length=3
    login/min_password_lowercase=1
    login/min_password_uppercase=1
    login/min_password_digits=2
    login/min_password_specials=1
    The correct parameter for Min password Lenght is login/min_password_lng.
    You can change this at OS level restart and see how it goes...
    Regards
    Juan

  • How to Enhance Security of Windows and Recover Lost/Forgotten Password

    You maybe always get in some troubles with your PC. Lost Windows password? Forgot Windows password? Your PC was hacked? Therefore, it is a basic step for every Windows users to enhance the security of Windows password. In the networks, it is found that a number of user’s passwords are easy to guess. Only the smallest groups are the most security conscious and select passwords that are mixed lowercase and uppercase letters, numbers and punctuation to create cryptic passwords. Adopting strong password is one of the most effective ways to ensure system security. Here are several methods for you to enhance the security of your passwords in Windows 7/2000/XP/Vista and so on. You’d better remember the methods below unless you want to reset Windows password from time to time.
    1. Is random password a great password?
    A common myth is that totally random passwords like Ht3&e#L%5d@$B are the best passwords. This is not true. While they may be strong passwords, they are usually difficult to remember, slow to type, and sometimes vulnerable to attacks against the password generating algorithm. It is easy to create passwords that are strong but much easier to remember by using a few simple techniques. For example, consider the password “Luck-73@Better?”. This password utilizes uppercase and lowercase letters, two numbers, and three symbols. The password is 15 characters long and can be memorized with very little effort. Moreover, this password can be typed very fast. The portion“Luck” and “Better” alternate between left and right-handed keys on the keyboard, improving speed, decreasing typos, and decreasing the chances of someone being able to discover your password by watching you.
    2. Create the long Windows password
    Although a password may eventually be discovered through some means, it is possible to create a password that cannot be cracked in any reasonable time. If a password is long enough, it will take so long or require so much processing power to crack it. That is essentially the same as being unbreakable (at least for most hackers).
    3. Create the Windows password constantly?
    This may be good advice for some high-risk passwords, but it is not the best policy for every user. It is frustrating for a user to have to constantly think of and remember new passwords every 30 days. It may be better to focus on stronger passwords and better user awareness rather than limiting password age. A more realistic time for the common user may be 90-120 days.
    4. Write down Windows password in a proper place
    Sometimes it is necessary for some users losing and forgetting complex passwords easily to write down them somewhere proper. However, it is important to educate users on how to write down passwords properly. Obviously, a sticky note on the monitor is not a good idea, but storing passwords in a safe or even a locked cabinet may be sufficient.
    5. 14 characters is the optimal password length
    Each character that you add to your password increases the protection. Your passwords should be 8 or more characters in length; 14 characters or longer is the Optimal Password Length. Many systems also support use of the space bar in passwords, so you can create a phrase made of many words. It is not easier to forget and lose, as well as longer than a simple password, and harder to guess.
    6. Try not to use the same Windows password for all accounts
    Some users always make the same passwords for every account to make it easy to remember. In that case, when any one of them lost, your other information protected by that password will be in danger as well. It is serious to use different passwords for different systems and accounts.
    7. Do not use some common words that other users maybe guess
    Most of users prefer to use some common words to remember easily, for example, login name, birth date, driver's license, passport number, pets’ name and other words contained their personal information someone knows. In that case, your Windows system will not be safe anymore. Moreover, do remember not to use some words spelled backwards, abbreviations, sequences or repeated characters and adjacent letters, such as, asdfgh, 123456, 888888, abcdef and so on.
    You can smoothly use your Windows now because the strong and powerful Windows password is created successfully, Certainly, I believe that many users lost Windows password and forgot Windows password, then you need have to reset Windows password or recover Windows password. It is a big problem for plenty of Windows users that how to reset Windows password. Many users probably do not know how to recover Windows password and they are puzzled by resetting windows password, for instance, reset Windows 7 password, recover password Windows XP, remove Windows Vista password and other operating systems after they create the password with complex letters, numbers and symbols. However, it is unnecessary to worry and it is said that things will eventually sort themselves out. There are many ways to reset forgotten Windows password, including use windows password reset disk and windows password reset software, like Super Windows Password Reset, a professional windows password reset software which could enable you to logon to Windows smoothly without reinstalling system. You can know more by reference to http://www.passwordreset.biz/. Such was the case with using these kinds of tools.
    These are all my suggestion about methods to enhance the security of Windows password. To create password for your Windows account is not a thing you should do, but a thing you must do by following my advices. It is the important line of defense against hackers. If your Windows password is indeed attacked finally or nevertheless you lost Windows password, you can try out windows password reset tool I mentioned above. The advantage is that there is no fear of leaking your password to outsiders. Certainly, the only better method is still creating the strong password, do remember it and then change one constantly.

    Reported as spam!

Maybe you are looking for

  • How to read xml file and place it into an internal table...

    hello all, can any one help me in - how to read xml data file (placed in application server) and placing the same into an internal table (remove the xml tags or say fetching the xml data without xml tags).

  • How do you add new slides to a slideshow?

    As the title says... The slideshow templates in Muse only let you edit 3 slides, and I need at least 6. But I can't find how to add more even in the "blue arrow pop-up menu".

  • Cash Journal using business transaction

    Hi Can I create two cash journal with one Petty cash account. The purpose is I want to give authorisation for entering cash journal , these person will use only one business transaction & would like to create another cash journal with same GL account

  • Installing Oracle 10g on RHELAS 3, 2.1, and on RH9

    You can find instructions for installing Oracle 10g on Red Hat Enterprise Linux AS 3, 2.1, and on Red Hat 9 at http://www.puschitz.com/InstallingOracle10g.shtml I will add more information as time goes on. Werner

  • Any new firmware for RG54GS?

    I bought Wireless Gateway RG54GS, but it constantly hangs up. It starts to work very slow and i cant access Configuration Utility on 192.168.1.254(just before it hangs up completely it starts to load pages in conf. Utility, but not full – only half o