Sap login history

Hi. Is there some possibility to check if some SAP user logged into/out system on particular day? It it is - is there possibility to check a time of that activity? Greetings. P.

My good friend Atis Purins, who is BASIS Admin. for 6 SAP systems with a total of 600 clients at UW Milwaukee's SAP University Competency Center, an SAP ASP for Universities, provided me with the following long ago:
Transaction is ST03N.
On left hand side, top portion of the navigation panel,
   Select Administrator
   Select Expert Mode
   Select server name
   Double click on day, or week, or month
   Select Analysis Views on lower portion of left panel
   Select User and Settlements Statistics
   2x Click User profile to bring up listing of all users
   Right-Click user column header (USER)
   Select Sort in ascending order
   Go to user in question
   2x click on the ID of the user you wish to see a listing of tx activity and a listing of txs will appear
Award points if this helps.
daniel joseph

Similar Messages

  • How to know login history/events of  Sap user from server

    how to know login history/events of  Sap user from server without operating users computer.
    Am using B1 2007A PL47 Forthshift(FSE version 8.5 SP03PL05)

    Hi,
    Check the thread
    Re: User login history SAP Business One
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • SAP - Transation history

    hi,
    Autofill feature is not working in my client. I tried the following options
    options ->local data- > history on
    options -> quick info -> on
    in SAP login screen -> user defined -> advanced -> low connection ( not selected)
    reinstalled the SAP - Done
    further, the 2 MDB files (SAPHistoryusername.ldb) are not created in my PC with the SAP installation.
    I tried the above options and still the auto filling is not working for me.
    Pl help

    hi all,
    I managed to have a workaround and my history is displaying. i did the following,
    1. Installed the latest MDAC version in my PC.
    2. Loged in to my domain account from other machine ( not to SAP, logged in to the domain network)
    3. logged to SAP with my account and copied the history  mdb files created.
    4. Copy the files from that pc & pasted the files ( to my pc) with correct path ( c://docuemts & settings/ sap working directry)
    5. Restart the PC and it worked.

  • Skype login history for criminal trial? Need IP Li...

    Hello,
    I am in a situation where a forged skype message is being used in court as evidence against a close friend of mine. We know the message is fraudulent but we need the skype-ip-login-history in order to prove it. 
    Is there a legal department or mailing address/instructions for obtaining this information? We have obtained legal counsel to officially request the information, but I can't for the life of me find a way to contact the skype legal/security team to obtain these records.
    This is very important- the entire outcome of the case currently rests on whether or not this message was falsified. The login credentials to the account were "saved" on several machines and we believe that using the saved information a 3rd party logged in and sent this message to blow up our entire case. An ip-based login history would prove/disprove this theory.
    Can someone point me in the right direction? The Skype "community support" area and FAQs did not offer much help.
    Thank you very much.

    you can try sending an email to [email protected], and hope that they can point you to the right direction.  however, Skype usually provide possibly sensitive information such as IP address to the proper law enforcement or similar bodies only.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Sap login programmatically

    I didn't use SAP Login form.
    Instead of SAP Login form, I made codes to connect to SAP like below sources.
    When I run it, it connects to SAP and get some data from SAP successfully.
    But, the page makes an error and didn't show the binded data at datagrid.
    Can you help me?
    The error message is belows.
    PS : When I didn't connect with SAP, and bind the datagrid to internal table, it works fine.
    =================CODE=================
              private void Button1_Click(object sender, System.EventArgs e)
                   // Declare parameters here
                   SAPProxy1 proxy = new SAPProxy1();
                   this.components = new System.ComponentModel.Container();
                   System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader();
                   this.destination1 = new SAP.Connector.Destination(this.components);
                   // destination1
                   this.destination1.AppServerHost = ((string)(configurationAppSettings.GetValue("destination1.AppServerHost", typeof(string))));
                   this.destination1.SystemNumber = ((short)0);
                   this.destination1.Username = "RFCB2B";
                   this.destination1.Password = "SVCUSA";
                   this.destination1.Client = ((short)(160));
                   this.destination1.Language = "en";
                   try
                        SAP.Connector.SAPLoginProvider.OpenSAPConnection(this, destination1.ConnectionString, false);
                        proxy.Connection =  SAP.Connector.SAPLoginProvider.GetSAPConnection(this);
                        // Call methods here
                        string strEsvc_Rfc_Ok = null;
                        ZWEBIF2 zBuffer = new ZWEBIF2();
                        zBuffer.Buffer = this.TextBox1.Text;
                        Input_Data = new ZWEBIF2Table();
                        Input_Data.Add(zBuffer);
                        proxy.Z_Web_Rfc_D3("WB_MODEL_SEARCH", "C310", "0001656428", "E", out strEsvc_Rfc_Ok, ref In_31, ref In_33,
                                            ref In_39, ref In_81, ref In_82, ref In_83, ref Input_1000, ref Input_Data, ref Output_1000, ref zwebiF2Table1);
                        Console.Out.Write(zwebiF2Table1.Count);
                        Console.Out.Flush();
                        // Now update Data Bindings. On WinForms this will be automatic, on WebForms call the following line
                        this.DataBind();
                   catch(Exception ex)
                        Console.Out.Write(ex.ToString());
                        Console.Out.Flush();
                        // If SAPLoginProvider.GetSAPConnection(this) cannot get a connection, we might get an error.  // Normally this can be ignored as it will automatically will force a relogon.
    ===================ERROR========================
    Server Error in '/WebApplication3' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested Url: /WebApplication3/default.aspx
    Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032

    If you don't want to use a Login page, you shouldn't user SAPLoginProvider.OpenSAPConnection / SAPLoginProvider.GetSAPConnection. This classes to internally some redirect to other pages which causes 404 error.
    Instead us Connection.GetConnection() (for NCo 2.0) or just "new SAPConnection().
    In NCo 2.0 you can easily reach this by just dragging a Destination from Toolbox or the corresponsing Application Server icon from Server Explorer to your form. The Destination is already configured to take most settings from the Web.config file (see the cyan icons on the properties), so you don't need to write "configurationAppSettings.GetValue" by hand.
    In NCo 2.0 you can also drag the SAPProxy1 instance from the toolbox and wire the connection between it and the destination in designer.

  • SAP Login screen - keyboard shortcut not working

    Part way through an SSO rollout (Imprivata Onesign) and have come across one terminal server that is not behaving as normal ie keyboard shortcut control+i does not position the cursor in the Client field on the SAP login screen. Instead it is treating the key combination as a standard Tab.
    Has anyone come across this before or can anyone suggest how to diagnose.
    I have checked the registry and there doesn't appear to be any custom keyboard shortcuts defined.
    OS =  Win 2003 Enterprise SP2
    SAPGUI = SAP Gui 7.10 Patch 14
    Many thanks in advance
    Paul

    See my response here for future reference.  Much easier solution:
    Re: iOS 6 + keyboard shortcuts

  • SAP HR ID has SAP Login ID / Portal Login ID

    Hi ,
    We are thinking of using the SAP HR ID has the SAP Login ID and the Portal Login ID, ... Did anyone had the same approach ? Any feedback will be welcome .
    If my HR ID is 1234567 , my user ID will be 1234567 .
    Or, (I'm a HR guy), what is SAP recommended approach and User ID ( How to generated the SAP User ID ) .
    Regard's

    Hi,
    While creating the logon id instead of creating the user id via tcode su01 try creating it via tcode HRUSER.
    Select the HR ids for which u want to create users and create the users. U can define the initial password there and even assign roles there too.
    Other wise if u want to assign different roles to different users then only create the users via tcode HRUSER and assign the roles via SU01.
    If users are created via tcode HRUSER the user name will be P<hr id> ie like P99003114.
    First name and last name will be picked form hr
    master data automatically.
    Hope this will solve your purpose.
    Pl dont forget to award points if resolved
    Regards

  • MDM Last Login History table?

    Hello,
    I was wondering if anyone was aware if the last date/time login history of a mdm user to a repository is actually stored in one of the DBMS tables for a repository schema.  We are aware of the Audit xml log file that tracks actions of when a user logs into a repository - but we are trying to find out if this is already recored in one of the MDM database tables so we can more easily make use of last login time for custom development. 
    Thanks.

    Hi David,
    You can try out this...... goin the Console client in the system tables check the Login Table. But this you will get  records that MDM maintains which corresponds to a currently connected MDM client application, along with the connection time and time since last access, allowing you to monitor connection activity.
    Name: The user name.
    Host Name: The system on which the MDM client is running.
    Application Name: The MDM application (e.g. Client, API, Import Manager).
    Connection Time: The date and time the connection was established.
    Last Activity Time: The date and time the connection was last accessed.
    Hope this helps you ...............
    Prasad................

  • FM for SAP Login id with pernr no.

    Hi All
    I need to make function module for below three requirement. Please tell if there is any standards fm available for these or how can i proceed to finish these fm.
    1. Get HR Information for employees - bank account, dependent informaiton, start date, org unit, manager,
    2. For employee get the associated sap login users. We want the ability to download a list of sap users/pernr automatically into the admin database.
    - function to get a list of employees, pernr and sap login ids.
    - function to get the org unit and hr information for employees, pernr, sap login ids
    3. Org structure/profit center hierarchy list-
    get the list of org structure with persons. display for a user or a list of user the org structure hierarchy
    Thanks And Regards
    Ranjeet Singh

    There is no single fm which will give you all the info.
    you need to create a custom that makes use of HR_READ_INFOTYPE and HR_GETEMPLOYEEDATA_FROMUSER  and some OM related fms to get the required data
    Thanks
    Bala Duvvuri

  • Configure sap login page

    Hi Expert,
    I want to Add my client in default client with description, how to configure sap login page with my company lobo. Is there any transaction code for that.
    Regd,
    Rahul

    -> have a look at <b>sapnote 205.487</b>
    -> you can change the log by using transaction SMW0, select "Binary data..." the logo must be in GIF format...cfreate new object, chose import, select your gif and transfer; then maintain table ssm_cust via sm30, change field start_image to the above imported object..
    GreetZ, AH

  • Survey access via internet without sap login

    Hi!
    I just created a survey using crm_survey_suite. How can I let our external customers (without sap login) answer the survey via internet? I'm currently working on CRM 4.0.
    Thanks!
    Steph

    Hi steph,
    You will have work with Basis team and create an anonymous login id and password for your survey link which canbe sent on mail.
    Regards
    Raj

  • NetApp Root Account Login History

    Hi All,
    Is there a command I can input into my 7-mode filer's CLI to interrogate / display the root account login history, when the root username & password have been used to to access the filer's CLI.
    Apparrently, the filer root account has never been used to access the filer since initial config.
    I'd appreciate any suggestions
    Tks In Advamce
    C.J.

    Hi Yishikawa, Thanks very much for the /etc/log/auditlog tip. I ran the above command you suggested on the NetApp site and found the following NetApp library link entitled "Understanding Audit Logging" https://library.netapp.com/ecmdocs/ECMP1368862/html/GUID-B6117506-C89B-4463-A2DF-29BFAC99A72F.html In the above link, it is suggested that the filer saves audit-log files for six weeks, (unless any audit-log file reaches the maximum size) after which the oldest audit-log file is discarded. I suspect any of the root account logon attempts I wanted to track will already have been deleted.  I don't suppose there's any system shell commands that could accomplish the same aim? Thanks for your response C.J.(aka Millsy64)

  • SAP* login locked !!!??? how can i upgrade my license?

    Hello gurus,
         My SAP* login of one of the system got locked, while updating the license. Now the thing is, my license is expired, can only log in through SAP* and that log in also locked how can i upgrade my license??
    Thanks and Regards,
    Rahul

    Hi ,
    If all the users are locked, they can be unlocked by
    a)Try this command at ur sql plus query level
    Go to cmd prompt.
    Sqlplus /nolog
    conn /as sysdba
    this will take you to the sqlprompt.
    Just execute the earlier commands there.
    sqlplus><b>UPDATE SAP<schema>.usr02 set uflag=0 where mandt=<CLNT NO> and uflag=64;</b> this statement actually unlocks the users of that particular client. So, try for every client in that sap system.
    b) You can delete sap* user
    Go to cmd prompt.
    Sqlplus /nolog
    conn /as sysdba
    sqlplus><b>DELETE SAP<SID>.usr02 where mandt='CLIENT.NO' and bname=SAP*;</b>
    <b>Note:-
    After doing this restart the system. So, that a new user with the name "sap" gets generated with password "pass". Provided the parameter is set login/no_automatic_user_sapstar= 0 (Automatic user SAP is permitted).</b>
    regards,
    kanthi

  • SAP Login Details for audit.

    Hi All,
    I have one requirement in which I need to get login details of particular user or all.
    I have timestamp (from & to) username (KIRAN123 or ALL), keeping this I need to pick up the login details. To say the history of login done for that username.
    Please help me know how I can achieve this.
    USR02 table only has the last login details. My requirement is to get the history of login.
    Thanks in advance,
    Kiran.

    Hi,
    before creating your abap, check out if one of the standard report is sufficient. See tcode SUIM which contains several reports. maybe report RSUSR200 is already what you need.
    regards,
    bert

  • Login History of Users

    Hello Experts,
    I need a report having the login details of few users in SAP since 01/04/2010.
    The management wants to get the login days & login time as well as the last approved document date by the user.
    From which tables ,I'll get?
    Rgds
    Subrata

    Hello Subrata,
    To your disappointment, there is no such table in B1 holding such data.
    You may try ADOC, AITM, or ACRD table to get some info if the user had edited certain documents or master data on the date their logged in.
    Thanks,
    Gordon

Maybe you are looking for

  • Problem with JTable in a JScrollPane

    Hello all, I have a problem using JTable, that the number of columns is very big, and the JScrollPane shows only vertical ScrollBar, isn't there any way to show a horizontal ScrollBar, to show the other columns without being bunched. Thanks in advanc

  • IPad 2 brand new camera doesn't "open"

    Hi everyone Just bought my iPad 2 today and what a surprise, the camera doesn't work Front camera it's ok. The problem is with the one in the back. It doesn't open. I've done a little research on the web and I can see this is a very common problem. ¿

  • How to use multiple instances of the same dll ?

    Hi, I'd like to use multiple instances of a jni dll . I have created different threads, in each thread, I have called System.loadLibrary(..), and I would like each thread to access a different instance of this library. Unfortunately, the loadLibrary

  • What brand external hard drive is best with time machine

    what brand of external hard drive works best with time machine?

  • Clob temporary table space is not released

    In our java web application, it uses datasource to call oralce stored procedure and get back data in Clob data type. The oracle version is 8.1.7.4. After the database call, the database connection is closed. But I found that the tablespace for Clob d