<?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 system profile parameters programatically in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594590#M594199</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;PRE&gt;&lt;CODE&gt;
try with fm RFC_SYSTEM_INFO
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jul 2007 17:27:13 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2007-07-30T17:27:13Z</dc:date>
    <item>
      <title>Reading system profile parameters programatically in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594588#M594197</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;Does anyone know how to read system profile parameters like icm/host_name_full using ABAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Erick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 17:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594588#M594197</guid>
      <dc:creator>ErickT</dc:creator>
      <dc:date>2007-07-30T17:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reading system profile parameters programatically in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594589#M594198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the following code to get the values.  Really it is just reading a file which is stored on the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

types: begin of tpar,
       status type sy-index,
       name(60) type c,
       user_wert(60) type c,
       default_wert(60) type c,
       end of tpar.

data: par_usub type table of tpar  with header line.
data: par_sub  type table of tpar  with header line.

call 'C_SAPGALLPARAM' id 'PAR_USUB' field par_usub-*sys*
                      id 'PAR_SUB'  field par_sub-*sys*.


loop at par_usub.
  write:/ par_usub-name(30), par_usub-user_wert(20),
          par_usub-default_wert(20).
endloop.
&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;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 17:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594589#M594198</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-30T17:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reading system profile parameters programatically in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594590#M594199</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;PRE&gt;&lt;CODE&gt;
try with fm RFC_SYSTEM_INFO
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 17:27:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594590#M594199</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-07-30T17:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reading system profile parameters programatically in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594591#M594200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check with Program : RSPARAM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table would be TPFYPROPTY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check with other tables too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if needed see other tables with USR* and AGR_*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see in the table USL* tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 17:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594591#M594200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T17:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reading system profile parameters programatically in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594592#M594201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.. check table :&amp;lt;b&amp;gt;TPFYPROPTY&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;It contains all parameters and their description..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 19:08:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-system-profile-parameters-programatically-in-abap/m-p/2594592#M594201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T19:08:42Z</dc:date>
    </item>
  </channel>
</rss>

