<?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 with split where ##  in internal table records. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433931#M207076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay,&lt;/P&gt;&lt;P&gt;what is needed to use for '##'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_split(2) type x value '2323'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_temp into wa_temp.&lt;/P&gt;&lt;P&gt;*SPLIT wa_pdf AT '##' INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;SPLIT wa_temp AT  x_split  INTO TABLE itab.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append lines of itab to itab_final.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have written this code. but subrc =0. data with 5 records should be there.&lt;/P&gt;&lt;P&gt;but it is showing combined record.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 08:13:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T08:13:59Z</dc:date>
    <item>
      <title>Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433925#M207070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;   at the place of '##'  i need to populate the records into internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code.&lt;/P&gt;&lt;P&gt;loop at itab_temp into wa_temp.&lt;/P&gt;&lt;P&gt;*SPLIT wa_pdf AT '##' INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append lines of itab to itab_final.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:41:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433925#M207070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T07:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433926#M207071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          Replace '#' with &amp;lt;b&amp;gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&amp;lt;/b&amp;gt; in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_temp into wa_temp.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SPLIT wa_pdf AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB INTO TABLE ITAB.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append lines of itab to itab_final.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry,As I didnt observe as it is '##', &amp;lt;b&amp;gt;Use &lt;/P&gt;&lt;P&gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_ instead of LFCL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB in the above code.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;'#' is represented as CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vinaykumar G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433926#M207071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T07:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433927#M207072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SPLIT T_FLAT AT &amp;lt;b&amp;gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&amp;lt;/b&amp;gt; THIS REPRESENT #&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;P&gt;VINOD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:49:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433927#M207072</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-06-20T07:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433928#M207073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at itab_temp into wa_temp.
 SPLIT wa_pdf AT &amp;lt;b&amp;gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF&amp;lt;/b&amp;gt; INTO TABLE ITAB

if sy-subrc = 0.
append lines of itab to itab_final.
endif.
endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to check the above code just try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST        .

write CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:55:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433928#M207073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T07:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433929#M207074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;class CL_ABAP_CHAR_UTILITIES unknown . it is saying.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433929#M207074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433930#M207075</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;that means you are on lower version. then you need to use Hex value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433930#M207075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433931#M207076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay,&lt;/P&gt;&lt;P&gt;what is needed to use for '##'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_split(2) type x value '2323'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_temp into wa_temp.&lt;/P&gt;&lt;P&gt;*SPLIT wa_pdf AT '##' INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;SPLIT wa_temp AT  x_split  INTO TABLE itab.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append lines of itab to itab_final.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have written this code. but subrc =0. data with 5 records should be there.&lt;/P&gt;&lt;P&gt;but it is showing combined record.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433931#M207076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with split where ##  in internal table records.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433932#M207077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_split(2) type x value '2323'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_temp into wa_temp.&lt;/P&gt;&lt;P&gt;*SPLIT wa_pdf AT '##' INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;SPLIT wa_temp AT &amp;lt;b&amp;gt;v_split&amp;lt;/b&amp;gt; INTO TABLE itab.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append lines of itab to itab_final.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;it is not X_split , it is v_split.&lt;/P&gt;&lt;P&gt;i don't know 2323 is the hex value for '##'.&lt;/P&gt;&lt;P&gt;Check it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-split-where-in-internal-table-records/m-p/1433932#M207077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:27:00Z</dc:date>
    </item>
  </channel>
</rss>

