<?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: problems with tab in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399590#M1406049</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Older versions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: delimiter(1) type x value '09'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split &amp;lt;string&amp;gt; at delimiter into &amp;lt;field-list&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delimiter will cause an error if Unicode is enabled...switch unicode off in program attributes if not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better solution already mentioned (ABAP Class method) below for later versions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Dec 2009 13:04:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-09T13:04:23Z</dc:date>
    <item>
      <title>problems with tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399586#M1406045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every body,&lt;/P&gt;&lt;P&gt;I'm trying to process a file which is on the server.&lt;/P&gt;&lt;P&gt;The file has to columns and when i try to fill the data of the columns i realized that i need to identify the tabulation code.&lt;/P&gt;&lt;P&gt;Does anubody know how can i read the data set and identify that 09 key to fill the table in the way i want.&lt;/P&gt;&lt;P&gt;Thanx!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 11:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399586#M1406045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-09T11:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: problems with tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399587#M1406046</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 read the whole line into a structure or a variable, you can process it with the following commands:&lt;/P&gt;&lt;P&gt;SPLIT ls_struc AT ' '.    "you have to put the tabulator char here between the ' '-s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And how can you enter this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use any kind of text editors, personally I prefer the PSPAD freeware text editor (search it with google and download it if you don't have any). Select the tab character and then copy-paste it into your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 12:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399587#M1406046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-09T12:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: problems with tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399588#M1406047</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;Which version of SAP are you in ? If i am not mistaken then from version 4.7 you can use the constant CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB to identify the TABs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has been answered many times before in the forum. You can search it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 12:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399588#M1406047</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-12-09T12:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: problems with tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399589#M1406048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Jon,&lt;/P&gt;&lt;P&gt;                 check out the following code...&lt;/P&gt;&lt;P&gt;DATA str TYPE string&lt;/P&gt;&lt;P&gt;READ DATASAET &amp;lt;dataset_name&amp;gt; into str&lt;/P&gt;&lt;P&gt;SPLIT str AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL TAB into table &amp;lt;internal_table&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 12:42:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399589#M1406048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-09T12:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: problems with tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399590#M1406049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Older versions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: delimiter(1) type x value '09'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split &amp;lt;string&amp;gt; at delimiter into &amp;lt;field-list&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delimiter will cause an error if Unicode is enabled...switch unicode off in program attributes if not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better solution already mentioned (ABAP Class method) below for later versions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 13:04:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-tab/m-p/6399590#M1406049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-09T13:04:23Z</dc:date>
    </item>
  </channel>
</rss>

