How to find out Last T-Codes by a Users in Last 24 Hurs?

Dear experts
how to find out Last T-Codes by a Users in Last 24 Hurs?
Please Help
Regrads
Is STAD is only solution (or) any other easy way?
Regards
PR

Hi,
Maybe it's easier with this path :
ST03N --> Expert Mode --> Day  --> choose your day
Under analysis view double click on "Memory Use Statistics"
You will get the list of transactions run that day.
If you double click on a transaction you will get the list of users who used this transaction.
If you select the User view, when you double click on a user, you will get the list of transctions this user launched this day.
Many ways to use this ST03N transaction...
Regards,
Olivier

Similar Messages

  • How to find out what t-code(s) a user executes most?

    Can anybody tell me how I can find out what transaction(s) a given user executes most from the all the transactions that given user has access to? For example if a user has access to 100 t-codes, but only uses 10 of them then, how can I find out that the user never executes rest of the 90 t-codes? Is there a report I can run to find out. Please help.

    Hi Amit,
    STAD is giving me nothing, even though I chose the date 05/03/2007. I also selected both radio  buttons at the bottom. Here's message I am getting "No statistical record for any server found with given criteria"
    Regards,
    Chandu

  • How to find out last update date for business partner's marketing attribute

    How to find out last update date for business partner's marketing attribute??
    Im freshie for SAP Application and im assigned to find out last update date for marketing attribute changed
    which table is involved??
    Yours kindness will be appreciated
    thanks

    You can take a look at table AUSP as well as CRMD_AUSP_HIST.
    The "changed by" and "changed at" are logged on attribute level, not on attribute value level. When you change one specific value, the system does a "re-insert" of all existing values of this attribute.
    Take a look at the SAP notes 938426 and 966670  these may assit you in resolving the issue.
    Regards,
    William Laverde

  • How to find out your PUK code

    How to find out your PUK code for a iPhone 5c

    Ask your Carrier who gave you the SIM.

  • How to find out last month's 1st & last date

    could you please tell me how can I find out last month's 1st & last date?
    regards

    Here is one way:
    SQL> SELECT  ADD_MONTHS
      2          ( TRUNC(SYSDATE,'MONTH')
      3          , -1
      4          )                                    AS FIRST_OF_MONTH
      5  ,       TRUNC(SYSDATE,'MONTH') - 1           AS LAST_OF_MONTH
      6  FROM    DUAL
      7  /
    FIRST_OF_MONTH      LAST_OF_MONTH
    05/01/2010 00:00:00 05/31/2010 00:00:00

  • How to find out the T-code of a program

    Hi Experts,
      I want to find out the T-codes of some programs. For that I am passing the program name in  TSTC table and I am getting the T-code.
      But TSTC table gives T-code for only main program and not for the includes. Is there any way to find out the T-codes for include programs also?
    Thanks and regards,
    Venkat

    Hi,
    there wont be tcodes for include programs....
    u can find the tcode for a running program through  Menu->system->status (now a window opens,here u can see transaction ie.,tcode).
    Also when the program is not running,take se80 and put the program name,in the tree u can see the transaction attached.
    Regards
    Sajid

  • How to find out last updatde timestamp for a table

    Hi All,
    I want to find out the last updated time stamp of a table. Is there some thing available with the sys tables. Is there something can be done with user_objects.
    Or, is there any need to write pl/sql code to get the last updated timestamp for a table.
    Please provide some inputs.
    regards,
    Naresh

    Hi Oleg,
    Select * from user_objects.I belieive it gives you the last_ddl_time not the time a update or delete was done.
    Not sure if we have this feature in any new release.
    I am working on Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    to the OP
    I will suggest if you planto audit then use the audit feature based on your DB version.
    Or to make it more simple have a column called modified_date and update this column whenever you update the record.
    Regards,
    Bhushan

  • How to find out the company code given the customer number

    I am new to SAP please help me out? How do you find out the answer.

    Hi,
    Goto T.Code SE11/Se16/SE16n.
    Key in the table name as KNB1.
    Enter your customer number.
    Execute.
    You will get your company code here.
    Another way is Goto XD02/XD03.
    Enter your customer number.On company code press F4.Enter the customer number and press Enter.A list of company code in which your customer presents will appear.
    Regards,
    Krishna.

  • HT201365 How to find out last location of iPhone

    My phone has gone missing but was wondering if there is any way we can find out the last location on iCloud and how to do it

    First, this is the iPad forum. I've asked that your post be relocated to the proper area.
    If it's not currently online through either a cellular or WiFi connection, there is no way to get it. Find my iPhone retains last know location for a short time, but once gone, it's gone. Sorry.

  • How to find out Last Changed Fields for a line item of a PO

    Dear All,
    Pls let me know is there any FM or procedure to find the last changed fields for each line item of a PO. I should be able to get the details on the basis of Last changed Date. Can u pls guide me in this?

    Hello,
    Check the table CDHDR,CDPOS for PO items,
    Check this code:
    REPORT ZV_GET_LATEST_SO .
    DATA: BEGIN OF ITAB OCCURS 0,
            OBJECTCLAS TYPE CDHDR-OBJECTCLAS,
            OBJECTID TYPE CDHDR-OBJECTID,
            CHANGENR TYPE CDHDR-CHANGENR,
            USERNAME TYPE CDHDR-USERNAME,
            UDATE TYPE CDHDR-UDATE,
            UTIME TYPE CDHDR-UTIME,
            TCODE TYPE CDHDR-TCODE,
            TABNAME TYPE CDPOS-TABNAME,
            TABKEY TYPE CDPOS-TABKEY,
            FNAME TYPE CDPOS-FNAME,
            CHNGIND TYPE CDPOS-CHNGIND,
          END OF ITAB.
    TABLES: CDHDR,CDPOS.
    DATA: LT_CDHDR LIKE CDHDR OCCURS 0 WITH HEADER LINE,
    LT_CDPOS LIKE CDPOS OCCURS 0 WITH HEADER LINE.
    *REFRESH AUSG.
    CLEAR CDHDR.
    CLEAR CDPOS.
    CDHDR-OBJECTCLAS = 'EINKBELEG'.
    CDHDR-OBJECTID   = '0000001784'.  " Purchase order number
    **SELECT A~OBJECTCLASS A~OBJECTID A~CHANGENR A~USERNAME A~UDATE A~UNAME
    **B~TCODE
    **B~TABNAME B~TABKEY B~FNAME B~CHNGIND INTO TABLE ITAB FROM CDHDR AS A
    **INNER JOIN CDPOS AS B ON A~OBJECTCLASS = B~OBJECTCLASS
    **                         A~OBJECTID    = B~OBJECTID
    **                         A~CHANGENR    = B~CHANGENR
    **                    WHERE OBJECTCLAS = 'VERKBELEG'
    **                      AND OBJECTID = '0000001784'.
    *SELECT * FROM CDPOS INTO TABLE LT_CDPOS WHERE OBJECTCLAS = 'VERKBELEG'
    *                                    AND OBJECTID = '0000001784'.
    *IF NOT LT_CDPOS[] IS INITIAL.
    *  SELECT *
    *  INTO   TABLE LT_CDHDR
    *  FROM   CDHDR
    *  FOR    ALL ENTRIES IN LT_CDPOS
    *  WHERE  OBJECTCLAS = LT_CDPOS-OBJECTCLAS
    *  AND    OBJECTID = LT_CDPOS-OBJECTID
    *  AND    CHANGENR = LT_CDPOS-CHANGENR.
    *ENDIF.
    **  SORT ITAB BY OBJECTCLAS ODJECTID DESCENDING.
    *LOOP AT ITAB.
    *  WRITE: ITAB-UDATE."ITAB-UNAME.
    *ENDLOOP.
    *--- Interne Tabellen -------------------------------------------------
    DATA: BEGIN OF ICDSHW OCCURS 50.       "Ausgabeaufbereitung
            INCLUDE STRUCTURE CDSHW.       "Zwischendatei
    DATA: END OF ICDSHW.
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
         EXPORTING
              DATE_OF_CHANGE    = CDHDR-UDATE
              OBJECTCLASS       = CDHDR-OBJECTCLAS
              OBJECTID          = CDHDR-OBJECTID
              TIME_OF_CHANGE    = CDHDR-UTIME
              USERNAME          = CDHDR-USERNAME
         TABLES
              I_CDHDR           = LT_CDHDR
         EXCEPTIONS
              NO_POSITION_FOUND = 1
              OTHERS            = 2.
    LOOP AT LT_CDHDR.
      CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
        EXPORTING
    *   ARCHIVE_HANDLE                = 0
          CHANGENUMBER                  = LT_CDHDR-CHANGENR
    *   TABLEKEY                      = '00000000 '
    *   TABLENAME                     = ' '
    * IMPORTING
    *   HEADER                        =
       TABLES
         EDITPOS                       = ICDSHW
    *   EDITPOS_WITH_HEADER           =
    * EXCEPTIONS
    *   NO_POSITION_FOUND             = 1
    *   WRONG_ACCESS_TO_ARCHIVE       = 2
    *   OTHERS                        = 3
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT ICDSHW.
        IF ICDSHW-TABKEY+3(10) = '0000001784'
           AND ICDSHW-TABKEY+13(6) = '000001'.
        ENDIF.
      ENDLOOP.
    ENDLOOP.
    Vasanth

  • Anybody know how to find out my unlock code?

    Suddenly my Galaxy Note II Verizon phone is asking for my unlock code. It's never done this before. I don't know what the code is. I went on the Verizon website but all chat agents are busy, and, of course, I can't call them from my phone since it is locked. Is there another way of finding out what my unlock code is?

    Go into the My Verizon web portal, sign in (You must be the account owner) and under your device there is a PUK phone unlock code. http://www.verizonwireless.com
    However if it is your password issued from Google you have to enter your GMAIL password.
    Good Luck

  • How to find out last time, when AE was started?

    Hi guys!
    I need to find out, when was our AE last time started.. Is it possible w/o Visual Admin?
    Thank you!
    Olian

    Hi Olian,
    You need to go into RWB.
    Inside RWB go to Component Monitoring -> Adapter Engine  ->  Adapter monitoring. You will see all the adapter listings there.
    Thanks
    Aashish Sinha
    PS : Reward points if Helped

  • How to find out where my code is running

    Our software can run in EJB or Web Container. Based on its environment it does things differently, For example connection pooling, Transaction Management, etc. Problem is that I cannot figure out a way to make my software smart enough to find out where it is running. Its caller has to pass it a parameter telling it where it is running. I don't like it at all. Can someone please help me to understand what I can do give this functionality to my software i.e to figure out by itself if it is running in WEB container or EJB Container.

    Is there maybe a tell-taling class in one onvironment, which is not there in the other one?
    try {
    Class.forName("tell.taling.one";
    //okay
    catch (Exception e) {
    //oops - not found
    }

  • How to find out obsolete transaction codes?

    Hi,
    Is there any way we can find the obsolete transaction codes in a system.
    Thank you.
    Regards,
    Soumya

    You can try using these tables.
    PRGN_CORR2
    RODIR.

  • How to find out last page in scripts

    hi all,
    i have a problem in SAP scripts.
    if pages increment is dynamic then how to write data in the last page of footer window .
    Thanks & Regards,
    Hari Krishna.K

    Hi...
    Write this code.
    /: IF &NEXTPAGE& EQ 0.
    Last page
    /:ENDIF.
    Regards,
    Suresh......

Maybe you are looking for

  • Birthdays are not visible in calendar in 6300

    When I input a birthday in my Nokia 6300 under a contact it does not appear in my calendar. I seem to recollect that previously it would appear there and also show me the age of the person if I inputed the year of birth correctly. In other words if p

  • Synchronize/Permission Issues With Pacman-Solved

    Hi Friends, I just re-installed Arch (base only) and wanted to get gui. So, I edited pacman.conf and included a directory in "custom" where many packages are saved. I had logged in as root. Now, when I do "pacman -Syu" I get: :: Synchronizing package

  • HT1349 When printing a CD cover in iTunes v 11 the list of tracks overlays? Help?

    Having trouble with the unhelpful new iTunes v11. When printing a CD cover in iTunes v 11 the list of tracks overlays? Help?

  • Choosing mail accounts that go to notification center

    Is there any way to choose which mail accounts go to notification center? I have a few other accounts that I want to keep in the iPad, but I don't want to get notifications.

  • Start GP Process using web services

    Hi, I am trying to start a GP process from a Java EJB project using WSDL created by GP component for a particular template. I have created the deployable client proxy from the WSDL and added the reference in the EJB project. Any idea how to use diffe