<?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 IP and network id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503008#M1258731</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hye gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  which table stores the login IP and machine name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Is there any way where we can retrieve the login id (network) of the person logged in the pc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : i am not referring to the SAP GUI log in, instead user logged into the system and using SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Imran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Apr 2009 17:32:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-20T17:32:29Z</dc:date>
    <item>
      <title>IP and network id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503008#M1258731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hye gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  which table stores the login IP and machine name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Is there any way where we can retrieve the login id (network) of the person logged in the pc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : i am not referring to the SAP GUI log in, instead user logged into the system and using SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Imran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 17:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503008#M1258731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T17:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: IP and network id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503009#M1258732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Imran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AS i know u can get the IP address and the Computer name...from AL08 transaction or SM04 transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you wan to get the details..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA : th_opcode(1)         TYPE x.
CONSTANTS: opcode_detailed_blk_info        LIKE th_opcode VALUE 76.
DATA:  usr_blksd_tabl TYPE ublksd     OCCURS 1 WITH HEADER LINE.

* Full session details of users logged accessing SAP R/3
  CALL 'ThUsrInfo' ID 'OPCODE' FIELD opcode_detailed_blk_info
       ID 'TAB' FIELD usr_blksd_tabl-*sys*.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 17:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503009#M1258732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T17:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: IP and network id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503010#M1258733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Imran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below code would give you the name of the user logged into the OS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA cWinUser TYPE STRING .
 
CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;GET_USER_NAME
  CHANGING
    USER_NAME            = cWinUser
  EXCEPTIONS
    CNTL_ERROR           = 1
    ERROR_NO_GUI         = 2
    NOT_SUPPORTED_BY_GUI = 3
    OTHERS               = 4.
 
CALL METHOD CL_GUI_CFW=&amp;gt;FLUSH
  EXCEPTIONS
    CNTL_SYSTEM_ERROR = 1
    CNTL_ERROR        = 2
    OTHERS            = 3.
 
WRITE : cWinUser.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you can use CL_GUI_FRONTEND_SERVICES=&amp;gt;GET_IP_ADDRESS to get the IP address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit Purohit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 23:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-and-network-id/m-p/5503010#M1258733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T23:41:18Z</dc:date>
    </item>
  </channel>
</rss>

