LIST of transactions

Hi all,
One of our client wants to have a list of all the transaction added to various roles and the date on which they were added, in last one month.
The requirement is that i have to provide name of the transaction that was added.
Date on which transaction was added
Role in which transaction was added.
Please help me out. I am in a bit of urgency.
Gracias..
Sammy...

Hi Anil,
Eventually i found the solution so didn't bothered to check the reply soon enough.
but the solution you provided was the correct one.
Thank You
Congrats for your first points.
Gracias
Sammy

Similar Messages

  • List of transactions are not available for creation in CRMD_ORDER

    Hai Experts,
    I am trying to create opportunity by using T.Code CRMD_ORDER, Business transaction-Create, Ideally the system shall display the list of transactions that are available(as available in Define Transaction types), but the system is showing only service contracts and not any other transactions, I have checked the roles,every thing fine, and are active in status.It basically a sandbox system,could you suggest me what would have been the problem and resolution for it.
    Thanks and Regards,
    Teja

    Hi Teja,
    I would like to add a point to what Garcia and Jacques suggested.
    By default, if you DONT select ANY channel for any of the Transaction Type, then there is no problem - you will get ALL Transaction to Create. But, even if you select one channel for even one transaction, then only that transaction will be available.
    Since its your sandbox systems, its possible that someone selected the a channel.
    So, in whichever Transaction you wanted, select the UI option and it should be visible to you.
    Regards,
    L

  • How to download list of transaction from SAP area menu in SAP1 transaction

    Hello All,
    My requirement is I want to download the list of transaction under the SAP area menu in SAP1 transaction.
    I tried with SE43, entered area menu as S000, but it doesn't give me of the same hierarchy and some transaction were missing, for example IH08 is available in SAP1 transaction and not available in SE43.
    Could you please let me know is there any way to download the list.
    Regards,
    Thanga

    If you open SE43N, type SAP1 and Display (F7), Tree is shown with collapsed nodes. Print option in Menu shows the same tree as a list. The nodes do not get expanded by default.
    So in order to get expanded tree in list ( so that transaction codes can be seen), you need to expand the tree before choosing Area Menu > Print.
    This works for average area menu which is less number of transactions.
    Since you are looking for SAP1, it has lot of transactions, and on expanding it, information message is shown as:
    The tree could only be partially expanded for performance reasons
    Diagnosis: The hierarchy could not be completely expanded for performance reasons; it has too many subnodes.
    Procedure:
    Restrict the number of nodes to be expanded by expanding a lower-level node
    or
    Expand this node repeatedly until this message no longer appears. The hierarchy is then completely expanded.
    As a result, IH08 transaction which is under Quality Management node can't be seen in list view as overflow occurred before this node was reached.
    On debugging, it can be seen that the tree is expanded recursively by standard until an overflow flag is set.
    In order to get around this overflow protection, you can write a custom code.
    Below snippet is for demonstration purpose.
    1. Run FM BMENU_DISPLAY_RSTREE in SE37 with tree_id as QM01
    2. Run my snippet that calls same FM in the end
    Compare 2 outputs and see the difference.
    I am going 1 level deep and IH08 transaction can be seen in output.
    Similarly, you can write a code that recursively expands every sub-tree found so that entire list can be seen.
    DATA: ls_nodes  TYPE hier_iface,
          lt_nodes  TYPE STANDARD TABLE OF hier_iface,
          lt_nodes1 TYPE STANDARD TABLE OF hier_iface,
          lt_nodes2 TYPE STANDARD TABLE OF hier_iface,
          lt_refs1  TYPE STANDARD TABLE OF hier_ref,
          lt_refs2  TYPE STANDARD TABLE OF hier_ref,
          lt_text1  TYPE STANDARD TABLE OF hier_texts,
          lt_text2  TYPE STANDARD TABLE OF hier_texts,
          lv_tree_id TYPE hier_guid VALUE 'QM01'.
    * read top level node
    CALL FUNCTION 'STREE_HIERARCHY_READ'
      EXPORTING
        structure_id       = lv_tree_id
        read_also_texts    = abap_true
      TABLES
        list_of_nodes      = lt_nodes
        list_of_references = lt_refs2
        list_of_texts      = lt_text2.
    * read hierarchies of sub-trees
    lt_nodes2 = lt_nodes.
    LOOP AT lt_nodes INTO ls_nodes WHERE node_type EQ 'AMRF'.
      CLEAR: lt_nodes1, lt_refs1, lt_text1.
      CALL FUNCTION 'STREE_HIERARCHY_READ'
        EXPORTING
          structure_id       = ls_nodes-reftree_id
          read_also_texts    = abap_true
        TABLES
          list_of_nodes      = lt_nodes1
          list_of_references = lt_refs1
          list_of_texts      = lt_text1.
    * add sub-tree details to main tree
      APPEND LINES OF lt_nodes1 TO lt_nodes2.
      APPEND LINES OF lt_refs1 TO lt_refs2.
      APPEND LINES OF lt_text1 TO lt_text2.
    ENDLOOP.
    CALL FUNCTION 'BMENU_DISPLAY_RSTREE'
      EXPORTING
        tree_id       = lv_tree_id    " Unique ID - 32 Characters
      TABLES
        list_of_nodes = lt_nodes2    " Hierarchy Maintenance Tool Node Passing Interface
        list_of_refs  = lt_refs2     " List of References to Structure Items
        list_of_texts = lt_text2.    " General Structure Repository Node Text

  • Requesting a list of transaction codes with starts from sd and fi..........

    hi,
    sap gurus,
    requesting a list of transaction codes which ends from SD point of view and
    starts with FICO module.
    i.e. which deals with posting of revenues from the customer to A/R.
    plz requesting to find a solution for my question.
    regards,
    balaji.t
    09990019711.

    hi
    T.codes SD
    http://www.sap-img.com/sap-sd/sap-sd-transaction-codes-list.htm
    http://www.sap-img.com/sap-sd/task-specific-sd-transaction-codes.htm
    http://www.sap-img.com/sap-sd/task-specific-sd-transaction-codes-2.htm
    http://www.sap-img.com/sap-sd/sap-sd-tcodes-for-india.htm
    http://www.sap-img.com/sap-sd/link-between-sap-sd-mm-and-fi.htm
    Reports
    http://www.sap-img.com/sap-sd/standard-sap-sd-reports.htm
    Tables :
    http://www.sap-img.com/sap-sd/important-tables-for-sap-sd.htm
    nagesh

  • List of transactions executed in the last one year along with the count

    Hi all,
    I want to find the list of transactions executed in the last one year in my IDES system. Also, i want to find how many times these transactions got executed in the last one year.
    I already saw, ST03 and ST03N tcodes. But im not able to see the correct result there.
    Could anyone tell me whether SM21 or ST03N tcode will be useful for finding the total number of transactions get executed in the last one year and the number of times these got executed..
    If anyone of this useful for my exact requirement, then what are all the correct inputs need to be passed to these transaction?
    When i see the MONI table, i find that it gets stored with some cluster key. How the data from this table will be usefiul for my requirement?
    Or, is there any standard reports available for finding this count?
    Thanks,
    Shanthi

    Hi Michael,
    Thanks for ur reply.
    I have few more clarifications in this.
    When i click the "Standard" transaction profile, it shows a list of dialog pgms and the number of steps. But this count is different from the count which i get it from "Early Watch".
    For example, the "Standard" didn't display the SE38 transaction code for a specific week which i selected. Whereas, "Early watch" displays the SE38 transaction.
    So, which count is correct actually?. What do "standard" and "Early watch" represent?
    Also, i executed a Z transaction today(13.03.2009). But im not able to select today (No application server is avaliable to select for today's date). So how can i check what are all the transactions executed today and how many times this Z transaction executed today, from this transaction.
    Please help me...
    Thanks,
    Shanthi

  • How to find list of transactions for a given component

    Is there any table that holds information about transactions.
    My requirement is to retrieve all transactions for a particular component.e.g. list fo transactions for SD or MM.
    I am into java and have need to develop a program to retrieve teh above information using sap jco.
    Hence if there is any RFC or table holding this info please let me know.
    Thanks and Regards,
    MNGHosh

    Hi
    Let me explain this witha na example.
    Let us assume that one developer received a requirement on Material Management Module.
    (Create Material)
    Step1:
    Go to the Transaction Code : SDMO.
    Step2 :
    Execute SDMO Tcode from SE93 or Press /nSDMO
    Step3:
    It will prompts for you  a Dynamic menu with text box.
    Step3 :
    Enter your required description in that text box and press F8 or press execute button.
    Here Iu2019m entering u201CMaterialu201D as description and pressing F8.
    Step5 :
    We will get the list of Transaction Codes associated with the description u201CMaterialu201D as Follows.
    Step6 :
    In the above list, we will get all Transaction Codes associated with the description u201CMaterialu201D
    Search for your required transaction code based on your need.
    Suppose if our requirement is to create a material then search with the word u201Ccreateu201D in the above list.
    Step7 :
    It will gives you the sub list of Transaction codes associated with Material and Create search terms
    Step6 :
    In the above list, we will get all Transaction Codes associated with the description u201CMaterialu201D
    Search for your required transaction code based on your need.
    Suppose if our requirement is to create a material then search with the word u201Ccreateu201D in the above list.
    Step7 :
    It will gives you the sub list of Transaction codes associated with Material and Create search terms.
    Step8 :
    If you observe the list, we got many Transaction Codes including
    MM01 u2013 Create Material in the Sub list.
    In this way we will get the required Transaction Code using the description only.
    This is applicable to any module.
    Regards,
    Sreeram

  • T code to know the list of transactions run

    Dear experts ,
    What is the tcode to know the list of transactions run .
    Reagrds
    anis

    i dont quite understand what do you mean under "transactions run", but if you want to see the list of transactions running at the present moment you can use transaction SM04
    Regards,
    Sara

  • List of Transactions executed on a particular day.

    Hello Friends,
    Can somebody give some inputs for the following query.
    I want to retrieve the list of transactions run on a particular day.
    ANy help in this regard is highly appreciated.
    Best Regards,
    Sasi.

    Hi Madhu,
    I tried this TCode, but it didn't give me the req. info.
    I'm looking for some report or table, which would give this information since I need to use this in my report.
    Best Regards & Greetings,
    Sasi.

  • No history in the dropdonw list of transaction Code Field

    Hi Expert,
    Now there is no history in the dropdown list of transaction code filed.
    who could tell us how to solve that ?
    Thanks and Regards
    Shubin

    Hi,
    First, please let us know what is the TCode and was the history coming earlier and not coming now or it was not coming from starting. Is it happening only with one SAP login or with any SAP login. If this is coming in one login and not coming with other login then check the user parameters for both logins. Also, check if this issue is happening on one machine with that specific login or in any machine with any login. If this is happening in one PC and not in other then reinstall the SAP GUI in that PC.
    Check this out and let us know.
    Regards,
    Sharath

  • Upgrade list of transactions that changed

    Hi all,
    We are upgrading from 4.6C to ECC 6.0.   Is there somewhere where I can find a complete list of transactions that have changed?  IE have a screen change where our BDC programs will no longer work.
    We'd like to get an idea of how big of an effort the upgrade will be as far as custom programs.  We have some BDCs that can be changed to BAPIs in 4.6C.  But like many of you the work, doesn't stop just because we are going to upgrade.  So rather than change all the BDC programs that we can, it would make sense to only change the ones on the list.
    Thank you,
    Michelle

    That's not quite what I was looking for.  I probably didn't phrase my question well.
    Can anyone tell me the transactions for the screens that have changed in ECC 6.0 from 4.6C?   We have BDCs and are looking for a way to determine which programs will no longer work - prior to having an ECC environment and just running the programs.
    Thank you,
    Michelle

  • How to check list of  transactions used  for a certain period of time

    Hi
    Is there a way to check the transcations that were used e.g the past two months apart from using transaction STAT or sm19 or sm20.
    Thanks

    Hi..  i have got a similar request like yours.... i need to find the list of 
    list of transactions used by all users in a user group (in my case PLKR) in the past two months.
    is this possible to find???

  • Customer and Vendors list without transactions

    Dear All,
    Is there any T-Code to view Customers and Vendors list for which no transactions were done.
    Regards
    KS

    Hi Sudarshan K, 
    --Their is no T.Code for Customer and Vendors list without transactions.
    --T.Code F.1A is Customer / Vendor Statistics
    --Check this link for Customer & Vendor list for account group.
    display vendors and customer as per account group.
    Regards
    Pradeep

  • SRC: List of transactions

    Dear experts,
    Does anyone have a list of all transaction codes use for SAP REACH Compliance (SRC). Also, list of reports, user exits and function modules will be really helpful
    Many thanks and best regards,
    Alberto

    Hi Alberto,
    Please find below a complete list of Transaction Code for SAP REACh Compliance
    /TDAG/CPM00 - Compliance Workbench
    /TDAG/CPM03 - Compliance Workbench - Information only
    /TDAG/CPT01 - Task overview
    /TDAG/CPT01MY - Task Management - My tasks
    /TDAG/CPT02 - Task processing (Reminder, Archive)
    /TDAG/CPR01 - Compliance status for product lists
    /TDAG/CPO00 - Partner adresses
    Task Management T Codes
    /TDAG/CPT01 - Task overview
    /TDAG/CPT01MY - My tasks
    /TDAG/CPT01A - Task overview - Archive
    /TDAG/CPT02 - Task processing (Reminder, Archive)
    /TDAG/CPT03 - Process E-mails and create tasks
    /TDAG/CPT03L - Display Logs from E-mail processing
    Analsis
    /TDAG/CPR01 - Compliance status for product lists
    /TDAG/CPR03 - Compliance status for prod structure
    /TDAG/CPR04 - Product-Pure Substance evaluation
    /TDAG/CPR02 - Regulated substance list
    Address Management
    /TDAG/CPO00 - Partner adresses
    /TDAG/CPO01 - IMDS company data
    /TDAG/CPO02 - IMDS contact persons
    /TDAG/CPX02 - Change Exemption List
    utilities
    Worklist management
    /TDAG/CPW00 - Worklist overview
    /TDAG/CPW01 - Determination of relevant objects
    /TDAG/CPW02 - Execution of the Worklists
    Transfer Bill of Material
    /TDAG/CPB03 - Simulated single transfer
    /TDAG/CPB02 - Bill of material transfer
    /TDAG/CPB02PV - Product variant transfer
    /TDAG/CPB02REACH - Single material transfer for REACH
    Import
    Harmonization
    /TDAG/CPH00 - Global Product Number
    /TDAG/CPH01 - Harmonization Manufacturer
    /TDAG/CPH02 - Harmonization Customer
    /TDAG/CPH03 - Harmonization Manufacturer Product Number
    /TDAG/CPI04 - Import from front end
    /TDAG/CPI03 - Import from application server
    /TDAG/CPI07 - Import Log
    /TDAG/CPI08 - Import of documents
    EXPORT
    /TDAG/CPE00 - Export
    /TDAG/CPE01 - IMDS export processing
    IMDS Connectivity
    /TDAG/CPI02 - IMDS files download
    /TDAG/CPE03 - IMDS result files processing
    /TDAG/CPI06 - Import IMDS application code
    Conversion Service
    /TDAG/CPU02 - Test conversion service - Inbound
    /TDAG/CPU02O - Test conversion service - Outbound
    /TDAG/CPU04 - Test conversion of PDM CSV files
    Settings
    /TDAG/CPI09 - Import Exemptions
    /TDAG/CPU01 - Define content for configuration of DCT
    /TDAG/CPU05 - Load REACH forms into DMS
    /TDAG/CPE04 - Load Excel template into DMS
    I hope you will find this helpful.
    If my answer is satisfactory, Please grant me the points.
    Regards,
    Amol Joshi

  • List of transactions made by login

    Hi,
         Can nybody tell me how can i check how many transactions were done by any login for any number of days

    Hi,
    in sm18 and sm19 you can select the desired parameter with all the details and activate the profile.
    As in you can check the same in sm20.
    It will take 20 min to activate the profile and check later on it will give you a list of transactions including logins.
    Regards
    Mohammed Nizam

  • How to find the list of  transaction code based on a  field ?

    Hi  Gurus
    I have a unique requirement.We are adding a  new field into our system and want to know which all t-code  contains that field ?  So that we can update the  user training manual. Can some one tell me the ways and means of  finding the list of all the t-code ( or where used e.g functional area ) based on  " a field" ?
    Thanks in advance
    SN

    Hi,
    1. Tcode KS02.
    2. click on the text "Cost Center"
    3. hit F1
    4. Click on the technical information
    5. in the next screen double click on Field name :KOSTL
    6. Select the row for the component KOSTL
    7. Click on the display list
    8. In the next screen, in the object name:KBAS
    Drilldown to transactions.
    Here you get a complete list of the transactions.
    Hope its useful.
    thanks.

  • Report to list Inventory transactions according to their Project Code

    Dear Experts,
    Is there any standard report in SAP to list the Inventory transactions according to different Projects?
    If not, please advice me on the query that is necessary for it.
    Much Thanks!
    Warmest Regards,
    Chinho

    Hi!
    You can use Inventory Posting List Report under Inventory Reports.
    Click Expand option on the same and select your project and inventory documents there.

Maybe you are looking for

  • Is there a way to display iPad Mini on TV using Lightning Adapter?

    I can do it with my old iPad but the Mini is reporting that it doesn't recognize the Lightning adapter. I have the HDMI cable plugged into the TV, the other end of the HDMI cable is plugged into an Apple HDMI to 30-pin adapter, and then I have a 30-p

  • How do I create a Skype Name in this new environme...

    For a variety of reasons, I have created a new Microsoft Account. In attempting to set it up with Skype, I was never asked to create a Skype Name. This has created issues sining into Skype, as well as telling people how to Skype me. I do NOT want to

  • IDOC number update in processing log

    Hi My problem is when I run VL02N, although it updates the NAST table with a record dynamically , it does not update NAST-CMFPNR field, hence I cannot find the updated idoc number in the processing log  acceding to NAST-OBJKY.It was showing previuos

  • Premier CC doesn't seem to be the same on two different computers, and won't open my files

    I have CC installed on a macbook pro, and just installed it on a new iMac, and both are using Premier CC, not Premier 6, but I can't open my project on the new iMac as it says that the project was created on a newer version and won't work. This iMac

  • FSCM : FSCM_COMMITMENT_UPDATE_ORDER

    Hello All, We have copied all the methods from example implementation and Methods are triggering. We ignored PI and Used direct update method. But my issue is Credit exposure not updating and FSCM called and message also through. Method FSCM_COMMITME