<?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 System information in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227805#M138403</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I would like to know if there are standard function modules to get Protocols available on the ABAP R/3 System, The port on which its running, Host Name etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Mar 2006 13:22:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-08T13:22:59Z</dc:date>
    <item>
      <title>System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227805#M138403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I would like to know if there are standard function modules to get Protocols available on the ABAP R/3 System, The port on which its running, Host Name etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:22:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227805#M138403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T13:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227806#M138404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl take a look at the methods available in the class CL_GUI_FRONTEND_SERVICES in SE24.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:33:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227806#M138404</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-08T13:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227807#M138405</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;use this FM &amp;lt;b&amp;gt;SYSTEM_INFO&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;this works in program, directly you can't run it.&lt;/P&gt;&lt;P&gt;if you see this FM you can understand how to pass get the parameters which you need..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want version then you need to pass 'SAP_VERSION' to key, you will get the value. like that all the data....&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;function SYSTEM_INFO.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*"  IMPORTING
*"     VALUE(KEY) TYPE  CLIKE
*"  EXPORTING
*"     VALUE(VALUE) TYPE  SIMPLE
*"----------------------------------------------------------------------
data : begin of TAB occurs 20,
       KEY(21),
       VALUE(69),
       end of TAB.

       case KEY.
          when 'SAP_VERSION'.
             TAB-KEY = 'SAP version'.        "#EC NOTEXT
          when 'SAP_SYSTEM_ID'.
             TAB-KEY = 'SAP system id'.      "#EC NOTEXT
          when 'OPSYS'.
             TAB-KEY = 'operating system'.   "#EC NOTEXT
          when 'MACHINE_TYPE'.
             TAB-KEY = 'machine type'.       "#EC NOTEXT
          when 'DBSYS'.
             TAB-KEY = 'database system'.    "#EC NOTEXT
          when 'DBNAME'.
             TAB-KEY = 'database name'.      "#EC NOTEXT
          when 'DBUSER'.
             TAB-KEY = 'database owner'.     "#EC NOTEXT
          when 'DBHOST'.
             TAB-KEY = 'database host'.      "#EC NOTEXT
          when 'CTYPE'.
             TAB-KEY = 'LC_CTYPE'.           "#EC NOTEXT
          when 'OPSYS_VERSION'.
             TAB-KEY = 'OP system release'.  "#EC NOTEXT
          when 'KERNEL_KIND'.
             TAB-KEY = 'kernel kind'.        "#EC NOTEXT
          when others.
             VALUE = SPACE.
       endcase.

       if TAB-KEY &amp;lt;&amp;gt; SPACE.
          call 'SAPCORE' id 'ID' field 'VERSION'
                         id 'TABLE' field TAB-*SYS*.
          read table TAB with key KEY = TAB-KEY.
          if SY-SUBRC = 0.
             VALUE = TAB-VALUE.
          endif.
       endif.
endfunction.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:35:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227807#M138405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T13:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227808#M138406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murlai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is another FM &amp;lt;b&amp;gt;/SDF/SYSTEM_INFO&amp;lt;/b&amp;gt;, that gives all the info. run it and check.&lt;/P&gt;&lt;P&gt;for this you need not to pass any thing..., you should get all info one shot.&lt;/P&gt;&lt;P&gt;for the &amp;lt;b&amp;gt;system_info&amp;lt;/b&amp;gt; you need to call so many times..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227808#M138406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T13:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227809#M138407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;/SDF/SCSI_GET_SYSTEM_INFO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227809#M138407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T13:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227810#M138408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; The FM doesnot work when I execute, it gives message saying error generating the test frame.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227810#M138408</guid>
      <dc:creator>former_member113639</dc:creator>
      <dc:date>2006-03-08T13:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227811#M138409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i already informed you, it won't work in direct run, you need to call it in your program then only it will work.&lt;/P&gt;&lt;P&gt;any way there is another FM which does the same Job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this FM &amp;lt;b&amp;gt;/SDF/SYSTEM_INFO&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run it directly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 13:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227811#M138409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T13:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227812#M138410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I have already tried this /SDF/SYSTEM_INFO in se37 but I dont find the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227812#M138410</guid>
      <dc:creator>former_member113639</dc:creator>
      <dc:date>2006-03-08T14:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227813#M138411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE 37 , you can use RFC_GET_SYSTEM_INFO &amp;amp; give DESTINATION = 'NONE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regartds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:23:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227813#M138411</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-08T14:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227814#M138412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Thanks this does work, but it doesn't give me the information that I need, If you use the transaction sicf, you can see the HTTP protocol runs on a particular port, the host name and so on. So can I get this information progrmatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227814#M138412</guid>
      <dc:creator>former_member113639</dc:creator>
      <dc:date>2006-03-08T14:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227815#M138413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report  zsys_info                               .

data: value(69).

call function 'SYSTEM_INFO'
  exporting
    key   = 'SAP_VERSION'
  importing
    value = value.
.
write: 'Version ' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'SAP_SYSTEM_ID'
  importing
    value = value.
.
write:/ 'system id' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'MACHINE_TYPE'
  importing
    value = value.
.
write:/ 'Machine type ' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'DBNAME'
  importing
    value = value.
.
write:/ 'DB name' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'DBUSER'
  importing
    value = value.
.
write:/ 'DB user' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'DBUSER'
  importing
    value = value.
.
write:/ 'DB Host' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'CTYPE'
  importing
    value = value.
.
write:/ 'CTYPE' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'OPSYS_VERSION'
  importing
    value = value.
.
write:/ 'OPSYS_VERSION' , value.
call function 'SYSTEM_INFO'
  exporting
    key   = 'KERNEL_KIND'
  importing
    value = value.
.
write:/ 'KERNEL_KIND' , value.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227815#M138413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T14:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227816#M138414</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;in that case you can try this FM' &amp;lt;b&amp;gt;ICF_SYSTEM_INFO&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227816#M138414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T14:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227817#M138415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try ICF_SHOW_PROXY_CONFIGURATION or look at its source code.. you might get some hints on the Tables where the info is stored..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 14:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-information/m-p/1227817#M138415</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-08T14:46:16Z</dc:date>
    </item>
  </channel>
</rss>

