Transaction for Last logged on

Hi,
   What's the SAP Transaction to find out which users have logged on , in the past 10 days in a specific client?
Thanks.

Transaction ST03 is the basic functionality of User/Porgram Monitoring.
One of its simpler report can be used using Transantion STAT, it
contains TCode, Program/Report Name and User (who run the report).
Stat's data is refreshed after a certain period of time say 1 or more
depending on the system configuration.
Reward points if this helps.
Manish

Similar Messages

  • How to find vendor who does not have transactions for last one year

    HI all,
    We have around 20000 vendors, i want to find out who does not have any transactions for last 1 year.  Any valuable suggestions on this?
    Thanks and regards
    Ramarao

    HI,
    Actually above one mehtod is very painful method. Is there any method by writing ABAP query and any other short cut method
    Thanks and regards
    Ram

  • Counting date transactions for last six months

    Post Author: crystalrook
    CA Forum: Formula
    Any help is greatly appreciated.  I am running Crystal XI.
    I have an order field (PurchaseOders.PODatePlaced) for each item. There can be multiple orders in the same month for each item of course.  I would like to COUNT each  PurchaseOders.PODatePlaced based on the month it was purchased for the last six months from a date parameter.
    My table looks like this"
    Item            PODatePlaced
    1234           11/12/2007
    1234            11/20/2007
    1234            10/15/2007
    1234            9/30/2006
    1234            12/5/2007
    1234             12/6/2007
    I am trying to get the results to read as follows (only for the last 6 months):
    Items          December         November     October
    1234               2                      2                1
    Thanks for your help

    Post Author: crystalrook
    CA Forum: Formula
    I am adding a cross tab to an existing report so many of the fields are already in the report. I would like to only add the month fields and a count of the transactions. Can this be done?  In the group options how can I tell it to only use the last six months reguardless of activity for the month.  Current results are giving every date as a column.  Can I only get the months to be columns?
    Any suggestions?

  • Transaction for application log

    Using IDOCS.  One has errored but cannot get into application log as pop up not appearing (memory issue or something) for me to double click the log number and go into the application log to view it.  Does anyone know the transaction or menu path to access the application log direct so I can see what the error is about?
    Many thanks
    Larissa

    Hi,
    USE SLG1 Transaction.
    Thanks,
    Naga

  • Transaction for Invoice Log

    Hi ,
    We have a job for the invoices running every day . Is there a transaction ( or abap) in order to see the error log and posted document for every run ? Thank you .

    Hi
    As mentioned previously you can see the log in V.21.
    Additional background which may help you located the information you want from these
    billing job runs.
    When a collective billing run is executed it is assigned a group number and under this
    group number you can find the related information, job log etc.
    This is written into table VBSK when the billing process is run (either VF04 or VF06)
    This billing runs are found under group type 'F'
    So if you know the day and time the job is run you can go to table VBSK in SE16
    enter group type 'F' and the 'created on date. This will show you a list of all billing
    jobs that were run that day, if there are several the time will point you to the one you want.
    The log for that billing run is held in table VBFS under the same group number SAMMG.
    So you can find the information you want in VBSK & VBFS or via V.21
    Hope this helps you further
    Kind regards
    Brian

  • Status Report with Last Logged on User on a deployment

    Hi all,
    I have been trying to find a report that will telling me the deployment status of an application and against the workstations the last logged on user.
    Is there such a report or will I have to customize a report to do that?
    Cheers

    Hello,
    a report that will telling me the deployment status of an application
    You can refer to compliance report.
    For last logged on user, you can find the information in client propertities. If you want to query the information, you need create a customized report.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • SQL 2012 Transactional Replication Publisher is also AG Primary, AG fine, but Replication status continuously 'waiting for next Log backup'

    Hi,
    I have a SQL 2012 instance that hosts 3 databases that are publishers in (push) transactional replication to subscribers in other domains and are also primary in an Availability Group to other instances in the same domain.  The AG is healty (synchronized),
    and replication is ok for 2 databases, but the third continuously shows the Publisher to Distributor history status as 'Replicated transactions are waiting for next Log backup or for mirroring to catch up.'
    I have weekly full, nightly differential, and hourly log.  Those are running and I've tested restoring the publisher db from them into a test instance.  The option for sync_with_backup is 0.  I generated a new snapshot, no change (haven't
    reinitialized, that will be last possible option as this is production).  When the log backups run, status will briefly change to 'Approximately (x) log records have been scanned in pass # ..., 0 of which were marked for replication' and some data
    does replicate, but then status immediately changes back to the message about waiting for log backup.   We are only replicating tables (no views, sp's, etc).  All subscribers and AG secondaries are SQL 2012.  My db is less than 200
    GB data. 
    The jobs are continuously running and data updates are occurring on the primary.  The distribution database is on the same instance as the publishers.  Anyone have any ideas what could be happening? 
    Thanks greatly!

    Update - I resolved this. 
    We had added a new asynchronous instance to the AG, but hadn't added the databases on the new node to the AG yet.  Conceptually it seems that adding the instance must have marked the logs and interferred with transactional replication on the
    primary.  Once I added the databases to the AG on the secondary, then the replication status cleared on the primary and has remained cleared.  It is odd though that it only impacted one of the databases in the AG. 
    cheers. 

  • Recovery silently truncates committed transactions on corrupted last log??

    It looks like LastFileReader.readNextEntry() stops at the first corruption and then traces an error? I came across this stepping through RecoveryEdgeTest.testNoCheckpointStart() and it seems to be the same in 3.2 -> latest 4.0
    } catch (ChecksumException e) {
    LoggerUtils.fine
    (logger, envImpl,
    "Found checksum exception while searching for end of log. " +
    "Last valid entry is at " + DbLsn.toString
    (DbLsn.makeLsn(window.currentFileNum(), lastValidOffset)) +
    " Bad entry is at " +
    DbLsn.makeLsn(window.currentFileNum(), nextUnprovenOffset));
    If the last log file has multiple committed transactions, say T1, T2, and T3 and I manually corrupt the file (as the test case does) at T1 the file is then truncated after this in RecoveryManager.findEndOfLog() which seems like it will silently lose changes from T2 and T3.
    /* Now truncate if necessary. */
    if (!readOnly) {
    reader.setEndOfFile();
    Edited by: nick___ on Feb 6, 2010 11:16 AM
    NOTE: post modified to clarify question and hopefully get attention of bdbje developers.
    Edited by: nick___ on Feb 6, 2010 11:21 AM
    (clarified that question regards corrupted last log)

    Thanks for your reply Nick.
    1) we do some locking before opening bdb in one attempt to prevent dual access.2) FileManager.lockEnvironment() will do a file system lock on je.lck which was being used as a fallback in case #1 failed. In general this has worked but has a few bad properties:
    - lock held if process becomes defunct.
    - if machine goes away lock held (this doesn't typically happen).
    - odd performance problems acquiring lock due to NFS/IO system in certain senarios.
    because of the last one we've changed lockEnvironment to lock via methods other than file system locking. >
    I understand that file locking over NFS may be problematic, so it doesn't surprise me that you've implemented other locking mechanisms. But I'm curious about why you changed JE's lockEnvironment, rather than performing the locking prior to opening the environment? Did that have some particular benefit, or was it just a convenient place to put it?
    I ask because I'm trying to determine the benefits of providing a customizable hook for doing the locking in JE. (Not promising anything, just exploring.)
    Currently we always open in read/write mode but are looking at opening read only if we know the request is only a read. the issue with this is that the way je implemented locking (not mvcc) we have to be careful about multiple requests to the same jvm (when it would be fine for multiple JVMs).By that do you mean that you don't want to handle deadlocks? If you have an algorithm you can describe, we may be able to help to figure out a way to reduce or eliminate the deadlocks, if you haven't already explored that in depth.
    to get this working i'm planning on disabling the env cache so each readonly env will not potentially conflict with the write env (either totally separate or by r/w mode within the vm).I think I understand. I assume by "env cache" you mean the internal pooling of Environment handles, in DbEnvPool -- correct?
    Thanks again,
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Query to retrieve the number of transactions done in every 1 hour for last

    Hi,
    Could anyone help in writing a query to retrieve the number of transactions done in every 1 hour for last month.
    Case:
    I/P
    Cases Timestamp1
    case1 01-01-2008 00:00:01
    case2 01-01-2008 00:01:01
    case3 01-01-2008 01:00:01
    case1 01-01-2008 01:02:01
    case4 01-01-2008 01:10:01
    case5 02-01-2008 02:00:01
    case6 02-01-2008 02:10:01
    case7 02-01-2008 23:00:01
    case.. 31-01-2008 24:00:00
    O/P
    from time to_time cases
    01-01-2008 00:00:00 01-01-2008 01:00:00 2
    01-01-2008 01:00:01 01-01-2008 02:00:00 3
    etc
    Any help really appreciated

    We can do this using analytical functions
    Following is what I did:
    create table timestamp1 (ts date)
    select *from timestamp1
    30/10/2008 15:41:13
    30/10/2008 15:41:05
    30/10/2008 15:40:03
    30/10/2008 14:58:26
    30/10/2008 14:29:45
    30/10/2008 13:17:48
    30/10/2008 08:29:50
    30/10/2008 06:05:51
    30/10/2008 03:41:52
    30/10/2008 02:29:54
    select distinct to_char(ts,'hh24') frmhrs,
    to_char(ts,'hh24')+1 tohrs, count(ts) OVER (order by to_number(to_char(ts,'hh24')) RANGE (1/24) PRECEDING )
    from timestamp1
    where trunc(ts)=trunc(sysdate) -- I added this just to make sure I get for today's data
    order by frmhrs
    FRMHRS     TOHRS     CNT
    02     3     1
    03     4     1
    06     7     1
    08     9     1
    13     14     1
    14     15     2
    15     16     3
    You can customizeas per ur need.

  • How do I know  what transactions executed by specific user for last month

    All
    We have a request to find out  what transactions are executed by secific user
    for last couple of months.
    Is there any report in SAP would tell me ?
    Please advise.
    From
    PT.

    Hello PT,
    If you use the search for the term "How do I know what transactions executed by specific user for last month" then I guarantee you some good hits in the result, and further more detailed search terms to use...
    Cheers,
    Julius
    (this time in response to the correct thread...)

  • Logged users for last week or last  7 days

    Hi in my application there is log for who is logging and i want to find who logged for last 7 days or last week.i tried the following query and its not workinghow to fix it
    select uid,agentid ,logtime from agnt_mst
    to_date(to_char(logtime,'dd-mm'),'dd-mm') between to_date(to_char(sysdate,'dd-mm'),'dd-mm') and to_date(to_char(sysdate,'dd-mm'),'dd-mm') - 7;

    Here trying for one test table
    desc emp_benefit
    employee_number varchar2(30)
    employee_name varchr2(40)
    dob date
    select distinct employee_number,dob from emp_benefits
    WHERE trunc(dob) >= trunc(sysdate-5)
    it shoud return
    70935     Mrs. Mervatte      17-AUG
    74552     Mrs. Dona      18-AUG
    75331     Mrs. Ramesh     20-AUG
    76068     Mr. Fernandes     17-AUG
    72366     Ms. Rajaa      19-AUG
    rgds
    raj

  • R12 Last Log on for a Responsiblity

    Need to find the last log on for a user, with a particular responsiblity and found a posting that references the following code:
    a.LOGIN_ID,a.START_TIME,a.END_TIME,c.RESPONSIBILITY_NAME,b.USER_ID,d.USER_NAME from apps.FND_LOGIN_RESPONSIBILITIES a,
    .fnd_logins b,
    .FND_RESPONSIBILITY_tl c,
    .fnd_user d
    where
    LOGIN_ID=b.LOGIN_ID
    and a.RESPONSIBILITY_ID=c.RESPONSIBILITY_ID
    and b.USER_ID=d.USER_ID
    --and b.user_id=1013895
    --and a.RESP_APPL_ID=1
    --and d.USER_NAME=:USERNAME
    order by a.START_TIME desc
    Which works great for internal users; however, I need a similar query to doso for exteral responsibilities (ie:  iSupplier).  Please help.

    There is a possibility that your connection dropped even briefly, more so if using wireless. Make sure Firefox is not set to "[v] Work Offline" in File menu just above Exit.
    By default, Firefox 3.5 and 3.6 will automatically use offline mode if there is no network connection. Under certain conditions, after the connection is reestablished it may remain in offline mode without the user's knowledge. Firefox 4 and newer prevents this behavior by default. To prevent this behavior in versions 3.5 and 3.6, add an entry to the about:config options, as follows.
    * Type '''about:config''' in location (address) bar
    * Right-click on the about:config page to open the right-click context menu and use "New > Boolean" to create a new Boolean preference. Name: '''network.manage-offline-status'''. Value: '''false'''
    http://kb.mozillazine.org/Error_loading_any_website#Work_Offline_Setting

  • How to track activity for users logged in using solman to target systems?

    If a person accesses a monitored system through solman, how can we track the user activity (including transactions viewed and changes made etc)?
    Thanks
    Prasad

    Hi Prasad,
    Please refer the following similar threads to get more detailed Information:
    STAD parameter
    STAD Historical Data - How Long?
    STAD -  data for last  30 days
    Also check this useful Blog about STAD(/people/andreas.vogel/blog/2007/01/12/statistical-records-part-1-inside-stad) and SAP Note 139418 - Logging user actions.
    You can also configure and activate the Security Audit Log (SM19) and then analyze its entries through SM20. You can configure exactly what needs to be tracked...
    Useful transactions:
    SM19 (config)
    SM20 (analyze) (SM20N , depending on release)
    SM18 (delete old logs)
    Other SAP Note which is helpful in this case 539404 - FAQ: Answers to questions about the Security Audit Log
    Hope this helps.
    Regards,
    Shyam.

  • When was the last log in of user X?

    Hello!
    I would like to know, whether it is posible to get the following information via tcodes e.g. SUIM:
    <b>When was the last log in of user X?
    Which transactions does the user use?</b>
    Thank you very much!
    regards
    Thom

    Hi
    In SUIM u can find the user and the last logon along with date and time stamp
    and regarding the tcodes
    There is no standard transaction. The information is available for configurable time periods using transaction ST05N but it is not organized to readily provide a report of users and transactions. Also the information available summarizes a user's use of a transaction. There will be one entry (with count data) per user per time period. Daily, weekly and monthly summaries can be created and they are stored for configurable durations.
    The information is summarized into a cluster table called MONI based on the STAT files that are written in the file system and regularly refreshed. MONI cannot be queried via SE16 etc., but SAP delivers a number of function modules that retrieve data from these tables.
    It is also possible to configure audit logging via SM19 and read the log files via SM20. This will provide more detail but it also introduces new file management issues and requires a change to system settings.
    Reward me the points if useful
    Regards
    Sreenivas

  • How to get Maximum Number of Concurrent users for last few days?

    Hi,
    How I can get maximum number of concurrent users which were logged in to the system (ECC 5.0) I mean I want to check the hostory for last few weeks. Is there any way to get the same? I know that I can get Cumulative number of users in st03 under Expert mode but that is the number of users logged into the system during the day. Is there any place where SAP maintians the High Watermark of Number of concurrent users reached in the system?
    Thanks in advance...
    Regards,
    Pravin

    Sorry I really missed that I have posted a question here on sdn. I wanted to know this for planning the system hardware requirements. Activities like PM ( Performance Management ) happens once a year and during that activity we see heavy user loan on the system so if I have the exact stats of 1 or 2 years data I can size the system better next time. Fortunately last 2 years PM was very smooth for us. In that look for the improvement because each time we had little extra Harware. By doing the exact analysis we can save a Cost of ownership...
    I was looking for R/3 users. I could see the number in st07 but I want to know the exact number at particular time.. I believe that st07 stores only for few days.
    Thanks
    Pravin

Maybe you are looking for