<?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: Another error message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426635#M204469</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its got to be one or the other.  Do you want to split the values into a table or individual fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Into a table.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

SPLIT ORI_DATA AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB
     INTO WA_DATA_DETAIL-PERNR WA_DATA_DETAIL-C_TEXT.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Into individual fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


SPLIT ORI_DATA AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB
     INTO table IT_DATA_DETAIL.
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Jun 2006 20:28:50 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-06-30T20:28:50Z</dc:date>
    <item>
      <title>Another error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426632#M204466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, here is another compile-time error that I can not clear:&lt;/P&gt;&lt;P&gt;SPLIT:  ORI_DATA &lt;/P&gt;&lt;P&gt;        AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;        INTO: &lt;/P&gt;&lt;P&gt;        WA_DATA_DETAIL-PERNR &lt;/P&gt;&lt;P&gt;        WA_DATA_DETAIL-C_TEXT,&lt;/P&gt;&lt;P&gt;        TABLE IT_DATA_DETAIL.&lt;/P&gt;&lt;P&gt;And the error message is:&lt;/P&gt;&lt;P&gt;	"AT ... INTO" expected after "TABLE".		&lt;/P&gt;&lt;P&gt;Anyone knows where the problem is?&lt;/P&gt;&lt;P&gt;Thanks a lot!	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anyi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426632#M204466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T20:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Another error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426633#M204467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can specify both, tables and single fiels in into addition.&lt;/P&gt;&lt;P&gt;Use INTO TABLE only and add WA_DATA_DETAIL-PERNR WA_DATA_DETAIL-C_TEXT to internal table field's list, or put detail of table, example:&lt;/P&gt;&lt;P&gt;INTO&lt;/P&gt;&lt;P&gt;WA_DATA_DETAIL-PERNR &lt;/P&gt;&lt;P&gt;WA_DATA_DETAIL-C_TEXT&lt;/P&gt;&lt;P&gt;IT_DATA_DETAIL-FIELD1&lt;/P&gt;&lt;P&gt;IT_DATA_DETAIL-FIELD2&lt;/P&gt;&lt;P&gt;IT_DATA_DETAIL-FIELD3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426633#M204467</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-06-30T20:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Another error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426634#M204468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Zhu,&lt;/P&gt;&lt;P&gt; Modify it in this way &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;b&amp;gt;SPLIT ORI_DATA &lt;/P&gt;&lt;P&gt;AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;INTO WA_DATA_DETAIL-PERNR WA_DATA_DETAIL-C_TEXT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426634#M204468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T20:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Another error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426635#M204469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its got to be one or the other.  Do you want to split the values into a table or individual fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Into a table.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

SPLIT ORI_DATA AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB
     INTO WA_DATA_DETAIL-PERNR WA_DATA_DETAIL-C_TEXT.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Into individual fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


SPLIT ORI_DATA AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB
     INTO table IT_DATA_DETAIL.
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426635#M204469</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-30T20:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Another error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426636#M204470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and the second way using table is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT ORI_DATA &lt;/P&gt;&lt;P&gt;AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;INTO TABLE IT_DATA_DETAIL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426636#M204470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T20:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Another error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426637#M204471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anyi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        The problem is with &amp;lt;b&amp;gt;:&amp;lt;/b&amp;gt;after INTO clause. Just remove this and check once, it will definitely work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write as follows.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SPLIT ORI_DATA &lt;/P&gt;&lt;P&gt;AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;INTO &lt;/P&gt;&lt;P&gt;WA_DATA_DETAIL-PERNR &lt;/P&gt;&lt;P&gt;WA_DATA_DETAIL-C_TEXT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your intention is MOVE ori_data into table then use the following statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ORT_DATA.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SPILT ORI_DATA AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;INTO TABLE IT_DATA_DETAIL.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To know more about SPILT, Just view the link &lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/split.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/split.htm&lt;/A&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>Sat, 01 Jul 2006 09:50:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-error-message/m-p/1426637#M204471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-01T09:50:41Z</dc:date>
    </item>
  </channel>
</rss>

