<?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: # problem while reading dataset from application server. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744587#M637950</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pawan Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also got same problem. it Just simple. Open data set in binary mode. This problem is due to new line which is reflected with # symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpful.&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;Sasidhar Reddy Matli.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Aug 2007 05:29:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-31T05:29:18Z</dc:date>
    <item>
      <title># problem while reading dataset from application server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744583#M637946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;I uplodaed a  text file which is tab delimeted, to the application server using transaction code cg3z directly. now that file is stored with # in place of tab(space) in application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my broblem is that when i am reading that file using  READ DATASET  its comming with that # symbol also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how i split that dataset .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if there is any other solution ,like openning file into another mode,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank uou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 05:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744583#M637946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T05:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: # problem while reading dataset from application server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744584#M637947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pawan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The # symbols is a horizontal tab, You use &amp;lt;b&amp;gt;CL_CHAR_ABAP_UTILITIES=&amp;gt;HORIZONTAL_TAB&amp;lt;/b&amp;gt; instead of # symbol to split the dataset.&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;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 05:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744584#M637947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T05:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: # problem while reading dataset from application server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744585#M637948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pawan..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can access the Tab character using CL_CHAR_ABAP_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this After READ DATASET.&lt;/P&gt;&lt;P&gt;DATA : V_RECORD(100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ DATASET P_FILE INTO V_RECORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;SPLIT V_RECORD INTO FIELD1 FIELD2 SEPARATED BY &amp;lt;b&amp;gt;CL_CHAR_ABAP_UTILITIES=&amp;gt;HORIZONTAL_TAB.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;&amp;lt;&amp;lt;&amp;lt;further operations here&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if Helpful.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 05:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744585#M637948</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-31T05:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: # problem while reading dataset from application server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744586#M637949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u need to use opendataset in binary mode  with encoding default..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the LEGACY TEXT MODE ensures that the data is stored and read in the old non-Unicode format. In this mode, it is also possible to read or write non-character-type structures. However, be aware that data loss and conversion errors can occur in Unicode systems if there are characters in the structure that cannot be represented in the non-Unicode codepage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful.............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 05:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744586#M637949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T05:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: # problem while reading dataset from application server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744587#M637950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pawan Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also got same problem. it Just simple. Open data set in binary mode. This problem is due to new line which is reflected with # symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpful.&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;Sasidhar Reddy Matli.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 05:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-reading-dataset-from-application-server/m-p/2744587#M637950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T05:29:18Z</dc:date>
    </item>
  </channel>
</rss>

