<?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: missing tab-delimited functionality in one case when using &amp;quot;collect&amp;quot; comman in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757283#M327980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please clarify what exactly is your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Dec 2006 13:54:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-08T13:54:44Z</dc:date>
    <item>
      <title>missing tab-delimited functionality in one case when using "collect" comman</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757282#M327979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could anyone tell me why I do not have tab-delimited v_download in 1st case(in the second it is ok but there is no collect:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA na LIKE SORTED TABLE OF itab&lt;/P&gt;&lt;P&gt;               WITH UNIQUE KEY budat shkzg hkont with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT dmbtr budat shkzg hkont FROM bsas INTO itab where gjahr ge leto.&lt;/P&gt;&lt;P&gt;COLLECT itab INTO na.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append itab. clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB.&lt;/P&gt;&lt;P&gt;loop at na.&lt;/P&gt;&lt;P&gt;  result-dmbtr = na-dmbtr.&lt;/P&gt;&lt;P&gt;  result-budat = na-budat.&lt;/P&gt;&lt;P&gt;  result-shkzg = na-shkzg.&lt;/P&gt;&lt;P&gt;  result-hkont  = na-hkont.&lt;/P&gt;&lt;P&gt;  append result. clear result .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at result.&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-dmbtr INTO v_download .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-budat INTO v_download SEPARATED BY&lt;/P&gt;&lt;P&gt;  cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-shkzg INTO v_download SEPARATED BY&lt;/P&gt;&lt;P&gt;  cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-hkont INTO v_download SEPARATED BY&lt;/P&gt;&lt;P&gt;  cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append v_download to t_download. clear v_download.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.nd case:&lt;/P&gt;&lt;P&gt;select * from bsas where gjahr ge leto.&lt;/P&gt;&lt;P&gt;        itab-dmbtr = bsas-dmbtr.&lt;/P&gt;&lt;P&gt;        itab-budat = bsas-budat&lt;/P&gt;&lt;P&gt;        itab-shkzg = bsas-shkzg.&lt;/P&gt;&lt;P&gt;        itab-hkont = bsas-hkont.&lt;/P&gt;&lt;P&gt;  append itab. clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  result-dmbtr = itab-dmbtr.&lt;/P&gt;&lt;P&gt;  result-budat = itab-budat.&lt;/P&gt;&lt;P&gt;  result-shkzg = itab-shkzg.&lt;/P&gt;&lt;P&gt;  result-hkont  = itab-hkont.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append result. clear result .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-dmbtr INTO v_download .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-budat INTO v_download SEPARATED BY&lt;/P&gt;&lt;P&gt;  cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE v_download result-shkzg INTO v_download SEPARATED BY&lt;/P&gt;&lt;P&gt;  cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CONCATENATE v_download result-hkont INTO v_download SEPARATED BY&lt;/P&gt;&lt;P&gt;  cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append v_download to t_download. clear v_download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 13:43:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757282#M327979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T13:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: missing tab-delimited functionality in one case when using "collect" comman</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757283#M327980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please clarify what exactly is your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 13:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757283#M327980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T13:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: missing tab-delimited functionality in one case when using "collect" comman</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757284#M327981</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;I can't see any difference u're using the same table RESULT to transfer the data T_DOWNLOAD, so the program should have the same behavior.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you should past all code for both cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 14:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/missing-tab-delimited-functionality-in-one-case-when-using-quot-collect/m-p/1757284#M327981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T14:02:05Z</dc:date>
    </item>
  </channel>
</rss>

