<?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: application file with more than one #, error while splitting into fields. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174277#M997929</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My6 guess is that ## is being treated as a Unicode character. Looking at Tabs, Line Feeds and Carriage returned these are displayed as #.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the | works why worry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Jul 2008 08:33:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-16T08:33:45Z</dc:date>
    <item>
      <title>application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174274#M997926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data file at application server is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RAJU#SOM#1701 AVENUE#DELI#IN#EN#12345 ---&amp;gt;record1&lt;/P&gt;&lt;P&gt;ARTHUR##1701 NW 23 AVENUE####12345       -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt;record2&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;Read file into work_area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT work_area AT '#' INTO f1&lt;/P&gt;&lt;P&gt;                                           f2&lt;/P&gt;&lt;P&gt;                                           f3&lt;/P&gt;&lt;P&gt;                                           f4 &lt;/P&gt;&lt;P&gt;                                           f5&lt;/P&gt;&lt;P&gt;                                           f6&lt;/P&gt;&lt;P&gt;                                           f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the work_area is seperated by one # then it is splitting and sy-subrc is 0. That is first record is spliting fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the second record. sy-subrc is 4, i.e., this split is not splitting work_area into the 7 fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help out with this urgent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 05:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174274#M997926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T05:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174275#M997927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPLACE ALL OCCURRENCES OF '#' IN work_area WITH '|'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT work_area AT '|' INTO f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;f3&lt;/P&gt;&lt;P&gt;f4 &lt;/P&gt;&lt;P&gt;f5&lt;/P&gt;&lt;P&gt;f6&lt;/P&gt;&lt;P&gt;f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Often on your dataloads we use the pipe field to delimit data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 07:05:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174275#M997927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T07:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174276#M997928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi J,&lt;/P&gt;&lt;P&gt;     Replace ALL OCCURANCE IS NOT WORKING.&lt;/P&gt;&lt;P&gt; THAT IS, # is not replacing with |.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if there is only one # in between 2 fields its replacing.&lt;/P&gt;&lt;P&gt;if there are two # in between its not replacing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain why&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174276#M997928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174277#M997929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My6 guess is that ## is being treated as a Unicode character. Looking at Tabs, Line Feeds and Carriage returned these are displayed as #.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the | works why worry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174277#M997929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174278#M997930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey J,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For two # i.e., ##    replace all occurance and split is not working so can you please tell me any solution to seperate the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174278#M997930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174279#M997931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works so you must have missed a step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZJKSW_TREST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types w_area(252) type c.&lt;/P&gt;&lt;P&gt;data work_area type standard table of w_area with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: f1(20) type c,&lt;/P&gt;&lt;P&gt;      f2(20) type c,&lt;/P&gt;&lt;P&gt;      f3(20) type c,&lt;/P&gt;&lt;P&gt;      f4(20) type c,&lt;/P&gt;&lt;P&gt;      f5(20) type c,&lt;/P&gt;&lt;P&gt;      f6(20) type c,&lt;/P&gt;&lt;P&gt;      f7(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;work_area = 'RAJU#SOM#1701 AVENUE#DELI#IN#EN#12345'.&lt;/P&gt;&lt;P&gt;append work_area.&lt;/P&gt;&lt;P&gt;work_area = 'ARTHUR##1701 NW 23 AVENUE####12345'.&lt;/P&gt;&lt;P&gt;append work_area.&lt;/P&gt;&lt;P&gt;Loop at work_area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  replace all occurrences of '#' in work_area with '|'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT work_area AT '#' INTO f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;f3&lt;/P&gt;&lt;P&gt;f4&lt;/P&gt;&lt;P&gt;f5&lt;/P&gt;&lt;P&gt;f6&lt;/P&gt;&lt;P&gt;f7.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174279#M997931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174280#M997932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ops spotted my typo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT work_area AT &lt;STRONG&gt;'|'&lt;/STRONG&gt; INTO f1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:42:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174280#M997932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174281#M997933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey J its moving only the first field.&lt;/P&gt;&lt;P&gt;and as i said replace all occurance is not working at all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174281#M997933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174282#M997934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works in ECC6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise the old and trusted method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do 6 times&lt;/P&gt;&lt;P&gt; replace '#' with '|' into work_area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 08:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174282#M997934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T08:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174283#M997935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi syed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will not give sy-subrc = 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what it will do is that it will split on every # and your string in f2, f4,f5,f6 will be empty as there is no space between #### in second record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: a type string,&lt;/P&gt;&lt;P&gt;      b type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: f1(20),f2(20),f3(20),f4(20),f5(20),f6(20),f7(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = 'RAJU#SOM#1701 AVENUE#DELI#IN#EN#12345'.&lt;/P&gt;&lt;P&gt;b = 'ARTHUR##1701 NW 23 AVENUE####12345'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT a AT '#' INTO f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;f3&lt;/P&gt;&lt;P&gt;f4&lt;/P&gt;&lt;P&gt;f5&lt;/P&gt;&lt;P&gt;f6&lt;/P&gt;&lt;P&gt;f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ f1,f2,f3,f4,f5,f6,f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT b AT '#' INTO f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;f3&lt;/P&gt;&lt;P&gt;f4&lt;/P&gt;&lt;P&gt;f5&lt;/P&gt;&lt;P&gt;f6&lt;/P&gt;&lt;P&gt;f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ f1,f2,f3,f4,f5,f6,f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174283#M997935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174284#M997936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh no J&lt;/P&gt;&lt;P&gt;DO 6 Times is also not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174284#M997936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174285#M997937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya sachin its filling on the first field i.e., f1.&lt;/P&gt;&lt;P&gt;rest of the fields are empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tel me the solution of this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174285#M997937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174286#M997938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code works on our system so you are not going mad, I cut and pasted it into a test program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test                                                                                &lt;/P&gt;&lt;P&gt;RAJU       SOM        1701 AVENU DELI       IN         EN         12345        &lt;/P&gt;&lt;P&gt;ARTHUR                  1701 NW 23                                          12345        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry can't add the screen print to this&lt;/P&gt;&lt;P&gt;                                                                                I have checked it out - what version of SAP are you on? May be that is the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the file have to be delimited by # what if it is delimited by |.  My concerns are unicode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174286#M997938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174287#M997939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi J,&lt;/P&gt;&lt;P&gt; I am using ECC 6.0&lt;/P&gt;&lt;P&gt;and yes the file is delimited by # only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RAJU#SOM#1701 AVENUE#DELI#IN#EN#12345 ---&amp;gt;record1&lt;/P&gt;&lt;P&gt;ARTHUR##EUM###12345 -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt;record2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;record 1 is working fine.&lt;/P&gt;&lt;P&gt;record 2 giving problem because fields are delimited by more than one #&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174287#M997939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174288#M997940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This has got to be something to do with unicode.  What does the file look like before it is loaded to the application server.  I have seen ',' transfered to the application server as # due to Unicode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174288#M997940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174289#M997941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the file is tab delimited .txt file&lt;/P&gt;&lt;P&gt;which is uploaded into application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is the reason the fields in the application server is seperated by #&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jalaaluddin Syed on Jul 16, 2008 3:10 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174289#M997941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174290#M997942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Definitely a unicode thing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants: Tab_mark(2) type c value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Split at tab_mark.......................etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also when the file is being transfered to the application servce I assume by FTP try different settings maybe IBM.( this is a guess I as Don't have access to FTP stuff'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 09:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174290#M997942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T09:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174291#M997943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey J &lt;/P&gt;&lt;P&gt;there are 2 transfer format 1. is BIN and other is ASC&lt;/P&gt;&lt;P&gt;so i have used both but its delimiting with # only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and can you please explain me wht you have sent in ur last forum&lt;/P&gt;&lt;P&gt;***************************************************&lt;/P&gt;&lt;P&gt;Constants: Tab_mark(2) type c value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Split at tab_mark.......................etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also when the file is being transfered to the application servce I assume by FTP try different settings maybe IBM.( this is a guess I as Don't have access to FTP stuff'.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="60" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 10:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174291#M997943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T10:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174292#M997944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wipee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This appears to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZJKSW_TREST1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants: Tab_mark type string value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:        c_hash type string,&lt;/P&gt;&lt;P&gt;             c_pipe type string.&lt;/P&gt;&lt;P&gt;c_pipe = '|'.&lt;/P&gt;&lt;P&gt;c_hash = '#'.&lt;/P&gt;&lt;P&gt;data : a type string,&lt;/P&gt;&lt;P&gt;       b type string,&lt;/P&gt;&lt;P&gt;       c type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: f1(10),f2(10),f3(10),f4(10),f5(10),f6(10),f7(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'RAJU' tab_mark tab_mark tab_mark tab_mark 'SPRING' tab_mark 'Smith' tab_mark into c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace tab_mark   with c_pipe into c.&lt;/P&gt;&lt;P&gt;replace tab_mark   with c_pipe into c.&lt;/P&gt;&lt;P&gt;replace tab_mark  with c_pipe into c.&lt;/P&gt;&lt;P&gt;replace tab_mark  with c_pipe into c.&lt;/P&gt;&lt;P&gt;replace  tab_mark with c_pipe into c.&lt;/P&gt;&lt;P&gt;replace  tab_mark with c_pipe into c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT c AT '|' INTO f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;f3&lt;/P&gt;&lt;P&gt;f4&lt;/P&gt;&lt;P&gt;f5&lt;/P&gt;&lt;P&gt;f6&lt;/P&gt;&lt;P&gt;f7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ f1,f2,f3,f4,f5,f6,f7.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 10:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174292#M997944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T10:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: application file with more than one #, error while splitting into fields.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174293#M997945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Julie Waller,&lt;/P&gt;&lt;P&gt;it solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Thanks alot &lt;/P&gt;&lt;P&gt;       Syed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 10:38:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-file-with-more-than-one-error-while-splitting-into-fields/m-p/4174293#M997945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T10:38:49Z</dc:date>
    </item>
  </channel>
</rss>

