Is it possible to reset password for any user using abap program

Hi friends,
Is it possible to reset password for any user using abap program by specifying client number and user id. in selection screen.
if any code for that to reset password please mail me.
Thanks & Regards,
Yogesh

Hello Yogesh,
Yes you can reset the password for any body using ABAP Code. But for that you really don't need any client number.
If this process is on regular basis, then recommended is to use BAPI for changing the user details Otherwise BDC also works fine.
=> Function Module - BAPI_USER_CHANGE
Call this in the program for resetting the password.
=> CALL TRANSACTION 'SU01' USING InternalTable
This will be executed in the BDC of SU01 transaction recording. Use the Password Change button in the application toolbar of transaction while recording.
Hope this helps.
PS If the answer solves your query, plz close the thread by marking it solved and rewarding each reply.
Regards

Similar Messages

  • I am unable to change passwords for any users.  The "change password" is grayed out.

    I am unable to change passwords for any users.  The "change password" is grayed out.  I know there is a way to change them but I am having trouble finding it.
    Message was edited by: dmw1975

    If you're in the Users pane of the server app, and you select Network Users from the drop-down near the top, there's a small padlock icon at the bottom. Is it locked or open? If locked, click it and enter credentials into the authorisation box that opens

  • How to reset password for  XELSYSADM user in OIM?

    Hello Gurus and Experts!
    How to change password for XELSYSADM user in OIM?
    Your help is appreciated.
    Edited by: mc2 on Aug 25, 2011 4:27 PM

    Follow the undermentioned steps to change the password:
    1) Change the password from oim Design Client as usual.
    2) Open xlconfig.xml present in <XL_HOME>\xellerate\config folder.
    3) This step is optional and should only be used if you have a <XLPassword encrypted> tag in the <Scheduler> section. In the scheduler section, change the encrypted="true" to encrypted="false" and replace existing encrypted password with new clear text password, as shown below:
    <Scheduler>
    <XLUserName>xelsysadm</XLUserName>
    <XLPassword encrypted="false">NEW_PASSWORD</XLPassword>
    </Scheduler>
    4) Restart server.
    Now login with the new password.

  • Reset passwork for end user using XE version 2.1.0.00.39

    Hi All,
    I would like to create a link "Change Password" for end users to able to change their password anytime. I've followed the link below
    Self Reset Password
    but it still require the admin login before end users can change their password.
    The following steps that I did:
    1. Under "Shared Components", create a Navigation Bar entry name "Change Password".
    2. On page 1, click on the "Change Password" link under Navigation Bar and entered
    Target Type = URL
    URL Target = javascript:popupURL('f?p=4350:53:&SESSION.:::53.F4350_P53_USER_NAME::APP_USER');
    How do i make the "Change password" link go directly to reset password page after end users clicked on it without admin login require? I'm using a default authentication and all end users assigned to user group.
    Thanks in advance,
    Kevin

    Kevin,
    You want the users to go to popup page 58 (in application 4350). See this thread: Re: Pop Up Change Password Window . But I don't know if that will work in 2.1.
    In general, you're better off using other types of account management tools such as LDAP.
    Scott

  • Reseting password for fnd user

    hi i lost my sysadmin password for old instance i want to reset it from backend.How can i reset it.pls hlp
    rgds
    rajesh

    - Keep all services up and running
    - Login as applmgr
    - Source the env file (Under $APPL_TOP/APPSORA.env)
    - Run FNDCPASS to change the SYSADMIN password (IMPORTANT: Change ONLY the SYSADMIN password)
    FNDCPASS apps/apps 0 Y system/<system password> USER SYSADMIN <New Password> - Restart the Apache, Forms, Reports, 8.0.6 listener and Concurrent Manager services
    - To test, login into the applications as the SYSADMIN user and the new password
    - Verify that a concurrent program such as Active Users runs

  • Calculate Withholding taxes for VEndor Invoices using ABAP program.

    Hi All,
    I have to upload Vendor Invoices using FB60/Fb01 tcodes. I am able to post the Invoices using FB01/Fb60
    but I have to calculate extended withholding taxes also using this program for the Invoices.
    Is it possible to upload vendor Invoices and calculate withholding taxes using Program?
    If yes,
    Does anyone has any idea how do you calculate extended withholding taxes using any BAPI's?
    I have used these two BAPI's
    BAPI_ACC_DOCUMENT_POST
    BAPI_acc_invoice_receipt_post
    they are working fine but without withholding tax.
    This is a requirement for country India.
    Regards,
    Sushil

    Hi,
    Imho, you need to get (meaning, extract into separate fields) the different supplier types from Table1 first. Your key for Table1 is the vendor no, which is also the key in Table2 (or the key for Table2 is Vendor no & Type).
    For better performance, better select multiple/all required entries from Table1 instead of doing a select endselect.
    Depending on the format of the vendortypes in Table1, put them in a new itab (for our purpose named Table1New where vendor no & type are the only 2 fields. For example, if the type length is fixed to 2 chars, or divided by space,... use your coding accordingly.
    Next step is to select all vendor no's in Table2 which you have selected in Table1. If in Table2, the vendor no is the only key (and the all vendor types are filled in a single record), then loop check the vendor types from Table1New against the types in Table2.
    If the key of Table2 is vendor no & vendor type, then do a read table for the key.
    The logic in pseudo-code:
    Select from Table1 into table. If you'd like to limit the selection size, add package size statement.
         extract the vendor types in to itab Table1New.
         Select the vendor & types from Table2 by using the for all entries option (better performance).
         loop at Table1New
              check in Table2:
                   if the unique key is vendor no: check all fields for the vendor type from Table1New
                   if the unique key combo is vendor no & type: check by using a read table.
              If not found => add entry to Table2
         endloop.
    endselect Table1 (when using package size)
    I guess the most difficult step is to extract the types from Table1 into separate fields, all the rest seems straight forward. Please keep in mind the itab type definitions for a better performance.
    Good luck!
    Best regards,
    Zhou

  • Extraction problem - selection conditions for data load using abap program

    Hi All,
           I have a problem loading data over a selected period where the selection of date range is done using ABAP routine (type 6). Here though in the request header tab in monitor screen i'm able to see the selection date range populated correctly, no records are being extracted. But if i delete the abap filter and directly give the same date range for selection we are able to extract data. if any body has faced similar problem and have a solution for it please help me with yur suggestion.
    Thanks,
    nithin.

    It seems the the data range is not properly set in the routine.
    You can check the value of selection period generated by routine in the data selection tab-> execute button is there .
    Click it to to test the selection values generated by the ABAP routine..
    If the value here seems correct one then paste the code of the routine that u have written with brief logic details that u have applied.
    Sonal.....

  • How to set up help desk to view and reset password for all users?

    Hello,
    I am on OIM 11.1.2.1.0 and would like to assign the helpdesk role to a small group of users.  I created an organization ORG1 and ORG2.  They have the parent organization as "Top".  I have a user USR11 and USR12 that belongs to ORG1 and USR2 that belongs to ORG2.
    I would like USR11 to be able to see all users in ORG1 and ORG2.
    I assign the User Viewer admin role of the Top organization to USR11.  After logging in to OIM as USR1, I could see users USR11 and USR12 (same organization) but couldn't see USR2 (different organization).
    How can I configure OIM so that user USR11 will be able to see all users?
    If I add the User Viewer admin role for both organizations ORG1 and ORG2, then it worked.  But I thought with the admin role of the Top organization, this will allow the user USR11 to be able to see all users.
    Thanks
    Khanh

    Hi,
    You can achieve everyone can see each other by providing User Viewer admin role to each user under each organization present in ur OIM.
    Thats the only way supported in OIM 11g R2. APIs are present for this and you can automate it.
    Regards,
    J

  • Is any user using NAS storage?

    Is any user successfully using NAS storage such as synology connected to TC, (not for time machine or backups) mostly for placing your final edited movies, fotos and slides shows, so they can be viewed on the ipads, ipods?
    Thanks for any input

    Hello Yogesh,
    Yes you can reset the password for any body using ABAP Code. But for that you really don't need any client number.
    If this process is on regular basis, then recommended is to use BAPI for changing the user details Otherwise BDC also works fine.
    => Function Module - BAPI_USER_CHANGE
    Call this in the program for resetting the password.
    => CALL TRANSACTION 'SU01' USING InternalTable
    This will be executed in the BDC of SU01 transaction recording. Use the Password Change button in the application toolbar of transaction while recording.
    Hope this helps.
    PS If the answer solves your query, plz close the thread by marking it solved and rewarding each reply.
    Regards

  • How to reset password for user sap*

    Hi friends,
    How to reset password for user sap*  if any solution please mail me.
    Thanks,
    Yogesh

    Hi,
    <b><u>Steps for Reset SAP* Password</u></b>
    If you forgot or lock "Administrator or J2EE_ADMIN" password just follow below steps:
    STEP-1: Enable "SAP*"
    1.Start the Config Tool C:\usr\sap\<SID>\<engine-instance>\j2ee\configtool\configtool.bat
    Ex: D:\usr\sap\F02\JC00\j2ee\configtool --> configtool.bat
    2.Goto cluster-data --> Global server configuration --> services --> com.sap.security.core.ume.service
    3.Double-click on the property "ume.superadmin.activated = TRUE"
    4.Double-click on the property "ume.superadmin.password=<Enter any password ex: abc123>"
    5.Save.
    6.Restart the engine.
    STEP-2: Login with "SAP*" into portal
    1. http://<host>:<Port>/useradmin/index.jsp
    2. Enter userid / password as" SAP* / <password ex: abc123>"
    3. Search for "Administrator" user
    4. Reset or change password for "Administrtor"
    STEP-3: Disable "SAP*"
    1.Start the Config Tool C:\usr\sap\<SID>\<engine-instance>\j2ee\configtool\configtool.bat
    Ex: D:\usr\sap\F02\JC00\j2ee\configtool --> configtool.bat
    2.Goto cluster-data --> Global server configuration --> services --> com.sap.security.core.ume.service
    3.Double-click on the property "ume.superadmin.activated = FALSE"
    4.Save.
    5. Restart the engine.
    STEP-4: Login with "Administrator"
    1. http://<host>:<Port>/useradmin/index.jsp
    2. Enter userid / Password as "Administrator / <password>
    3. it will ask change password just change it.
    Please follow steps one by one. it should resolve your issue.
    Thanks,
    Nagaraju Parlapalli

  • How to reset password for a web user via GUI?

    Hi,
    How to reset password for a web user ID via GUI? is it possible?
    Thanks.

    Hi,
    You can  reset the pwd for the user through trascn SU01.
    BR,
    Disha.
    *Pls reward points for useful answers.*

  • I have forgotten my reset password for iphone.

    I have forgotten my reset password for iphone. How can I reset it back to factory settings? I have tried all possible passwords. Can someone help?

    Google "iphone dfu mode".

  • How do we reset password for SAP* and DDIC user in SAP R/3 ECC 6.0?

    Hi,
    How do we reset password for SAP* and DDIC user in SAP R/3 ECC 6.0?
    I tried with acual method as below from client '000':
    DELETE FROM USR02 CLIENT SPECIIED WHERE BNAME = 'SAP*' AND MANDT = '001'.
    After this when I tried to logon '001' using SAP* with password PASS it is giving  the message that Incorrect logon and password.
    (Also when I checked for 'SAP*' in 001 it looks like it is not got created as I queried as below:
    SELECT SINGLE * FROM USR02 CLIENT SPECIFIED WHERE BNAME = 'SAP*' AND MANDT = '001'.)
    Can anybody throw some light on this? RewardS is guranteed for solutions!
    -B S B

    Hi again:
    I forget to tell.
    You must restart the system. So, that a new user with the name "sap*" gets generated with password "pass"
    Hope this wil help,
    Eric

  • How to reset password for iomega storecentre ix2

    hi! how to reset password for iomega ix2?

    There is a pin hole reset button on the back. This will reset user and network settings. Here is a link to the directions.
    https://lenovo-eu-en.custhelp.com/app/answers/detail/a_id/32232/kw/reset

  • TS2446 Apple Id disabled. Tried resetting password. Any other ideas?

    Apple ID disabled after fraudulent charges on iTunes. I've tried resetting password. Any other ideas?

    Yup, if it's fraud related, you have no choice but to contact iTS which will take a look to see what's going on.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • How to Add Cisco 861's behind ASA 5505

    I will be setting up a VPN with a client soon.  They are shipping 2 Cisco 861's that are planning to go behind our ASA 5505.  They are set up to be NATed. I am trying to understand what the best way to do this would be as I seem to keep running into

  • Opening a New page on click of a link in Struts PDK portlet

    Hi All, Please help me to sort out my issue.. I created a portlet(say P1) using struts Portlet.That portlet is added to a portal page..which has some other portlets already(p2,p3,p4)...So my portal page has 4 portlets p1,p2,p3,p4..In Portlet P1 There

  • A mess with account, administrator PW,  permissions and privileges!

    I don't know where to start. I've tried a number of the suggestions in the other posts below, but just can't get into my HD1. I inadvertently deleted some folders from Library (but did put them back). I thought they were doubles. I re-booted from my

  • Partition failed with the error:  No space left on device

    I used Boot Camp Assistant (for instaling Windows XP) and there was Partition error: +*The disc cannot be partioned because some files cannot be moved.*+ +Back up the disk and use Disk Utility to format it as a single Mac OS Extended (journaled) volu

  • How can i get a query to count a number of strings?

    I want the query to count for me how many holidays there are to the USA in my table. But im not sure how to get it to retreive the result of a string or varchar2 datatype. This is what i have tried so far. select count(COUNTRYVIS) <<this column conta