How to find user log-out time ?

Using SM05 i am able to extract the user login time(that too for active users).
How should i get the logout time ?
Tables like USR02 , USR41 give login time for active users only.
When i try to log tables USR02 etc. , i cannot make a difference if it is the login time or logout time.

<b>User administration</b>
USR01               User master
<b>USR02               Logon data</b>
USR03               User address data
USR04               User master authorizations
USR11               User Master Texts for Profiles (USR10)
UST12               User master: Authorizations
USR12               User master authorization values
USR13               Short Texts for Authorizations
USR40               Prohibited passwords
TOBJ               Objects
TOBC               Authorization Object Classes
TPRPROF          Profile Name for Activity Group
DEVACCESS          Table for development user
Regards,
Rajesh Banka
Reward points if helpful

Similar Messages

  • How to find users logged in system

    Hi ,
    1.is there a way to find out how many users are cuttently logged in the system
    2. is it possible to find what all activities they did , other than execution of calc scripts or rule files.
    3.can we get any log file or genrate a report to find out who all were logged in the system at a particular time.
    Thanks in advance

    thanks a lot , but i am using oracle rdbms and its not easy to view all the activities per user as the size of the data is huge , is there any way to view the records of the table or can you give a more specific command
    what i want is to view all the activities done by a particular user on data , and there is no table by the name audit log but there is one by the name HSP_AUDIT_RECORD , i hope this is the one you are referring too.
    and thanks again

  • How to find users logged on Org Unit

    Hi All,
    We are setting up printing on our CRM 5.0 system (Web interaction centre) and was wondering if anyone knows of a way to find out what Org unit the users is logged on as ??
    We are using Actions to print specific smartforms off for the users and need the prints to go to an assigned printer.. We are hoping to use a printer that is assigned to the 'Default Printer' attribute in the org structure (PPOMA_BBP)
    As you will be aware users can be in many positions (under the org units) in the org structure and when we log onto the Web IC we get the option of which one we would like to use... Is there a function that can read this Org unit so we can use it in the printer determination BADI to decide what printer the prints will go to ???
    Many Thanks
    Gaz

    In case anyone is still looking for this solution, here is how:
      data: lr_usett type ref to cl_crm_ui_user_cb.
      lr_usett = cl_crm_ui_user_cb=>get_instance( ).
      call method lr_usett->get_org_object
        importing
          ev_org_objid   = lv_objid
          ev_org_objtype = lv_otype.

  • How to display All User Logged in time & Logout Time?

    How to display All User Logged in time & Logout Time?
    Hi..
    I want to display All user who logged in the portal,
    their username,
    their time logged in,
    their time logged out..
    where can i find these information?
    do Portal have already something like this?
    Plz advise..Thanks.

    The login information is in the wwlog_activity_log. The logout action is only logged when it is explicit. I am using the last user action time for the logout time so I can determine the duration of the visit.

  • User log in & log out time SAO

    Dear Experts,
    I hope every on fine.
    How to check the user log in & log out time daily & weekly in SAP.
    Thanks in advance
    Regards
    Dilip Pasila

    HI,
        You can see the details about user last logon & logoff by different ways.
    1)run the tcode suim->user ->By logon date and password Change->for all users logon details just enter(f8),again if you want a perticuler user's logon details just write down the name of the user & then execute.
    2)run the tcode se16->write table name usr02->execute you will able to see the users logon details.
    3)With the help of CCMS also You can see the last logon details
    rz20-> expand ccms monitor templates-> entire system->instance no->expand systen configuration->named user.

  • How to insert log In & Log Out Time in to Table

    hi,
    i have create a login form there are three textfield
    Username
    Passward
    request is for identify user is admin or User
    i have create two table for login details
    CREATE TABLE "USERS"
    (     "USER_ID" VARCHAR2(10) NOT NULL ENABLE,
         "PASSWORD" VARCHAR2(30),
         "EMAIL_ID" VARCHAR2(50),
         "ROLE" VARCHAR2(1),
         "PHONE_NO" VARCHAR2(15),
         "EMP_ID" NUMBER,
         CONSTRAINT "USERS_PK" PRIMARY KEY ("USER_ID") ENABLE
    CREATE TABLE "USER_RECORD"
    (     "SERIAL" NUMBER NOT NULL ENABLE,
         "USER_ID" VARCHAR2(10),
         "LOGIN_TIME" VARCHAR2(20) NOT NULL ENABLE,
         "DTE" DATE,
         "LOGOUT_TIME" VARCHAR2(20),
         "STATUS" VARCHAR2(1),
         CONSTRAINT "USER_RECORD_PK" PRIMARY KEY ("SERIAL") ENABLE
    DECLARE
    V_ROLE VARCHAR2(1);
    BEGIN
    SELECT ROLE INTO V_ROLE FROM USERS
    WHERE USER_ID =:P68_USERNAME;
    INSERT INTO USER_RECORD
    VALUES(:P68_S_NO,:P68_USERNAME,TO_CHAR(SYSDATE,'HH24:MI:SS'),TO_DATE(SYSDATE,'DD-MON-YYYY'),NULL,'N');
    END;
    i am using this code to insert login time in to table USER_RECORD.
    now i have create log out Navigation Bar on every page ,i want when i click on any on logout link in upper side of page then the logout time should go into USER_RECORD table in LOGOUT_TIME column.
    How can i do this.
    Thanks
    Manoj

    Hello
    Well, i have read and tried to understand what is your goal..
    The goal is to record a user when they log out, right?I have implemented something in a very similar way and I remember I read it once...from a blog...quite easy...
    Here is the way to implement it...
    On the log out URL.. divert it to a single page lets say page: 99..
    f?p=&APP_ID.:99:&APP_SESSION.Page 99 will be a special page which is called when a user logs out of your application right...
    Now..then create an application which you will load before the header....
    The job of this application process will be to insert the required information in your table, your code:
    INSERT INTO USER_RECORD
    VALUES(:P68_S_NO,:P68_USERNAME,TO_CHAR(SYSDATE,'HH24:MI:SS'),TO_DATE(SYSDATE,'DD-MON-YYYY'),NULL,'N');then call a APEX LOG OUT FUNCTIONS which will invalidate session and redirect user to your default log in page: 101<APEX default Authentication Scheme>
    like
    wwv_flow_custom_auth_std.logout( p_this_flow=>:APP_ID,p_next_flow_page_sess=>:APP_ID ||'.:101');
    This APEX Function will logout user, and then redirect the user to the next page with a new session id to your default page
    like i have added it below
    BEGIN
    SELECT ROLE INTO V_ROLE FROM USERS
    WHERE USER_ID =:P68_USERNAME;
    INSERT INTO USER_RECORD
    VALUES(:P68_S_NO,:P68_USERNAME,TO_CHAR(SYSDATE,'HH24:MI:SS'),TO_DATE(SYSDATE,'DD-MON-YYYY'),NULL,'N');
    wwv_flow_custom_auth_std.logout( p_this_flow=>:APP_ID,p_next_flow_page_sess=>:APP_ID ||'.:101');
    END;this processes should be done in default like when before a page is loaded...that is my magic trick
    Hope I was able to help.
    Regards,
    Noel Alex Makumuli,
    Tanzania

  • How to close browser window after user log out

    Hi,
    Does anyone know how I can close browser window after user logs out. The scenario is when user clicks a log out button I will invalidate user session and close the browser right away in the backing bean.
    Your help would be appreciated.

    Try run this and you'll see that it runs fine with no exceptions:
    <%
         String someText = "bla bla bla";
         response.setContentType("text/plain");
         response.setHeader("Content-Disposition", "attachment;filename=message.txt");
         try {
              ServletOutputStream os = response.getOutputStream();
              os.write(someText.getBytes());
              os.flush();
              os.close();
         } catch (Exception e) {
              out.println("ERROR: " + e);
    %>It looks like that after I've closed the outputStream I can't do any more processing in the JSP. Even if I remove the setContentType and setHeader methods it still behaves this way.
    I'm starting to think that there's no way around this...??

  • font color="green" How to Find Users Tips (FAQs) on iChat /font

    Hi,
    Some of the more regular Visitors to this Forum may have noticed that above the Topic List is a "Recent Tips" area that has the most recently Updated Users Tips.
    There more, (you may wonder where FAQ 1 is for example).
    One way to find them is to use the Search feature just above your Profile and My Post an Setting Links in the box on the right.
    Many of the Former FAQS and Users tips have had the Search tag kichat added to them.
    Using this and changing the date option to All How to Find Users Tips (FAQs) on iChat">brings up 16 Links in this Example Search
    One of the Level 4 Posters, Red Dwarf, once spent some time going through the whole of the Users Tips Library and posting them in to two formats.
    This link is to the iChat section within his 'by Forum/application' listing.
    There is another 'By Author' Version
    The Whole Users Tips Library is here. IT has a header item that tells you who can post/Suggest new Contributions with a link to that additional forum.
    I hope you find this useful.
    10:06 PM Tuesday; April 14, 2009

    The Section above the topic List in this Forums contains Recent Users Tip section and ifo about Perian 1.1.3 has been added recently.
    (In relation to this post's date)
    8:54 PM Wednesday; May 6, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • How to get user logged in to ironport web

    How to get user logged in to ironport web by  their username, time connected and the IP address?

    The onbox reporting can only show what web traffic is currently being surfed.  We can provide a near-real time view of this web traffic with a "Web Tracking Report".
    However, there is not a report available that depicts what you're describing.  (This information is best contained on the domain server).  The closes we could get with the WSA is displaying which credentials we are currently caching.  (Which users we've seen since within the surrogate timeout).  This is possible with the authcache command on the cli.
    ~Tim

  • How to monitor user logs,security logs,trace file,and performance monitori

    Hi guys,
    pls tel me how to monitor user logs,security logs,trace file,and performance monitoring.
    thanks
    regards
    kamal

    Hi,
    you can have a look in the Netweaver administration :
    http://<portal>:<port>/nwa
    Go to monitoring, Java system reports, etc..., you will find what you want.
    Fabien.

  • Preventing browser keep data information after user log out

    Is it possible to prevent browsers from remembering pages so
    they not available after user logs out and click back button pages
    with data information will be deleted?
    How to not aloud to keep it in \Local Settings\Temporary
    Internet Files
    What is the best way to do it? Is any way around this
    problem?

    Are you using 3 line just to make sure it working across
    multiple browsers?
    It looks that they doing same thing, am I right?
    I did test it on IE 6 and it looks like only
    <CFHEADER NAME="cache-control" VALUE="no-cache">
    does the trick
    and
    <CFHEADER NAME="Expires" VALUE="Mon, 06 Jan 1990 00:00:01
    GMT">
    <CFHEADER NAME="Pragma" VALUE="no-cache">
    does not make much difference.

  • How to find user exit for a perticular screen?

    Dear all,
    Can some one tell me how to find user exit for a perticular screen?
    ex: MC88 screen can we figure out are there any user exit for that screen!!
    Regards,
    Vj

    User exits are built into the Standard SAP code. You just activate them and insert your code into the include programs.
    Here is a program that will list the user exits per transaction code. Not perfect, but it may help.
    report z_find_user_exit no standard page heading.
    tables: tstc, tadir, modsapt, modact,
            trdir, tfdir, enlfdir, tstct.
    data : jtab like tadir occurs 0 with header line.
    data : hotspot(30).
    parameters : p_tcode like tstc-tcode obligatory.
    at line-selection.
      get cursor field hotspot.
      check hotspot(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first screen.
    start-of-selection.
      perform get_data.
      perform write_list.
          FORM get_data                                                 *
    form get_data.
      select single * from tstc
                  where tcode eq p_tcode.
      check sy-subrc eq 0.
      select single * from tadir
                where pgmid = 'R3TR'
                  and object = 'PROG'
                  and obj_name = tstc-pgmna.
      if sy-subrc ne 0.
        select single * from trdir
                 where name = tstc-pgmna.
        if trdir-subc eq 'F'.
          select single * from tfdir
                         where pname = tstc-pgmna.
          select single * from enlfdir
                         where funcname = tfdir-funcname.
          select single * from tadir
                         where pgmid = 'R3TR'
                           and object = 'FUGR'
                           and obj_name eq enlfdir-area.
        endif.
      endif.
      select * from tadir into table jtab
                 where pgmid = 'R3TR'
                   and object = 'SMOD'
                   and devclass = tadir-devclass.
      select single * from tstct
              where sprsl eq sy-langu
                and tcode eq p_tcode.
    endform.
          FORM write_list                                               *
    form write_list.
      format color col_positive intensified off.
      write:/(19) 'Transaction Code - ',
      20(20) p_tcode,
      45(50) tstct-ttext.
      skip.
      if not jtab[] is initial.
        write:/(95) sy-uline.
        format color col_heading intensified on.
        write:/1 sy-vline,
        2 'Exit Name',
        21 sy-vline ,
        22 'Description',
        95 sy-vline.
        write:/(95) sy-uline.
        loop at jtab.
          select single * from modsapt
          where sprsl = sy-langu and
          name = jtab-obj_name.
          format color col_normal intensified off.
          write:/1 sy-vline,
          2 jtab-obj_name hotspot on,
          21 sy-vline ,
          22 modsapt-modtext,
          95 sy-vline.
        endloop.
        write:/(95) sy-uline.
        describe table jtab.
        skip.
        format color col_total intensified on.
        write:/ 'No of Exits:' , sy-tfill.
      else.
        format color col_negative intensified on.
        write:/(95) 'No User Exit exists'.
      endif.
    endform.
    SMOD, is where you can find the system modifications provided by SAP. CMOD is where you will implement them. If you are looking for all the enhancements provided, then go to CMOD, follow the menu, 'Utilities-->SAP Enhancements'. This will take you to a screen where if you just execute it, you will get all the enhancements provided by SAP.
    It is always difficult to find a user exit if all you have is a program name or a transaction code, unless you do a program like Rich suggested. But even there, you will not be able to find user exits that are implemented as sub-routines(also called forms not sapscript forms). Most of the user exits are documented under the corresponding task under IMG structure. So use transaction code SPRO, go to the IMG structure, choose the application area that your program or transaction might be and then you should find a task that talks about enhancements. If you execute that task most often it will take you to CMOD and sometimes to SE38. But all you want to know is there in the documentation attached to the task. Then you can go to CMOD and see which components are there.
    Regards,
    Amey

  • How to find users who are running IE with different credentials ?

    How to find users who are running IE with different credentials ? 
    Is there any tool or a solution in the market will help or a i can use GPO or even Power Shell ?
    thnx & Regards ,,

    Hi Salman,
    Based on your description, we can use Windows Credential Manager to check this. Windows Credential Manager stores credentials, such as user names and passwords  that we use to log on to websites or other computers on a network.
    Regarding Credential Manager, the following article can be referred to for more information.
    Credential Manager
    http://windows.microsoft.com/en-in/windows7/what-is-credential-manager
    Manage passwords in Internet Explorer using Credential Manager
    http://www.thewindowsclub.com/manage-passwords-internet-explorer-10
    Please Note: Since the above website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards,
    Frank Shen

  • How to create a Log Out on website

    I have a secure site created in iweb. How do Icreate the log out, so there not always signed in?

    Visitors can do this themselves by resetting their browser and/or deleting cookies.
    Delete this one and you'll find yourself signed out of this forum...

  • How to find the number of times method being called.....

    hi,
    can any one pls tell me how to find the number of times the method being called......herez the example....
    Refrence ref = new Refrence();
    for(int i = 0;i < arr.length; i++){
    if(somecondition){
    ref.getMethod();
    here i want to know how many times the getMethod() is calling...Is there any method to do this.. i have seen StrackTraceElement class..but not sure about that....pls tell me the solution....

    can any one pls tell me how to find the number of times the method being called......
    herez the example.... http://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal ? in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

Maybe you are looking for