<?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 Re: Reading MONI table to obtain tcode usage data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290752#M1725144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response.&amp;nbsp; Does this take into account that the data in the MONI table is encrypted?&amp;nbsp; Basically, I would need the function program that the ST03N tcode uses to decrypt and then show the actual tcode usage information on the screen.&amp;nbsp; Is this program that you suggest going to address that?&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>Thu, 07 Feb 2013 06:19:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-02-07T06:19:58Z</dc:date>
    <item>
      <title>Reading MONI table to obtain tcode usage data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290750#M1725142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help me with the following question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to write a program that reads the MONI table and obtain tcode execution data, basically I need the user id and tcode that was executed.&amp;nbsp; It will be fine if additional information is provided.&amp;nbsp; I know this could be obtained manually thorugh ST03N, but it would take too long to do it manually.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the right function call/program to use here so that we can retrieve that information?&amp;nbsp; It would be great if you have the piece of code to accomplish this and share it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 23:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290750#M1725142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-06T23:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reading MONI table to obtain tcode usage data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290751#M1725143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;***************************************************&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;1. Table MONI field Clustd , contains RAW DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; SO THE FIRST THING IS TO KNOW WHICH KIND OF DATA&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; IE. FIELDS, INTERNAL TABLE ETC.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; IT CONTAINS.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;***************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; This can be known via IMPORT Command.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; Sample Program is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;-&lt;/P&gt;&lt;HR style="color: #333333; font-size: 12px; background-color: #ffffff;" /&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;DATA : CDIR LIKE TABLE OF CDIR WITH HEADER LINE.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;*----&lt;/P&gt;&lt;HR style="color: #333333; font-size: 12px; background-color: #ffffff;" /&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;IMPORT META DATA&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;IMPORT DIRECTORY INTO CDIR FROM DATABASE MONI(DB)&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;ID 'SYSEVENT20041008074601'.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;just look into internal table CDIR, it contains 3 fields.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;1 SY-DATUM -- FIELD&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;2. SY-UZEIT --- FIELD&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;3. V_SYSTEM_EVENT_TAB&amp;nbsp; -- TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;2. NOW TO GET DATA U CAN AGAIN USE IMPORT COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;DATA : MYDATE TYPE SY-DATUM.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;IMPORT SY-DATUM&amp;nbsp; TO MYDATE FROM DATABASE MONI(DB)&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;ID 'SYSEVENT20041008074601'.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;3.&amp;nbsp; JUST TAKE CARE OF&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A: DB&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B: SYSEVENT20041008074601&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A and B should be in your moni table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;4. for the 3rd field, V_SYSTEM_EVENT_TAB&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; I don't know what is the related structure.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; otherwise we can import it in the same way,&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; by declaring an internal table of the related&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;HOPE THIS HELPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Have a look at the link for more discussions&amp;nbsp;&amp;nbsp; &lt;A _jive_internal="true" href="https://answers.sap.com/thread/28323" title="http://scn.sap.com/thread/28323"&gt;http://scn.sap.com/thread/28323&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Vikram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 04:24:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290751#M1725143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-07T04:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reading MONI table to obtain tcode usage data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290752#M1725144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response.&amp;nbsp; Does this take into account that the data in the MONI table is encrypted?&amp;nbsp; Basically, I would need the function program that the ST03N tcode uses to decrypt and then show the actual tcode usage information on the screen.&amp;nbsp; Is this program that you suggest going to address that?&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>Thu, 07 Feb 2013 06:19:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-moni-table-to-obtain-tcode-usage-data/m-p/9290752#M1725144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-07T06:19:58Z</dc:date>
    </item>
  </channel>
</rss>

