<?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: Add string to Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666104#M1574585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query here: as i said,i have to download 10 different files. So using perform 'sub_get_download' I am trying to download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For a single file download your logic will work, but here i have to download multiple files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you got my point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2011 04:38:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-02T04:38:30Z</dc:date>
    <item>
      <title>Add string to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666100#M1574581</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 have a requirement to download 10 different TXT files download to desktop. I can do it by using FM 'GUI_DOWNLOAD', but before downloading, we need  to add two lines of information regarding the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example: first_line = ' This file describes about the candidate information'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The string first_line should be added to the file. In the same manner first_line string will have different content for different files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess, my explanation is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have any ideas, please share with me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2011 05:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666100#M1574581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-01T05:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add string to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666101#M1574582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well you are downloading the data to desktop from an internal table using GUI_DOWNLOAD. why not append the internal table with the 2 lines that u need to add before passing it to GUI_DOWNLOAD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2011 06:02:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666101#M1574582</guid>
      <dc:creator>mithun_shetty4</dc:creator>
      <dc:date>2011-03-01T06:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Add string to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666102#M1574583</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 my understanding is correct,&lt;/P&gt;&lt;P&gt;you want to display some text  in file along with the data ,&lt;/P&gt;&lt;P&gt;suppose you hav data in ITAB1 declare one more internal table ITAB2&lt;/P&gt;&lt;P&gt;ITAB2 will hav same fields as ITAB1 but first field will be the text field for ur puspose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose ITAB1 contains A&lt;/P&gt;&lt;P&gt;                                        B&lt;/P&gt;&lt;P&gt;                                        C&lt;/P&gt;&lt;P&gt;                                        D fields&lt;/P&gt;&lt;P&gt;              ITAB2 will be T &lt;/P&gt;&lt;P&gt;                                   A &lt;/P&gt;&lt;P&gt;                                   B&lt;/P&gt;&lt;P&gt;                                   C&lt;/P&gt;&lt;P&gt;                                   D fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB1 has all the required data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB2-T =  'First Line of the file'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-corresponding fields of ITAB1 to ITAB2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now ur ITAB2 contains erquired text and data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you hav any queries on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Sree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2011 06:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666102#M1574583</guid>
      <dc:creator>former_member125931</dc:creator>
      <dc:date>2011-03-01T06:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Add string to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666103#M1574584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2011 06:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666103#M1574584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-01T06:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Add string to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666104#M1574585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query here: as i said,i have to download 10 different files. So using perform 'sub_get_download' I am trying to download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For a single file download your logic will work, but here i have to download multiple files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you got my point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 04:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-string-to-internal-table/m-p/7666104#M1574585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T04:38:30Z</dc:date>
    </item>
  </channel>
</rss>

