<?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: Function Modules for uploading the file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335749#M799466</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have given pts to two of the folks as they answered one query each.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Feb 2008 08:43:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-05T08:43:29Z</dc:date>
    <item>
      <title>Function Modules for uploading the file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335745#M799462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts ,&lt;/P&gt;&lt;P&gt;                  I have a requirement to download a file (csv) from my local sytem (say desktop) into an internal table first and then update the contents of the same internal table into the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody provide me with a sample program for doing the same or at least the name of function modules for the same.&lt;/P&gt;&lt;P&gt;Prompt replies will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 08:45:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335745#M799462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T08:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function Modules for uploading the file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335746#M799463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use GUI_UPLOAD for uploading the file and put it in the internal table.&lt;/P&gt;&lt;P&gt;Use INSERT statement for changing the data base table.&lt;/P&gt;&lt;P&gt;Check F1 help for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 08:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335746#M799463</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2008-02-04T08:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function Modules for uploading the file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335747#M799464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit ,&lt;/P&gt;&lt;P&gt;              Do you have any sample program showing how to use the INSERT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 08:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335747#M799464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T08:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function Modules for uploading the file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335748#M799465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhishek,&lt;/P&gt;&lt;P&gt;How to use INSERT Statement..&lt;/P&gt;&lt;P&gt;Check this Sample Program..&lt;/P&gt;&lt;P&gt;TABLES:MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:ITAB LIKE MARA OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB-MATNR = '123ABCDA'. .&lt;/P&gt;&lt;P&gt;ITAB-MBRSH = 'C'.&lt;/P&gt;&lt;P&gt;ITAB-MTART = 'FERT' .&lt;/P&gt;&lt;P&gt;ITAB-MEINS = 'KG' .&lt;/P&gt;&lt;P&gt;APPEND ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB-MATNR = '123ABCDB'. .&lt;/P&gt;&lt;P&gt;ITAB-MBRSH = 'C'.&lt;/P&gt;&lt;P&gt;ITAB-MTART = 'FERT' .&lt;/P&gt;&lt;P&gt;ITAB-MEINS = 'KG' .&lt;/P&gt;&lt;P&gt;APPEND ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INSERT MARA FROM ITAB.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODIFY MARA .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:07:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335748#M799465</guid>
      <dc:creator>former_member188829</dc:creator>
      <dc:date>2008-02-04T09:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Function Modules for uploading the file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335749#M799466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have given pts to two of the folks as they answered one query each.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 08:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-uploading-the-file/m-p/3335749#M799466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T08:43:29Z</dc:date>
    </item>
  </channel>
</rss>

