<?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 Not recognizing # while reading the file from application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825533#M1129186</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;I am reading a file from application server. While reading into internal table with read statement the last field in each record is filling with hash symbol in the last digit. If I write any if condition with HASH symbol its not going inside the if condition, means its not recognizing as hash may be its internally treating as some other. I need to remove the hash from that field. How I can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Nov 2008 14:36:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-24T14:36:45Z</dc:date>
    <item>
      <title>Not recognizing # while reading the file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825533#M1129186</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;I am reading a file from application server. While reading into internal table with read statement the last field in each record is filling with hash symbol in the last digit. If I write any if condition with HASH symbol its not going inside the if condition, means its not recognizing as hash may be its internally treating as some other. I need to remove the hash from that field. How I can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 14:36:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825533#M1129186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-24T14:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Not recognizing # while reading the file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825534#M1129187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.. for this you have couple of options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. when the file is writen in App server write it in ASC format, and when you are downloading it use ASC format as well... mostly this will solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. when you are splitting the data into internal table... at the last field find the string length of the file and using offset remove the last character and update ur internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 14:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825534#M1129187</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-24T14:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Not recognizing # while reading the file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825535#M1129188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use &lt;STRONG&gt;WITH WINDOWS LINEFEED&lt;/STRONG&gt; with open data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 14:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825535#M1129188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-24T14:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Not recognizing # while reading the file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825536#M1129189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I faced exact situation. Yes, internally its treated as some other special character. What i did was, becuase hash symbol was always coming at the end...i created a dummy field in my internal table so that it will not interfere with my actual data. When i see the data in my internal table, the hash always falls in the last field (dummy) which i will ignore. I could not get solution to remove this hash so i adopted this approach and it worked!! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;SKJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 14:56:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825536#M1129189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-24T14:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Not recognizing # while reading the file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825537#M1129190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have encountered the same problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we can use the following method to resolve that problem, we did it successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 15:27:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-recognizing-while-reading-the-file-from-application-server/m-p/4825537#M1129190</guid>
      <dc:creator>Adi_Bathineni</dc:creator>
      <dc:date>2009-10-29T15:27:50Z</dc:date>
    </item>
  </channel>
</rss>

