<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Getting the Transaction/Transaction Code Usage data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143915#M452000</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I wonder if anyone could help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement given by the client calls for a report that displays the usage of a transaction code, specifically the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. given the transaction code, the date/time it was last used and the user who used it;&lt;/P&gt;&lt;P&gt;2. given a key date (default current), the list of transaction codes used in the last three months, the user who last used it, also with date and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have looked at the tcode ST03, but it only gives me the list of transaction codes and users who accessed the transaction code.  I need the access date and time in order to meet the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. Ü&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Apr 2007 02:44:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-20T02:44:33Z</dc:date>
    <item>
      <title>Getting the Transaction/Transaction Code Usage data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143915#M452000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I wonder if anyone could help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement given by the client calls for a report that displays the usage of a transaction code, specifically the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. given the transaction code, the date/time it was last used and the user who used it;&lt;/P&gt;&lt;P&gt;2. given a key date (default current), the list of transaction codes used in the last three months, the user who last used it, also with date and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have looked at the tcode ST03, but it only gives me the list of transaction codes and users who accessed the transaction code.  I need the access date and time in order to meet the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. Ü&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 02:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143915#M452000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T02:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Getting the Transaction/Transaction Code Usage data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143916#M452001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;chk this from other thread
also chk the structure   MYLIST for the required informatiuon

report abc.

DATA : MYLIST LIKE UINFO OCCURS 0 WITH HEADER LINE.

PARAMETERS : TCODE LIKE TSTC-TCODE.

CALL FUNCTION 'TH_USER_LIST'
TABLES
LIST = MYLIST.

LOOP AT MYLIST WHERE TCODE = TCODE.
WRITE : / MYLIST-BNAME , MYLIST-TCODE.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 03:39:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143916#M452001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T03:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Getting the Transaction/Transaction Code Usage data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143917#M452002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Chandrasekhar Jagarlamudi  :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you this has been very helpful, although this function returns only the users from the current date, correct?  It a great start, though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would also need something like this given any date, if anyone can help further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 03:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-the-transaction-transaction-code-usage-data/m-p/2143917#M452002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T03:59:56Z</dc:date>
    </item>
  </channel>
</rss>

