<?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: IP Address field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004283#M1344816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rajule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please test the following Sample Code Hope will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ip_address TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;get_ip_address
  RECEIVING
    ip_address           = ip_address
  EXCEPTIONS
    cntl_error           = 1
    error_no_gui         = 2
    not_supported_by_gui = 3
    OTHERS               = 4.

WRITE: 'Your System IP Address is = ', ip_address.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Aug 2009 10:10:37 GMT</pubDate>
    <dc:creator>faisalatsap</dc:creator>
    <dc:date>2009-08-22T10:10:37Z</dc:date>
    <item>
      <title>IP Address field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004280#M1344813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have an situation where i need the system's IP Address not Server IP Address so where I can get that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2009 06:20:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004280#M1344813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-22T06:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: IP Address field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004281#M1344814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try methods from class cl_gui_frontend_services. (in se24)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2009 06:53:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004281#M1344814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-22T06:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: IP Address field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004282#M1344815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF usr_tabl OCCURS 10.
        INCLUDE STRUCTURE uinfo.
DATA: END OF usr_tabl.

DATA th_opcode(1) TYPE x.

DATA: size TYPE i.
CONSTANTS: opcode_list LIKE th_opcode VALUE 2.

CALL 'ThUsrInfo' ID 'OPCODE' FIELD opcode_list
ID 'TAB' FIELD usr_tabl-*sys*.

DESCRIBE TABLE usr_tabl LINES size. " in debug look in usr_tabl you should find IP and comp name aslo&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2009 06:59:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004282#M1344815</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-08-22T06:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: IP Address field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004283#M1344816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rajule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please test the following Sample Code Hope will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ip_address TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;get_ip_address
  RECEIVING
    ip_address           = ip_address
  EXCEPTIONS
    cntl_error           = 1
    error_no_gui         = 2
    not_supported_by_gui = 3
    OTHERS               = 4.

WRITE: 'Your System IP Address is = ', ip_address.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2009 10:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004283#M1344816</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-08-22T10:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: IP Address field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004284#M1344817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Altaf.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2009 11:10:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ip-address-field/m-p/6004284#M1344817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-22T11:10:55Z</dc:date>
    </item>
  </channel>
</rss>

