<?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 User trace ---Report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330981#M512948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       can any body tell me how can i make a ABAP Report which will give number of users current login to the system.Report also should give number of user login in into the system in the day and for how long time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;imran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 11:28:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T11:28:50Z</dc:date>
    <item>
      <title>User trace ---Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330981#M512948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       can any body tell me how can i make a ABAP Report which will give number of users current login to the system.Report also should give number of user login in into the system in the day and for how long time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;imran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 11:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330981#M512948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T11:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: User trace ---Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330982#M512949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just check the transaction code - SM04 and Functional Pool - KKBL which will help you to get required information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nilesh shete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 11:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330982#M512949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T11:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: User trace ---Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330983#M512950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;USERS log-on data is stored in&amp;lt;b&amp;gt; USR02&amp;lt;/b&amp;gt; Table&lt;/P&gt;&lt;P&gt;Write a select statement for that table you will get all users.&lt;/P&gt;&lt;P&gt;check other USR* tables if needed for further data.&lt;/P&gt;&lt;P&gt;From SM04 Tcode also you will know the Logged on users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 11:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330983#M512950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T11:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: User trace ---Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330984#M512951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use Tcode STAT or ST03 and ST03n or SUIM&lt;/P&gt;&lt;P&gt;in these tcode you will get your required information&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else you can try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: S_TAB LIKE UINFO.&lt;/P&gt;&lt;P&gt;DATA : IT_TAB TYPE TABLE OF S_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'THUSRINFO'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;       USR_TABL       = IT_TAB .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   LOOP AT IT_TAB INTO WA_TAB.&lt;/P&gt;&lt;P&gt;    write:/ wa_tab.&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;   refresh it_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will give the number of user currently logged in the give client of the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will solve your problem and don't forget to reward points,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 12:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-trace-report/m-p/2330984#M512951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T12:18:31Z</dc:date>
    </item>
  </channel>
</rss>

