Changes done for sap user details

Hi All,
I need to know a standard transaction code or FM;
which can give the information on the modifications/changes done
for the sap user's first name; last name and e-mail id.
Any help will be appreciated.
Thanking you all in advance.

Hi Kanagaraja,
I really appreciate you inputs, it will definitely have entries posted by BAPI.
But the requirement I have is little different.
I will have some person changing the user information manually,
I need to go somewhere and find out whether the person has made the
changes in user's first name, last name or e-mail id.
So, I am looking out for some FM or table or even standard t-code where
I could find the changes done, and change log lately.
Thanks and Best Regards

Similar Messages

  • Display changes done for reservation

    Hi Guys
    I have client requirement as below
    They  need to view changes done for reservation
    Can any boy help on this
    Thanks in Advance
    SAP MM

    Dear,
    We have this requirement and we raised OSS to SAP also on this.
    Reservation changes cannot be tracked in SAP system due to least importance it has. One work around through ABAP development but its not supported by SAP due to abnormal increase in data volume of change recording in data base which impacts system performance.
    For this we, go with authorization matrix by which remove MB22 authorizations from all users and make one super user like concept. Means one plant only one user has authorizations for MB22 for which he can change the reservation. He get instructions whenever any user want to change reservation - must shoot a mail to all concerning inventory team before he changing with MB22.
    Regards,
    Syed Hussain.

  • Creating second InfoView entry point for SAP users in XI 3.1

    Hi All,
    I have BOE XI 3.1 up and running with the Business Objects Integration kit SAP Solutions kit I would like to create a second infoview entry point for SAP users on the same physical box (single server) as regular InfoView. 
    I am trying to mock this up and have detailed the following steps below.  I suspect I am missing a few steps (for example, where do I specify the entry port?).  I am sure step 2 is wrong, as I the desktoplaunch no longer exists in Xi 3.1
    1.  Copy the InfoView.war file to a new directory ( Program Files/Business Objects/ Business Objects Enterprise 12.0/java/applications/sap).  I imagine I would need to rename the war file (say SAPInfoview.war)?
    2.  Create a xml file with the following logic (the part in bold I consider to be wrong...):
    <Context docBase="Program Files\Business Objects\Business Objects Enterprise 12.0\java\applications\sap\SAPInfoview.war" path="/
    businessobjects/enterprise115/desktoplaunch"
    crossContext="false" debug="0" reloadable="false"
    trusted="false"/>
    3.  Save the xml file (what name? does it matter) in Program Files\Business Objects\Tomcat55\conf\Catalina\localhost
    4.  Restart Tomcat
    5.  Change the web.xml to make SAP security the default.  But this should not be the regular infoview web.xml.  I'm not sure where this would reside.
    Thanks,
    Steve
    Edited by: Steve Bickerton on Jan 15, 2009 9:19 PM

    Hi Ingo,
    You've been working with Duncan and Sartaj on this.  The client has two set of users:  non HR which has no BW or R/3 authorization restrictions, and HR, which has authorization restrictions.
    They have deployed SSO using AD for the non HR users.  They also want to leverage InfoView rather than the SAP portal.  For the HR users, we therefore need to capture the SAP id and password at login time to enforce security at the BW and R/3 levels.  We could use the existing Infoview entry point (SSO will fail and they will be prompted for a SAP login).  I do remember that we offered a second InfoView entry point for SAP users in XIR2.  I thought this may be more elegant.
    Thanks,
    Steve

  • How to change password for a user in WLS 7.0 embedded ldap in code?

    I asked the similar question before but don't have an answer yet.
    I need to change password for a user in my Java code. Any help will be
    appreciated.
    Here is my stack trace:
    c:\Test>java -classpath . testEmbeddedLdap
    attribute: uid
    attribute: description
    attribute: objectclass
    attribute: wlsMemberOf
    attribute: sn
    attribute: cn
    javax.naming.NoPermissionException: [LDAP: error code 50 - Insufficient
    Access Rights]; remaining name
    'uid=myRegularUser,ou=people,ou=myrealm,dc=mydomain'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:2872)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2810)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2616)
    at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1374)
    at
    com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDir
    Context.java:255)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(Partial
    CompositeDirContext.java:172)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(Partial
    CompositeDirContext.java:161)
    at
    javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.
    java:146)
    at testEmbeddedLdap.main(testEmbeddedLdap.java:30)
    Here is my testing code:
    <PRE>
    import java.util.*;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class testEmbeddedLdap {
    public static void main(String[] argv) {
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://localhost:7001");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "uid=myAdministrator, ou=people,
    ou=myrealm, dc=mydomain");
    env.put(Context.SECURITY_CREDENTIALS, "myAdministrator");
    try {
    DirContext ctx = new InitialDirContext(env);
    String
    sUser="uid=myRegularUser,ou=people,ou=myrealm,dc=mydomain";
    String sOldPassword="myRegularUser";
    String sNewPassword="newpassword";
    for (NamingEnumeration ae = ctx.getAttributes(sUser).getAll();
    ae.hasMore(); ) {
    Attribute attr = (Attribute)ae.next();
    System.out.println("attribute: " + attr.getID());
    ModificationItem[] mods = new ModificationItem[2];
    Attribute mod0 = new BasicAttribute("userpassword",
    sOldPassword);
    mods[0] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE,
    mod0);
    Attribute mod1 = new BasicAttribute("userpassword",
    sNewPassword);
    mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, mod1);
    ctx.modifyAttributes(sUser, mods);
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    </PRE>
    "Neil Smithline" <[email protected]> wrote in message
    news:[email protected]...
    Two things. First, I'm not exactly sure what password you are trying to
    change. The LDAP server's password or a user's password in the LDAP
    server. Second, could you please post a stack trace.
    Thanks - Neil
    K Wong wrote:
    I am using (javax.naming.directory.DirContext.modifyAttributes) to
    change
    password to our development Weblogic 7.0 embedded LDAP.
    I login as the system administrator (a user in the administratorsgroup),
    but always gets the javax.naming.NoPermissionException - InsufficientAccess
    Rights.
    What user should I use? Any help will be appreciated.

    Hai,
    This condition based execution requires - javascript coding.
    In miscelleaneous tools bar, you have an option of SCRIPT_ITEM writer tool, drag the tool into your WAD layout, and select the properties , choose the editor option and paste your coding. that's it.
    Alternate option :
    in your web application design layout , you will fine XHTML coding editor , there you need to write coding and execute the same.
    Hope this will help to you.
    Assign Points if its really useful.
    Cheers !!!
    Bye
    Regards,
    Giri

  • Retive the changes done for materials in perticulare plant

    Hi Friends,
    i want to pull the changes done for materials in perticular plant
    for specific USER in a view.
    mean .. what the USER was changed for that meterials in plant.
    regards,

    Hi,
    Use CDHDR and CDPOS table.
    Thanks,
    Sen

  • Change documents for the user in Ep7.0

    Hi,
    Is there a way can we track change documents for a user in user admin in AS java stack.We have LDAP sun 5.2 version as the datasource.in ABAP stack we have some thing like in suim the change docs.Thanks.

    Hi Ambarish,
    Please check the Security Logging (.../usr/sap/<SID>/j2ee/cluster/serverX/log/security.log) might helps.
    Security audit log - 1278155
    Refer to http://help.sap.com/saphelp_nw70/helpdata/EN/03/37dc4c25e4344db2935f0d502af295/frameset.htm
    Regards
    Arun Jaiswal

  • Password Policy implementation for SAP users

    Dear Friends,
    We are planning to implement the Password Policy for SAP users in our organization...
    Here my question is,
    Letu2019s say that the Password Policy is implemented today, what will happen to the SAP usersu2019 passwords?
    Will they be locked out until they create a new password that follows the policy?  Will there be a dialog box that will tell them what the criteria is for new passwords and its the time to change the password?
    Thank you,
    Nikee

    Hi
    Letu2019s say that the Password Policy is implemented today, what will happen to the SAP usersu2019 passwords?
    SAP Users password will be intact till it prompts for next password change. Say, 90 Days. (Provided Parameter is not set)
    Will they be locked out until they create a new password that follows the policy? Will there be a dialog box that will tell them what the criteria is for new passwords and its the time to change the password?
    They will not be locked out until they create a new password that follows the policy (provided parameter is not set),  During the time of changing the password they would get a dialog box if they have not met the specified criteria indicating that it should have specific values.
    Once the password change prompt appears, in order to login to SAP they are forced to change password with password criteria set, other wise they can not login.
    Thanks and Regards
    Arun R

  • Where can I change desktop for anonymous user ?

    Hello.
    Where can I change desktop for anonymous user ? I'd like to change it in the same manner as sampleportal desktop (with amconsole) , but I did not found it in the amconsole.
    If you know, please, tell.

    The user "authlessanonymous" holds the information that people see if they are not signed on. It can be changed like any other user. It may have to be enabled under the Service Configuration tab -> portal desktop.

  • 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 change password for sidadm user on HP-UX

    Hello
    How to change password for <sidadm> user on HP-UX

    Hello Jan,
           1.      Log on to the operating system with the <sid>adm user.
           2.      Open a shell.
           3.      Enter the command passwd.
           4.      Enter the old and new passwords
    Rohit

  • How to change password for apple user id

    how to change password for apple user id

    If you can't remember your current password then you should be able to get it reset via this page : http://iforgot.apple.com
    If you know your current password then on your phone you can try tapping on your id in Settings > Store and you might be able to change it on your account's screen, or on your computer's iTunes you can log into your account via the Store > View Account menu option and change it on there

  • How to change password for  XELSYSADM user in OIM?

    Hello Gurus and Experts!
    How to change password for XELSYSADM user in OIM?
    Your help is appreciated.

    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.

  • How to change the Client n user details for a model in Production

    Hello Friends,
                         I have an application which is calling RFC function module from SAP R/3.
    In development system while creating Model I have entered the Back end details like Client, User Name and Password.
    If I transport the application into Production, The Client and user name will be different. In this case How would I change the client n user name details.
    Do I have import again in Production. But does sounds a good idea.
    ThanQ for Ur time.
    Cheers.. Sam

    When you create Model first time, to import Interface of RFC you would need to logon into R/3. But once you are done with the Interface, your connection to R/3 will be determined by the client and UID details in JCo connection.
    Now when you transport your code from DEV to QA system, the JCo connection with the same name should be there. or else, you would need to create the same in the new server. I dont see a need to reimport the model. If that is the case, then developers would have to spend huge amount of time doing this job alone.
    Hope this solves ur problem.
    Regards
    Murali.

  • Need details for SAP USER-ID

    Dear All,
    I am Chartered Accountant and having 2 years of domain experience. I have completed my training from a small institute that is not SAP partner. I have very good hold on SAP FI and CO modules and want to appear for SAP FI certification. I DID SELF STUDY AND I AM TOO MUCH CONFIDENT ON THE SUBJECT.
    But for appearing any SAP certification I need SAP USER-ID. I DON"T KNOW HOW CAN I GET IT IF I AM INDIVIDUAL CONSULTANT??
    Exam Registration & Scheduling Information
    Registration for SAP certification exams taken at Pearson VUE is a simple 3-step process:
    1. See information below for details on obtaining your SAP User-ID.
    2. Create your Pearson VUE web account (SAP user id from step 1 will be required)
    3. Register for the exam
    All exams require the use of the SAP user id for proper tracking in the SAP Certification System.
    CUSTOMERS / PARTNERS / INDEPENDENT CONSULTANTS:
    If you have previously taken an SAP exam or attended SAP training, go directly to step b, otherwise, customers and partners should access visit the Service Marketplace to register for your S-user number. Independent consultants, as well as Customers and partners having questions or problems regarding this step, should use the following contacts:
    1. North America: Tel: +1 888 777 1727.
    2. For all APJ countries excluding Japan: education.apa at sap.com or tel: +65 62 708188
    3. For Japan: training.japan at sap.com or tel: +81 3 3273 7070 (9:00-17:00 in Japan local time)
    4. For all other countries please navigate to the appropriate country on sap.com/services/education and contact your local Education Department.
    CALLING ANY OF ABOVE NUMBER DOESN;T HELP. THEY DON;T REPLY OR CALL WAITING AND ALWAYS WAITING. I HAVE ALREADY SPENT AROUND FEW THOUSAND ON MAKING CALLS ON THESE NUMBERS.
    COULD ANYONE OF YOU EXPERTS HELP ME IN APPERING FOR SAP FI and CO CERTIFICATION? I HOPE THERE WILL BE A WAY TO APPEAR FOR CERTIFICATION EXAM WITHOUT USING SAP ID or ANY TRAINING CENTER WHO PROVIDED CERTIFICATION FACILITY WITHOUT ATTENDING THE TRAINING.
    AWAITING EXPERTS FEEBACK ON THIS ISSUE.
    Thanks,
    Manu Rathore
    Moderator message: please do not use all upper case in the future.
    Edited by: Thomas Zloch on Nov 29, 2010 11:09 AM

    Hi
    Elgibility for Certification:
    You should either complete your training in any Authorized Training Center or Should have experience of more than 2 years(not sure if it is 2 or 3 now) in the said module.
    If you dont have any of the above, then certification wont happen in India.
    Vishwa.

  • MIGO Posting Date - Authorisation to Change/Display for Certain User ID

    Dear all
    There is this business requirement
    1. Warehouse users should not change the Posting Date of the GR refer PO. It is to avoid user from delaying their work to enter into SAP system the next day although they have received the goods today. As such, we should change the field status of POSTING DATE into Display mode.
    2. However, if the warehouse user has forgotten to enter on the GR Date, they have to go to their Warehouse manager to ask him to enter for them, since the field status: Posting Date is set to display.
    Question:
    I know how to set the field status of Posting Date to display, but will this field status will be applied as "display" for all the user id? If so, then how can I control only the Warehouse Manager can have the Change Mode for Posting Date?
    Thanks in advance
    Edited by: Daimos on Oct 14, 2009 8:37 AM

    Hi all
    I found out this can be done by assigning manager and store keeper to different Tcode with different field status:
    Warehouse Manager - MIGO_GR, field status of Posting Date: Required
    Store Keeper - MIGO, field status of Posting DAte: Display Only
    This will solve the problem!

Maybe you are looking for