<?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: Read '.ini' file from Application Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245925#M1720257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yogen, I will try this and update soon. Thanks for your post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2013 11:47:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-01-17T11:47:01Z</dc:date>
    <item>
      <title>Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245915#M1720247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a scenario where I need to import data from file with extension '.ini' in my SAP report from Application Server. I have tried given option in other posts in this forum, but not successful. Please can you provide any FM/ SAP commands/ Code for same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maninder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 06:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245915#M1720247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-17T06:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245916#M1720248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Maninder ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp; DATA : p_infile&amp;nbsp; &lt;SPAN class="L0S52"&gt;LIKE &lt;/SPAN&gt;rlgrap-filename &lt;SPAN class="L0S52"&gt;VALUE&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Application server filename path. ini'&lt;/SPAN&gt;.&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; DATA: ld_file &lt;SPAN class="L0S52"&gt;LIKE &lt;/SPAN&gt;rlgrap-filename.&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; ld_file = p_infile.&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;OPEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;DATASET &lt;/SPAN&gt;ld_file &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INPUT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TEXT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;MODE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ENCODING &lt;/SPAN&gt;DEFAULT.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;sy-subrc &lt;SPAN class="L0S52"&gt;NE &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;0.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ELSE.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DO.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLEAR: lv_string, wa , l_string.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;READ &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;DATASET &lt;/SPAN&gt;ld_file &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;lv_string.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;sy-subrc &lt;SPAN class="L0S52"&gt;NE &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;0.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXIT.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ELSE.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa-string = lv_string.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;wa &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;itab.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDDO.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CLOSE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;DATASET &lt;/SPAN&gt;ld_file.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and moreover you can try with T-code CG3Y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 06:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245916#M1720248</guid>
      <dc:creator>yogendra_bhaskar</dc:creator>
      <dc:date>2013-01-17T06:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245917#M1720249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yogender,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried this code as I mentioned and it does not work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is particular to files with Extn '.ini'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I would like to know the Mode given in attributes of file as '660' and '640'. What they signifies?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 06:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245917#M1720249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-17T06:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245918#M1720250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by "not successful", do you get an error (sy-subrc), a dump (CX_SY_FILE_OPEN or similar exception), wrong data ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 07:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245918#M1720250</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-01-17T07:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245919#M1720251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, Let me explain:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to open the File, But The file format is a problem to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data is not separated by any delimiter. In a row, column values are separated by spaces (no fix count of spaces). For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - ok&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZE1100E2XZ42O001DTA&amp;nbsp;&amp;nbsp; 1-R&amp;nbsp; 2013-01-17 05:30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZE1/M100/D2XZ42/out/DTA/R1DE_SCM_PFU_IF_075*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DA8063&amp;nbsp; P1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want all these values in separate columns. I tried below statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_char(1) type c value cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&amp;nbsp; SPLIT w_data AT w_char INTO lv_string&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_string2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_string3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_string4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is not working. Kindly help me. Please ask for more information if needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 08:18:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245919#M1720251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-17T08:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245920#M1720252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check via debug, is it an actual space or another character like CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB, VERTICAL_TAB, NEWLINE or CR_LF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For information Unicode has technically 26 values for "whitespace" (&lt;A class="external text" href="http://www.unicode.org/versions/Unicode6.0.0/ch04.pdf" rel="nofollow"&gt;Unicode 6.0, Chapter 4.6&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/175368" /&gt;&lt;/P&gt;&lt;P&gt;(&lt;SPAN id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;You&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;are unlikely to&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Meet&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;most&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;of them in&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;one .ini configurarion file)&lt;/SPAN&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 08:55:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245920#M1720252</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-01-17T08:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245921#M1720253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maninder , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u explain how you are creating .ini on aplication server ? or its a default file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;moreover ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;talking about 660 &amp;amp; 640 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this are the access granted for file to (owner, group, others) , every digit for them respectively &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;digits signify as follows :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; no access&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; eXecute&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Write&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Read&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the question arises , why 6 here in 660 &amp;amp; 640 &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;so , its the combination of write (2) &amp;amp; read (4) i.e. 2 + 4 = 6&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 09:00:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245921#M1720253</guid>
      <dc:creator>yogendra_bhaskar</dc:creator>
      <dc:date>2013-01-17T09:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245922#M1720254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems very good information. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, I would like to know If we can read values in a way such that non-space values are stored in columns and spaces are skipped. For ex: OK is stored in first column, and then all spaces (any count, doesn't matter) are skipped and next value is stored in 2nd column untill next bunch of spaces are encountered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the logic is clear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 09:12:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245922#M1720254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-17T09:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245923#M1720255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yogen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The files are coming from Redwood and created in SAP. Thanks for explaining 660,640, but it seems not related to problem here. Kindly read my reply to Raymond and if you have resolution, Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 09:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245923#M1720255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-17T09:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245924#M1720256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi maninder ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try spliting the string at spaces , it would work but before that condense the string .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For help , see below code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;data : str(50) &lt;SPAN class="L0S52"&gt;value &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Hello&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAP&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; India '&lt;/SPAN&gt;, str1(10) , str2(10) , str3(10).&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;write &lt;/SPAN&gt;: / str .&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;condense &lt;/SPAN&gt;str.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;split &lt;/SPAN&gt;str &lt;SPAN class="L0S52"&gt;at &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;` ` &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;str1 str2 str3.&lt;BR /&gt; &lt;BR /&gt; write: / str.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;condense &lt;/SPAN&gt;: str1 , str2 , str3 .&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;write &lt;/SPAN&gt;: / str1 .&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;write &lt;/SPAN&gt;: / str2 .&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;write &lt;/SPAN&gt;: / str3.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 09:28:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245924#M1720256</guid>
      <dc:creator>yogendra_bhaskar</dc:creator>
      <dc:date>2013-01-17T09:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245925#M1720257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yogen, I will try this and update soon. Thanks for your post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 11:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245925#M1720257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-17T11:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Read '.ini' file from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245926#M1720258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to replace all "exotic" spaces with ascii basic space, then SPLIT AT space INTO internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could start with a &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;CALL FUNCTION 'SCP_REPLACE_STRANGE_CHARS'&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; intext&amp;nbsp; = text&lt;/P&gt;&lt;P&gt;&amp;nbsp; IMPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; outtext = text.&lt;/P&gt;&lt;P&gt;CONDENSE text.&lt;/P&gt;&lt;P&gt;SPLIT text AT space INTO TABLE itab.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Look also if some "exotic" spaces were not removed by the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2013 12:16:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-ini-file-from-application-server/m-p/9245926#M1720258</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-01-17T12:16:41Z</dc:date>
    </item>
  </channel>
</rss>

