Passwords in SU10

Hi All,
If we create users in su10, how to know the passwords generated automatically? Can some one tell me.
Regards,
Sandhya

I believe they are in the result list which appears after saving. What did you try so far?
Just checked, they are indeed in the result list or 'log display'.
Edited by: Jurjen Heeck on Oct 28, 2008 11:51 AM

Similar Messages

  • Need to create users and default passwords in su10

    Hi Experts,
    I have a small prob generating the passwords for the MASS users creation in Su10.How could we generate the same password for all the users in the Mass creation.Is there any process to set the default passowrds for ll users.
    Regards,
    Surya.

    Hi
    Use SCATT script for this, better than SU10
    For more help
    http://209.85.175.104/search?q=cache:MMJJi_P39VUJ:www.dop.wa.gov/NR/rdonlyres/04284671-03DB-472B-A406-E52D7155C3FB/0/SSO_Decentralized_Security_Handbook_v3e.docSAPgeneratepasswordsformassusersusingsu10&hl=en&ct=clnk&cd=11&gl=in
    Regards
    Bhaskar
    Edited by: bhaskar1818 on Jul 26, 2008 10:21 AM

  • INTIAL PASSWORD IN su10

    Dear All,
    In Mass User ID creation SU10 , after creating the user id ,how to know the intial password for the user id. Kindly help on this issues.
    Thanks

    Thanks a lot for quick reply,
    I can able to see the logs .i have 2 question.
    1. how to reduce the intial password size & alpha numeric char. (any parameter is present )
    2. suppose if i create a 10 users , wether its possible to get a log of 10 users in a single log .(without seeing each & every users)
    Kindly help
    Thanks
    s suresh

  • How to Disable auto generation of passwords in SU10 ?

    Hello,
    When i create mass users at once in Transaction SU10, the system generates 40-character length passwords, which is quite annoying & difficult for the users.
    Is there any option to temporarily disable this, so that we can specify our own password instead ?
    Thanks & Regards
    Chaithu

    Hi Chaitanya,
    You cannot create users without specifying initial passwords; be it through SU01 or SU10. Also the problem in case of SU10 is that there is no option for supplying password unlike in the case of SU01. So there is no way you can disable password generation and still expect users to be created. the only solution to this is that you reset the password for every user through SU01 before informing them that their user id has been created.You may in this case use a single default initial password.
    Regards.
    Ruchit

  • SU10 Password Reset option

    Hi,
    I see the password reset icon in SU10 next to the lock/unlock icons. Even the option is listed in the User menu as Change password (Shift +F8). Is this included as a new feature with any note?
    Regards,
    Raghu

    It was introduced a few months back ( see https://service.sap.com/sap/support/notes/1469961 ) as of release 7.00.
    I am not a fan of it, as changing users all to the same password is a risk.
    However the BAPIs have the same capability and for deactivating passwords it is also useful, so you only need to be careful and consider the consequences of large numbers of users having the same (initial) password.
    Cheers,
    Julius

  • How i know the password of user created by su10

    Hi all,
    i have created three users by SU10 and gave the role y_functional_all , but the problem is that how i will get the password for that user to connect.
    rgds
    imran

    hi ,
    1-- thanks for reply, what i understood that i connect to each user one by one by su01, then manually give each users the initial passwords.
    2-- is there any method to give default password for all when new user is created.
    waiting for reply
    imran

  • User lock failed.SU10

    Dear experts,
    I locked a mass users using SU10, one of the user locked and immediately prompted for pwd change.
    USER1          31.01.2011     09:15:02     ADMIN           Lock Changed     0     Not locked     64     Administrator Lock               SU10               
    USER1          31.01.2011     09:16:56     USER1           Password Changed     Long Password  3          Long Password  4          KRNL               
    USER1          31.01.2011     09:16:56     USER1          Lock Changed     64     Administrator Lock     0     Not locked               KRNL     
    Please suggest why this is happening in my SAP ECC 6.00, Kernal:7.00.
    Regards,
    Siva.

    USER1 31.01.2011 09:15:02 ADMIN Lock Changed 0 Not locked 64 Administrator Lock SU10
    USER1 31.01.2011 09:16:56 USER1 Password Changed Long Password 3 Long Password 4 KRNL
    USER1 31.01.2011 09:16:56 USER1 Lock Changed 64 Administrator Lock 0 Not locked KRNL
    Above log is showing that only lock activity was happened from SU10 and after that User changed his password from other opened screen. Did you kick off that user from the system immediate after locking?
    Regards,
    Nick Loy

  • Mass password change for selective User id's ?

    Hi,
        Thanks to answer for my last question, really appreciated your help.
    My new question: 
    1.   If I create Mass User Id's by using SU10, pwd's are generated automatically. Is there a way to pick a pwd e.g  initpass for all ?
    2.   Is there any program available which can be used to reset pwd's for several User Id's as   initpass or something like that ?
    Please help. thnx in advance.
    Syd.

    You can also create an ABAP program which can be used to mass change users passwords.
    Here are the functions that will do what you need
    SUSR_GENERATE_PASSWORD - Generates a Password
    BAPI_USER_CHANGE - You can use this BAPI to change just the password of a user
    Here is an example of some abap code. There may be some syntax errors and possible other issues. I just typed this out and didnt check it. Hope this helps
    constants: con_comma TYPE c VALUE ','.
    data: it_tab TYPE filetable,
            gd_subrc TYPE i,
            v_filename_string TYPE string,
            p_npass like XU400-NEWCODE.
    DATA: BEGIN OF itab OCCURS 0,
              dLine(40) type c,
          END OF itab.
    DATA: begin of it_Users occurs 0,
              UserID like BAPIBNAME-BAPIBNAME,
              Password Like XUBCODE,
          end of it_Users.
    parameters: p_file like rlgrap-filename default 'c:\users.txt' LOWER CASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *&                   FILE_OPEN_DIALOG METHOD                           *
        CALL METHOD cl_gui_frontend_services=>file_open_dialog
            EXPORTING
              window_title     = 'Select File'
              default_filename = '*.txt'
              multiselection   = ' '
            CHANGING
              file_table       = it_tab
              rc               = gd_subrc.
            LOOP AT it_tab INTO p_file.
            ENDLOOP.
            v_filename_string = p_file.
    START-OF-SELECTION.
    *&                   GUI_UPLOAD function                               *
       Upload file to internal table
          CALL FUNCTION 'GUI_UPLOAD'
            EXPORTING
              FILENAME                      = v_filename_string
              FILETYPE                      = 'ASC'
              HAS_FIELD_SEPARATOR           = 'X'
            TABLES
              DATA_TAB                      = ITAB
           EXCEPTIONS
             FILE_OPEN_ERROR               = 1
             FILE_READ_ERROR               = 2
             NO_BATCH                      = 3
             GUI_REFUSE_FILETRANSFER       = 4
             INVALID_TYPE                  = 5
             NO_AUTHORITY                  = 6
             UNKNOWN_ERROR                 = 7
             BAD_DATA_FORMAT               = 8
             HEADER_NOT_ALLOWED            = 9
             SEPARATOR_NOT_ALLOWED         = 10
             HEADER_TOO_LONG               = 11
             UNKNOWN_DP_ERROR              = 12
             ACCESS_DENIED                 = 13
             DP_OUT_OF_MEMORY              = 14
             DISK_FULL                     = 15
             DP_TIMEOUT                    = 16
             OTHERS                        = 17.
          IF SY-SUBRC <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    Loop through internal table and split the comma delimited file
      LOOP AT ITAB.
          SPLIT ITAB-dLINE AT con_comma INTO it_Users-UserID
                                           it_Users-Password.
          APPEND it_Users.
      ENDLOOP.
    LOOP AT it_Users.
         if it_users-Password is initial.
            CALL FUNCTION 'SUSR_GENERATE_PASSWORD'
                 IMPORTING
                     PASSWORD = p_npass
         endif.
         CALL FUNCTION 'BAPI_USER_CHANGE'
                   EXPORTING
                     USERNAME                = it_users-userid
                     PASSWORD                = p_npass
                     PASSWORDX               = 'X'
                   TABLES
                     RETURN                  = it_ret2.
                  Loop at it_ret2.
                    if it_ret2-number = 039.
                      write: / 'password changed'.
                    else.
                      write: / it_ret2-message.
                    endif.
                  endloop.
                  Write: / ''.
                  refresh it_ret2.
    ENDLOOP.

  • Creating 50 users with SAME password

    All
    I need to create 50 Trainning users with SAME password.
    Does SAP allows to do it ? SU10 does not let me know
    enter the password ?
    Is there any report that I can use ?
    How can use SCAT trasaction to do this ?
    Please advise.
    Thanks
    From
    PT.

    Hi Pranav,
    Yes SAP allow you but for security reason its not recomended.
    But you can't give the password same like the username, SAP will not allow your to give password that contain userid.
    You can use SCAT to create the 50 user.
    First you recard the transcation first
    Than change the value with parameter (type &parameter_name)
    and than you can create a excel file that contain the 50 user.
    and use SCAT to run it.
    Please read:
    http://help.sap.com/saphelp_47x200/helpdata/en/f4/3f9ef659a711d1bc84080009b4534c/content.htm
    or
    http://help.sap.com/saphelp_47x200/helpdata/en/fd/f10538d6cb1e3be10000009b38f8cf/frameset.htm
    Regards,
    Fendi Suyanto

  • Changes like password and removal of roles for all users

    Hi
    i want to change password for all users and remove single roles from all users.When i am doing this in SU10 changes are not reflecting for users.Please help reg this
    Vinod

    Me too...I have never been able to remove roles from multiple users with SU10.  I don't know if it's a bug or (more likely) just a confusing screen, but in 4.7 it never worked for me.

  • Password reset for mass users

    Hi
    Please could you suggest whether can we reset password for mass users?

    Hi,
    No it not Possible through SU10.
    you can Do it through Script.
    Activate the scripting in you System .
    then you need to record the script by doing it for one user and then after the script is done for one user u need to create script for many user by adding a for loop and then play the script.
    Thanks
    Rishi Abrol

  • Default Encrypted  Password

    Dear All,
    i want to insert encrypted Password of 'password' string into table user_dtl column PASSWORD .
    How can i insert Encripted password into table.
    Thanks

    Hi Vedant,
    See the CUSTOM_HASH function that is installed with sample application in the APEX.
    Here is the code for it:
    create or replace function custom_hash (p_username in varchar2, p_password in varchar2)
    return varchar2
    is
      l_password varchar2(4000);
      l_salt varchar2(4000) := 'XFSPL28ZTWEWWM6FHWMK68AG5NQVLU';
    begin
    -- This function should be wrapped, as the hash algorithm is exposed here.
    -- You can change the value of l_salt or the method of which to call the
    -- DBMS_OBFUSCATOIN toolkit, but you much reset all of your passwords
    -- if you choose to do this.
    l_password := utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5
      (input_string => p_password || substr(l_salt,10,13) || p_username ||
        substr(l_salt, 4,10)));
    return l_password;
    end;
    i want to insert encrypted Password of 'password' string into table user_dtl column PASSWORD.The above function will give the encrypted password which can be inserted into USER_DTL as follows:
    INSERT INTO USER_DTL(USERNAME,PASSWORD) VALUES(:P1_USERNAME, CUSTOM_HASH(:P1_USERNAME,:P1_PASSWORD))Be sure that PASSWORD column in USER_DTL is of type VARCHAR2 and of adequate length as to accommodate the encrypted password.
    Hope it helps!
    Regards,
    Kiran

  • Installed adobe but password won't work to read on tablet

    Installed reader and adobe on new tablet, but adobe password will not work to let me read. I reset
    Password but that doesn't help

    A password protected PDF?  How did you reset it?
    What's the operating system on that tablet?

  • TS2446 My phone want let me download apps I put the password in then it's say billing options which tell me I have invalid security code

    My phone want let me download any apps when I put the password in it take me to billing option which tell me I have the wrong security code and that's the security code that was on the card on the account

    iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/TS1646

  • HT4623 MY i phone 5 wont let me download apps etc it just keeps asking for my apple id password?

    Juat got my i phone 5 today and have opened an apple accout but it wont let me download apps etc just keeps asking for a password over and over again???

    Try This...
    Close All Open Apps... Sign Out of your Account...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

Maybe you are looking for

  • Spotlight flickering persists after 10.5.8 update

    I've noticed that after a 10.5.7 update my spotlight behaved strangely on battery, while typing the spotlight window flickers showing backround while the problems doesn't show up while plugged to AC, i've read something about a software/driver proble

  • Audio Quality

    Hey folks, We've got a client who is looking for better audio quality than we've previously been able to get out of LCCS. Looking into it a bit, it looks like the Flash microphone class has two main quality settings: encodeQuality and rate. The Micro

  • How to fix this error? The startup disk cannot be partitioned or restored to a single partition.

    Hey guys,      I am trying to install windows 7 ultimate 64 bit via bootcamp assistant. I open bootcamp assistant from utilities and i get the second window and try to click continue and i get a pop up, saying "The startup disk must be formatted as a

  • Doc category name is disable in 3rd party invoices

    both document category name and document sequence name are disable in 3rd party invoices. is there any solution so that we can select both document category name and document sequence name in 3rd part invoice.

  • 802.1x variant7

    Hi forumers' what's the relationship between a. 802.1x machine auth b. 802.1x user auth c. 802.1x cert-based auth thanks Noel