View the Transactions accessed per month

Hi ,
I wanted to view the list of all the transactions executed in a system in a particular duration.
Please let me know if there is any transactions for the same

Hello Balaji,
This has been asnwered several times on this forum I guess. Anyways
ST03N--->Expert mode-.
Choose the time lines and then go for transaction profile.
Regards.
Ruchit.

Similar Messages

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • I would like to view my data usage per month going back at least 6 months. is it possible?

    I would like to view my data usage per month going back at least 6 months. is it possible?

    Data usage is only available for the past 90 days:
    On the left-hand side of the My Verizon page, click View Bill.
    Use the drop-down to select the appropriate bill.
    Click the Calls/Messages/Data tab.
    Use the drop-down to select the appropriate line (if applicable).
    Click the blue Data button.
    There's also a blue Download to Spreadsheet button below the data logs.

  • How can i change my membership? I pay now 19,99€ each month, but i want to switch to the 12,29€ per month.

    Hi,
    I am a teacher and i bought the membership for 19,99€, last september. Now there is a new offer of 12,29€ per month. Can i switch and how do i do that?
    Ann

    hello Rajshree,
    i cancelled my current mebership and bought the new one at a lower cost. thx fot your support!
    regards,
    Ann
    Verzonden met Windows Mail
    Van: Rajshree
    Verzonden: donderdag 26 juni 2014 12:01
    Aan: Ann Cleuren
    how can i change my membership? I pay now 19,99€ each month, but i want to switch to the 12,29€ per month.
    created by Rajshree in Adobe Creative Cloud - View the full discussion 
    Yes, you can buy the new one now.
    Regards
    Rajshree
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6498799#6498799
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Creative Cloud by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How do I view the transaction log in SQL Server 2008?

    Hello,
    I want to know how to view all the transactions taken during a particular period of time. I know there is a log file, ending with .ldf, created for each database. But how do I view this file?
    Is there any tool in the SQL Server studio that can enable me to view the transactions for a given time period?
    The reason for me wanting to view the log file is that, last week during a power outage, certain amount of data was not written. And one my friend had also messed up some of the data (unfortunately, she doesn't remember what she did).
    Thanks in advance.

    Hi,
     It enables you to read from you transaction log which contains very valuable information about stuff that is happening in your database.
    select
    * from fn_dblog (null,null) ..
    EXAMPLE:
    SELECT
    FROM
    ::fn_dblog(NULL, NULL)
    WHERE
    operation = 'LOP_DELETE_SPLIT'
    Thanks,
    Leks

  • If I purchase PS for the $9.99 per month plan, will I be able to install / use on more than 1 computer?  (i.e. office and home)

    If I purchase PS for the $9.99 per month plan, will I be able to install / use on more than 1 computer?  (i.e. office and home)

    Yes, the subscription license allows for working installations on two machines.

  • I purchased, the 400 minute per month plan. I can'...

    I purchased, the 400 minute per month plan. I can't make a phone call, and talk for two minutes, Without running out of skype credit. There's a problem with your system. I'm not receiving the benefits of what I paid for.
    My regards,
    goodshepherd9

    I think you may need to contact customer service regarding that matter. Just open the link pasted below to see the instructions on how to get in touch with customer service -
    https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    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

  • I bought the 9.99 per month subscription to LR Mobile.  There was a special running that included Photoshop with this subscription.  How do I download and register Photoshop?

    I bought the 9.99 per month subscription to LR Mobile.  There was a special running that included Photoshop with this subscription.  How do I download and register Photoshop?

    If you have the PS+LR bundle, then you should install the Creative Cloud app, first.   One CC is installed, it’ll show all your eligible products on its Apps list, with Install buttons next to the apps you’re licensed to use, and Trial or Try next to the apps you’re not licensed to use.
    The CC app is the first thing on the Adobe Products page.  It is a desktop app, not tablet app. 
    https://www.adobe.com/downloads.html

  • My 30 day Photoshop trial finished yesterday. I purchased the $9.99 per month Photoshop package and received an email saying "Thank you for your payment etc" But when I go to open PS it still says "the trial has expired.."

    My 30 day Photoshop trial finished yesterday. I purchased the $9.99 per month Photoshop package and received an email saying "Thank you for your payment etc" But when I go to open PS it still says "the trial has expired.." Is it supposed to work automatically or is there a step I'm missing?

    1. Close all the Adobe Applications. Log-out from creative.adobe.com and re-login.
    2. Once you launch the software and when you get the error saying the the trial version has expired, you will have an option saying "License this software".
    3. Select this option and enter your credentials and click next.
    Nancy O.

  • I have lightroom.  My photos are stored on an external disk drive with a backup disk.  With iCloud, will all of my photos go to the cloud?  Will I still need the external drives? Is the $9.99 per month for just one year or for always?

    I am an amateur photographer and have lightroom.  My photos are stored on an external disk drive with a backup disk.  With iCloud, will all of my photos go to the cloud?  Will I still need the external drives? Is the $9.99 per month for just one year or for always? 

    If the iTunes database files are on that drive, launch iTunes with the Shift key(Windows) or Option key(Mac OS X) held down, select Choose Library, and navigate to it. The computer may need to be authorized to play protected content, and if the library contains rented movies, those won't play.
    If not, import the content to an iTunes library.
    (100371)

  • If I buy the Rs. 499 per month option, am i eligible to use the phone gap features up to 1 GB?

    If I buy the Rs. 499 per month option, am i eligible to use the phone gap features up to 1 GB?

    What are "phone gap" features?
    Cloud Plans https://creative.adobe.com/plans
    -Special Photography Plan includes Photoshop & Lightroom & Bridge & Mobile Lightroom
    -Special Photography Plan includes 2Gig of Cloud storage (not the 20Gig of the full plan)
    -http://helpx.adobe.com/creative-cloud/faq/mobileapps.html
    -http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • Last week I purchased the $9.99 per month cc and downloaded to my i Mac.  How do I download it to my MacBook Air? I don't to pay an additional $ 9.99 for a second down load to my lap top do I?

    ast week I purchased the $9.99 per month cc and downloaded to my i Mac.  How do I download it to my MacBook Air? I don't to pay an additional $ 9.99 for a second down load to my lap top do I?

    You get activation on up to two computers for your own use.
    Download away!
    Gene

  • Date time in the transaction access log of ST03N

    Hi,
    How do I get date time in the log of transaction access by user.
    in transaction ST03N
    Pls let me know if any other transaction is available there
    I can get transaction access logs userwise.
    Points will be rewarded.
    Thanks

    Hi,
    SM19 - Configuration / SM20 - evaluation (if audit log maintained) will fetch the date and time of tcode accessed by user.
    Rakesh

  • Lightroom 5.7 will not update even through I pay the $9.99 per month for Photoshoto CC and lightroom ?

    Lightroom 5.7 will not update even through I pay thr $9.99 per month for Photoshop CC and Lightroom ?

    Hi Glenys,
    Here's another forum thread that may help (related discussion), if you can't find the new version:
    I have Creative Cloud for Photographers. How do I get Lightroom CC?

  • Does the 12 euro per month package include a full version of lightroom and photoshop

    I wonder if the proposed limited package of 12 euro per month (if submission for a whole year) includes the full version of photoshop and lightroom or is it limited in use ? for exemple maximum of ... hours per month of GB per month etc...?

    Hi DJL-photo ,
    Welcome to Adobe Forums
    The Photoshop Photography Program Plan do not have any limitation of Usage , Its a Subscription with a one year committment where in you will be charged on monthly basis .
    How ever if you want to store any files etc , then we have 20 GB space for storage like in Creative Cloud
    Let us know if that helps !
    Thanks
    Garima
    Message was edited by: Garima.J

Maybe you are looking for

  • Apex 3.2 is not starting

    Hi, My company is running Apex Version - 3.2.0.00.27 on Oracle EE 11.1.0.7.0 for Development. I've changed some settings in listener to make it work for external C library and restarted it. After restarting APEX has stopped running. Is there any rela

  • Error when executing a Query through information Broadcasting

    Dear SDN, We have configured information Broadcasting in the Web Reports--- Scheduled and then when executing the following error is coming 500 internal server error - Microsoft internet explorer Error when processing your request What has happened?

  • Mobileme services has encontered a problem and need to close

    any ideas to resolve this when I open Outlook 2007

  • Broken images links and error in line/column

    HI! I am the proud owner of the Adobe Creative Suite 4 (Web Premium) software package and am learning Web Design through the University of Phoenix online (I am a disabled veteran going for my BA in IT)--I am trying to meet my final requirements for t

  • Partial Interface Implementation.....am I right?

    Hi there everyone, I am reading Ivor Hortons book, "Beginning Java 2 SDK 1.4 Edition". I have just got to the part where he talks about interfaces. I get interfaces, no problem.....but then he goes on about implementing some methods from an interface