<?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: Split download file into multiple files in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716163#M313031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would do it like Chandrasekhar said,&lt;/P&gt;&lt;P&gt;but you have to &amp;lt;b&amp;gt;refresh itab1&amp;lt;/b&amp;gt; not itab.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Sorry Chandrasekhar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Oct 2006 08:54:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-30T08:54:42Z</dc:date>
    <item>
      <title>Split download file into multiple files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716161#M313029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to split my internal table into multiple files when downloading. The split will be determined by contents of a specific field (e.g. create a new file for every unique country, where country is a key field). The number of files to download can only be determined at runtime. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on how i can resolve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 08:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716161#M313029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T08:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Split download file into multiple files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716162#M313030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*declare itab1 same as itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : filename(25).

loop at itab.

&amp;lt;b&amp;gt;  move-corresponding itab to itab1.
  append itab1.&amp;lt;/b&amp;gt;
  
  at end of BUKRS.

        *use GUI_DOWNLOD    FM here
   *pass itab1 every time here
   *change the filename everytime
     concatenate 'Company_' itab-bukrs into filename.
&amp;lt;b&amp;gt;   refresh itab.&amp;lt;/b&amp;gt;
  endat.
  
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 08:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716162#M313030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T08:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Split download file into multiple files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716163#M313031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would do it like Chandrasekhar said,&lt;/P&gt;&lt;P&gt;but you have to &amp;lt;b&amp;gt;refresh itab1&amp;lt;/b&amp;gt; not itab.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Sorry Chandrasekhar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 08:54:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716163#M313031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T08:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Split download file into multiple files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716164#M313032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dieter,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  thx for pointing that , i meant the samething but mistyped.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 08:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716164#M313032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T08:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Split download file into multiple files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716165#M313033</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;Thannks mil! It works like a charm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 09:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716165#M313033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T09:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Split download file into multiple files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716166#M313034</link>
      <description>&lt;P&gt;I am looking for inputs to split data from Open hub into Multiple files based on (Ex- Company Code). I have checked all threads before but did not get concrete answer.&lt;/P&gt;&lt;P&gt;1.For example, I have 20 Company code, need to create 20 Open hub for each company code, So it is possible if we can do it dynamically with one Open hub, we can split multiple files based on company code.(Means 20 files should get generated)&lt;/P&gt;&lt;P&gt;2. Also, Would like to change the AL11 files name dynamically based on Company code.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;KRSRCM&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 10:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-download-file-into-multiple-files/m-p/1716166#M313034</guid>
      <dc:creator>former_member391265</dc:creator>
      <dc:date>2020-04-21T10:38:33Z</dc:date>
    </item>
  </channel>
</rss>

