<?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: Configuration file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274739#M1217598</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;If you've access to the Oracle database tables, u can find this entry in the V$parameter table&lt;/P&gt;&lt;P&gt;execute this query at the db level, u'll find the path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from v$parameter where name like 'utl%'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, this entry is registered in the file at DBS folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks\&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Mar 2009 06:06:43 GMT</pubDate>
    <dc:creator>former_member222860</dc:creator>
    <dc:date>2009-03-19T06:06:43Z</dc:date>
    <item>
      <title>Configuration file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274738#M1217597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a requirement to change the value of a field based on the client iam logged into. I dont want to hardcode this in ABAP. Is there a configuration file with tags specific to the client. To give an example of my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandbox : Folder location is - e:\sap\usr\profiles&lt;/P&gt;&lt;P&gt;DEV      :  Folder location is - k:\sap\dtr\users&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many more such fields whose value depends on the client. So can someone please help me on this.&lt;/P&gt;&lt;P&gt;Thanks in advance.&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;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 05:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274738#M1217597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T05:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274739#M1217598</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;If you've access to the Oracle database tables, u can find this entry in the V$parameter table&lt;/P&gt;&lt;P&gt;execute this query at the db level, u'll find the path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from v$parameter where name like 'utl%'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, this entry is registered in the file at DBS folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks\&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 06:06:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274739#M1217598</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-03-19T06:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274740#M1217599</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;you can create a client dependent table with structure KEY, VALUE and implement simple FM for getting parameter based on KEY. It's pretty simple solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER_A | VALUE_A&lt;/P&gt;&lt;P&gt;PARAMETER_B | VALUE_B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'Z_GET_PARAM'
    EXPORTING
      i_key = 'PARAMETER_A'
    IMPORTING
      e_value = l_variable.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you will have to maintain this table in every client with correct values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 06:12:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/configuration-file/m-p/5274740#M1217599</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2009-03-19T06:12:58Z</dc:date>
    </item>
  </channel>
</rss>

