List of logon/logoff activity for a user in specfied date range

Hello all,
We have a requirement to check the activity of two users. It is requested that we get their logon/logoff and timeout activity in our PRD system for a specfic range of dates.  To retrieve that info do we have to be auditing their user ID's or can it be retrieved via ST03N or some other report?
I was not sure whether this information would be available via a lookup in the USR02 table or not.
Any help would be greatly appreciated.
Thank you!

Unfortunately login has more than one spot as it is dependent on contexts and authorizations even.
Logoff could be network problems with a keepalive timeout, or server side session end, or client side termination (there are many clients).
Hopefully we will have more infos. Perhaps we can influence the authentication and client protocol because SAML supports single-log-off which might work with message based authentication but lead to a rather long log... 
Cheers,
Julius

Similar Messages

  • How to display all items titles from custom list with checkbox to select for each user

    Hi All,
    I have a requirement in a sharepoint 2013 development project.
    A custom list items will be created by admin with the following columns:
    Title
    Hyperlink
    User business unit (This column which is a metadata will be a userprofile property)
    In a page/form I have to display the list of titles with a check box based on each user business unit and each user will be allowed to check the list of titles and hit save. And then have to display the list chosen by the user in a webpart.
    If they want to modify their list they have to go to the page/form again and will uncheck the list.
    Am not sure whether I can achieve this through sharepoint out of box feature, I have not done any custom development.
    Please provide your valuable suggestions/ideas on this. Thanks for looking on this !!!

    Hi,                                                             
    Per my knowledge, there are no such OOTB features can meet your requirement, however, there is a workaround that if you can modify your requirement a bit.
    Based on your description, you want different users be able to select values from a list and generate a list own by them.
    If this is what you mean, we can do it like this:
    1. Create another list "Users" which stores the names of every users;
    2. Create a list "Result" which will be available for every user to add their own items, this list will have four Lookup columns and they look up to the "Users" list and the
    list you mentioned before;
    3. Users can add items into "Result" list by selecting the needed values from the other two list, then the items he/she created will be connected to them with the help of the
    Lookup column which looks up to the "Users" list.
    4. You can take use of the OOTB permission management of list to control the access of each item in the "Result" list, and it will be easier for you to manage and filter the
    information you needed.
    The links below about Lookup column for your reference:
    http://office.microsoft.com/en-us/sharepoint-server-help/create-list-relationships-by-using-unique-and-lookup-columns-HA101729901.aspx
    http://www.dummies.com/how-to/content/lookup-columns-in-sharepoint-2010.html
    Best regards
    Patrick Liang
    TechNet Community Support

  • List of Business Processes activation for ESS/MSS-Erec,ECM,TM,Succession

    Hi experts,
    Can anybody please guide me on the list of Buisness Processes/Packages & Services to be activated for ESS/MSS-Erec,ECM,TM,Succession.
    i tried to get the details in SE80 & SICF but could not recognize much.

    you are on which release? accordingly, you ll have switches for that release or you can check it here, Please go through admin guides and RKT http://help.sap.com/erp_hcm_ias_2013_02/helpdata/en/d4/cd725198e02066e10000000a441470/frameset.htm

  • Trying to provide a "visual" means for a user to filter data.

    I have a very smple vi written to import an excel spreadheet, choose the data in two columns and plot it out on an x y graph.  The trick y part is: the user would like to be able to view the chart and - using two markers - select the range of data he is intersted in actually saving.  Since he always wants to save the same span (a given temperature range....say 200 degrees), he would like to move either the upper or lower marker, and have the other one follow, creating a sliding range of values.  Once he positions the markers, he'd like to creat a new array, including just the values for the selected x range.  This visual technique would provide a much faster means of the user selecting meaningful data than for him to go through the raw data.  The requirements for choosing "good" data over "bad" data vary from test to test, so there's really no vible way to let LabVIEW do it mathematically.  Can this sort of thing be done?
    Attachments:
    ppv data filter.vi ‏122 KB

    Your vertical markers would be cursors. With the Cursor Index property and the cursors locked to the plot, you can get the information needed to use the array subset information. Here's a simple example that shows how to use cursors. I didn't do the array subset and you would also need some logic to take care of the case when the user drags cursor b before cursor a.
    Attachments:
    Graph with Cursors.vi ‏40 KB

  • Operation wise total required hours for planned order in given date range

    Hello Experts,
    My client wants the report to check the capacity utilization of the work centers for the all planned order in particular date range.
    Is their any standard report which gives the work center wise operation wise total required hours? or which table should I use to make the customize report so that I will get total required capacity & available capacity.
    Thanks in advance for use valuable suggestions.
    Sagar

    Hi Mario,
    Thanks for your reply,
    In CM01 or CM05, we are getting requirement on weekly basis.How to get that report on daily basis? I want to give the input as a date range of the planned order.How to go for that?
    Edited by: SAGAR GOLIWAR 226 on Jul 3, 2011 8:16 AM

  • Having Problem with logon & logoff Triggers for the SCHEMA

    hi,
    I have created triggers "LOGOFF_TRIG" & "LOGON_TRIG" . This triggers fires each time the user SCOTT logings and logoff from the database and stores the info in table log_trig_table. Below the code of the trigger
    LOGOFF_TRIG
    CREATE OR REPLACE TRIGGER logoff_trig
    BEFORE LOGOFF ON SCHEMA
    BEGIN
         INSERT INTO log_trig_table(user_id, log_date, action)
         VALUES (USER, SYSDATE, ’Logging off’);
    END;LOGON_TRIG
    CREATE OR REPLACE TRIGGER logon_trig
    AFTER LOGON ON SCHEMA
    BEGIN
         INSERT INTO log_trig_table(user_id, log_date, action)
         VALUES (USER, SYSDATE, ’Logging on’);
    END;But whenever i m loggin off or on using the user SCOTT there seems to be nothing being updated on table log_trig_table. Why ?

    i tried the new code provided it is telling not sufficeint priviledge. But i have all the priviledges for user SCOTT.
    Also i tried putting the commit in the below code. Tried disconnect command from theSQL* Plus. this time i didnt got any ERROR but still there were no data in table log_trig_table
    CREATE OR REPLACE TRIGGER logoff_trig
       BEFORE LOGOFF
       ON SCOTT.SCHEMA
    BEGIN
       INSERT INTO log_trig_table (user_id, log_date, action)
         VALUES   (USER, SYSDATE, 'Logging off');
          commit;
    END;Below is what my requirement
    1) Create a trigger on Schema SCOTT for logon and logoff
    2) Whenever user scott is connect or disconnect the respective trigger should fire and stores the result in table log_trig_table which is in schema SCOTT

  • How to set different urls for logoff button for different user groups

    HI All,
    We have two different set of users in our company .when one user group clicks on the logoff button in masthead we want to redirect them to for example www.google.com and for the other group we want to redirect to www.gmail.com.
    How can we acheive this particular requirement
    Thanks
    Bala Duvvuri

    hi bala,
    For the  two user groups maintain two different desktops, two/same themes and frame work.change the headeriview jsp in masthead par file to Google and save it as masthead1 and another one with gmail as masthead2 then create iviews with that par file and assign them to different groups and make invisible the default masthead iview.then the users get the logoff based on group you can get some wikis on changing log off or redirecting log off, check these threads
    Portal logoff : Redirection or Close the Entire Window
    Portal Logoff redirection URL
    Regards
    Mahesh

  • Organizing entries in link list shall not be possible for standard users

    Hello,
    how can I avoid that a standard user can organize the entries in the iView <i>Links List</i>?
    That means the link 'Organize Entries' shall not be shown for them.
    Only the content manager shall be able to organize.
    Regards,
    Susanne

    I got the solution by myself:
    In the KM repositories click on the context menue of /documents/links and choose 'Details'.
    In the opened window choose Settings > Permissions and change the permission you like.

  • How do I get a list of all image files for a user?

    The Finder folder windows have changed the sidebar. I no longer see any way to configure the Finder window to display a quick search for all images. How do I easily run a search for all image files owned by a user?
    I am just starting to set up a brand new system that came with Yosemite and it's user interface has many changes from my older Snow Leopard system. I have many image files from many different sources that I wish to consolidate on the new system. I do not wish to rely on iPhoto at this point. I prefer to use the file system or Finder  or Spotlight.
    Model Name:
    Mac mini
      Model Identifier:
    Macmini7,1
      Processor Name:
    Intel Core i5
      Processor Speed:
    1.4 GHz
      Number of Processors:
    1
      Total Number of Cores:
    2
      L2 Cache (per Core):
    256 KB
      L3 Cache:
    3 MB
      Memory:
    8 GB
      Boot ROM Version:
    MM71.0220.B00
      SMC Version (system):
    2.24f32
    Model Name: M

    0. find the user id.
        a. log in as that specific user.
        b. run terminal
        c. type "echo $UID"
        d. write down the user id that will be displayed
    1. Go to the finder
    2. go to the user home folder
    3. click the box with the magnifying glass (upper right corner of the window)
    4. type .jpg
    5. a menu will pop under the magnifying glass box, select "jpg image"
    6. click the "plus" sign that's displayed to the right of the word "save"
    7. two pull down menus will appear, select "other" from the first one
    8. a new window will pull down, scroll to "owner" and select it
    9. back in the original window type the user id (a number) to the right of "owner" "equals"
    Hope this helps

  • How to find the list of Parallel enabled tables for a User?

    Hi All,
    I created a table with parallel option. Now I want to find out the list of all tables created with that option. I searched in DBA tables but I couldn’t get it. Could some one help in it?
    Thanks,
    Darius

    You'll find this information in user_tables in the column DEGREE.
    degree=1 means noparallel
    degree=default means parallel default
    degree=2 means (parallel, 2)
    etc...

  • Application for a user to cap data usage?

    Why do none of the 'smart' phones come with an application to cap data usage....?
    If you are pay as you go, the networks know when to cut you off, it is around the time your prepaid amount hits zero. So why cannot a user state yes I would like the ability to go over my allowance, or no I would like the data allowance to be the limit?
    One particular network in the UK will charge £4.50 per mb when you exceed your allowance,
    and even with this exorbitant fee, will not allow you to cap it.
    Surely this would be a good basic tool to ship with any phone.

    Why do none of the 'smart' phones come with an application to cap data usage....?
    Probably because smartphones are designed to be permanently connected to the internet which is why all the networks offer "unlimited" data tariffs.
    I put unlimited in quotes because these unlimited tariffs still have limits (500mb or whatever is stipulated per month). But you don't have to cap your usage unless you are an extremely high data user, in which case you shouldn't be on a PAYG tariff.
    Even PAYG customers can pay for a similar "unlimited" add-ons to their standard PAYG tariff. For example, O2 offers 300 UK texts and 500MB of data when you top-up £10 a month. If you are charged £4.50 per MB when you exceed your allowance, this is a very good deal.
    In most cases, unless you really don't use the smartphone to its full extent, being on a contract with "unlimited" data included works out cheaper than paying full price for the handset, and then paying for what you use on top each month. Most networks sting PAYG users for data usage.

  • Function module for getting stock details for a given period or date range

    Hi experts,
         Any function module available for getting stock details batch, plant, storage location, and period wise. <<removed_by_moderator>>
    Thanks in advance
    M Prasanna
    Edited by: Vijay Babu Dudla on Apr 28, 2009 7:23 AM

    Hi,
    Try with this FM:
    BAPI_MATERIAL_AVAILABILITY .
    Go through this link for more details:
    ABAP Development
    by
    Prasad gvk.

  • Results for a period of time (date range)

    Hi,
    Could you please help me with the following:
    SELECT a.lot AS LotNumber, a.codeart AS ItemCode, sum(a.quantity), a.unit AS Unit, a.datetrace AS Dates FROM Production.pps_lotstraces a
    WHERE a.codeart LIKE '886%' OR a.codeart LIKE '997%') and (a.datetrace between to_date('20100105','YYYYMMDD') and sysdate)
    GROUP BY a.lot, a.codeart, a.unit, a.datetrace
    ORDER BY a.lot, a.datetrace
    The only issue I have with this query is that when it is run I get following message
    ORA-01861 - literal does not match format string. This is related to the fact that the date is stored as a string.
    The query should look at the dates from the beginning of the year up to today which is a system date.
    Could you please advise how this issue can be resolved?
    Thank you in advance for your help
    Regards

    user12866679 wrote:
    SELECT a.lot AS LotNumber, a.codeart AS ItemCode, sum(a.quantity), a.unit AS Unit, a.datetrace AS Dates FROM Production.pps_lotstraces a
    WHERE a.codeart LIKE '886%' OR a.codeart LIKE '997%') and (a.datetrace between to_date('20100105','YYYYMMDD') and sysdate)
    GROUP BY a.lot, a.codeart, a.unit, a.datetrace
    ORDER BY a.lot, a.datetrace
    SELECT a.lot AS LotNumber, a.codeart AS ItemCode, sum(a.quantity), a.unit AS Unit, a.datetrace AS Dates
      FROM Production.pps_lotstraces a
    WHERE a.codeart LIKE '886%' OR a.codeart LIKE '997%') and (a.datetrace between to_date('20100105','YYYYMMDD') and sysdate)
                                                        ^
                                                        |
                                                        |
                                                        you have closing parenthesis but you don't have an opening parenthesis
    GROUP BY a.lot, a.codeart, a.unit, a.datetrace
    ORDER BY a.lot, a.datetraceaside from the missing opening parenthesis what is the datatype for your column a.codeart and a.datatrace?

  • Average for Unit Price within a date range????

    Howdy BI Gurus,
    We're on BI 7.0.
    The client has the following report that I neeed to create in BI:
    It's Determines the Average Costs for Raw Material Every Quarter:
    <b>Item #  |   Receipt Date|   Qty      |    Unit Cost  |   Extended Cost  |   Vendor</b>
    200TU      | 01/23/07        | 47,349   |      .9950      |   47,112.26         |      XYZ
    200TU      | 02/19/07        | 48,796   |      .9870      |   48,552.02         |      XYZ
    200TU      | 04/16/07        | 43,978   |      .9340      |   43,758.11         |      XYZ
    Total Sum  For Qty =  140,123
    Total Sum For Extended Cost = 139,422.39      
    Average  For Unit Cost =   .9720
    1. How do you calculate the <b>Average</b> for the <b>Unit Cost</b>?
    2. How do display the Total Sum ONLY for the <b>Qty</b> &&<b> Extended Cost</b>?
    I tried the following document:
    <b>"How to...Count the Occurances of a Characteristic"</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7e58e690-0201-0010-fd85-a2f29a41c7af
    ...that was posted on another forum that shows step by step how to create a Counter infoobject and update the transfer rules with a Constant "1" and after creating a CKF in Query Designer and setting up the Exception Aggregation for "Average of All Values" for Ref. Characteristic "Material" to get the average...Unfortunately, it didn't work for me as I just get $0.0. 
    I'm thinking maybe the directions were for the old BW version.
    Any help would be greatly appreciated.
    Best Regards,
    Osman

    This is what I get now when I do an Exception Aggregation on Ref. Char - Material...Look at the last Column titled "Average Unit Price"
    Calendar Day     Material     Individual price in invoice     Invoiced quantity     Extended Cost     Average Unit Price
    10/9/2007     17887          $ 14.00 /EA               7,128 EA          $ 99,792.00     $ 14.00 /EA
    10/22/2007     53093          $ 318.00 /EA               1,920 EA          $ 610,560.00     $ 318.00 /EA
    10/8/2007     4750MT          $ 0.51 /LB               252,000 LB          $ 128,088.00     $ 0.51 /LB
    10/9/2007     4750MT          $ 0.51 /LB               252,000 LB          $ 127,638.00     $ 0.51 /LB
    10/17/2007     G202          $ 59.40 /EA               6 EA               $ 356.40     $ 59.40 /EA
    What I want is grup by Material:
    Calendar Day     Material     Individual price in invoice     Invoiced quantity     Extended Cost     
    10/9/2007     17887          $ 14.00 /EA               7,128 EA          $ 99,792.00     
    Average Individual price in invoice = $14 (Since there is only 1)
    10/22/2007     53093          $ 318.00 /EA               1,920 EA          $ 610,560.00     
    Average Individual price in invoice = $318.00 (Since there is only 1)
    1/8/2007     4750MT          $ 0.51 /LB               252,000 LB          $ 128,520.00     
    2/9/2007     4750MT          $ 0.32 /LB               252,000 LB          $  80,640.00     
    3/10/2007     4750MT          $ 0.24 /LB               252,000 LB          $  60,480.00     
    4/25/2007     4750MT          $ 0.65 /LB               252,000 LB          $ 163,800.00     
    Average Individual price in invoice = (($0.51 + $0.32 + $0.24 + $0.65) / 4) = $0.43
    10/17/2007     G202          $ 59.40 /EA               6 EA               $ 356.40     
    Average Individual price in invoice = $59.40 (Since there is only 1)
    Hi Kartikey,
    I'll try your method tommorrow morning...thank you for your help so far.
    I really appreciate it
    Best Regards,
    Osman
    Message was edited by:
            Osman Baig

  • Report all activations of Office 365 ProPlus for all users

    Hello:
    I know that I can open my Office 365 Settings, Software, and see how many devices I have activated Office 365 Pro-plus on.
    What I am looking for is a way for an Admin to run a Powershell script (or command) to retrieve the activations for ALL users in a tenant.
    Thanks
    Tim

    Hi Tim,
    As far as I know, this is not possible. We can use Get-msoluser command to get the license status. But we can’t get details of all users’ activated computer name list for the Office 365 tenant with a Powershell script.
    By the way, this forum focuses on questions and feedback for Microsoft Office Client. There is not so much about Office 365
    console/hosted/cloud aspects here. For your case, I would suggest you to post in the forum of Office 365 Community, where you can get more experienced responses:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

Maybe you are looking for

  • Disable delete button in a maintenance view

    Hi, Does anyone knows how can I disable the delete button in a maintenance view so when a user that is not authorized can´t delete any row, or how can I lock the delete subroutine. Thanks!

  • 2nd iPod doesnt update when connected to iTunes

    I have 2 iPod Nano's 2nd Gen. When I connect the first one itunes updates then shows the message "iPod update is complete. OK to disconnect." Then the iPod disply shows the charging icon. When I connect the second nano it does not try to update. It s

  • Can you play Diablo with the PC disk or is there a separate disk just for Mac?

    Can you play Diablo with the PC disk or is there a separate disk just for Mac?

  • Hi guys doubt on bapi

    hi , i was doing a report suing BAPI_MATERIAL_SAVEDATA.. Actually the input to the bapi are .. 1. header data. 2. plant data 3. plant data indicator after giving the input we r getting a error that the "season value for a material number is not found

  • Error deploying EAR on Netweaver CE - Could not distribute

    I am trying to deploy an EAR using the deploy.bat script to Netweaver CE.  I receive the following error.  Why can't the ear be deployed successfully? Any help is much appreciated. From deployment.0.log Obtaining Deployment Manager Connected to local