<?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: send excel to shared folder in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321618#M1991137</link>
    <description>&lt;P&gt;Hi Sathish,&lt;/P&gt;&lt;P&gt;Thanks for your update.&lt;/P&gt;&lt;P&gt;We'll not stored in AL11. Shared folder is not in SAP system. it's separate storage path, which was provided by our company.&lt;/P&gt;&lt;P&gt;Thanks with Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu M.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jan 2021 07:18:53 GMT</pubDate>
    <dc:creator>vallamuthu_madheswaran2</dc:creator>
    <dc:date>2021-01-12T07:18:53Z</dc:date>
    <item>
      <title>send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321615#M1991134</link>
      <description>&lt;P&gt;Hi Friends,&lt;/P&gt;
  &lt;P&gt;My requirement is that just get the data from the table send the data(excel file) to the shared folder.&lt;/P&gt;
  &lt;P&gt;Kindly provide the steps. I have searched the existing threads but no fruitful result.&lt;/P&gt;
  &lt;P&gt;Thanks with Regards,&lt;/P&gt;
  &lt;P&gt;Vallamuthu M&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 05:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321615#M1991134</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2021-01-12T05:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321616#M1991135</link>
      <description>&lt;P&gt;Hello Vallamuthu Madeswaran,&lt;/P&gt;&lt;P&gt;Pls. find the below code, it may useful to you for this requirement.&lt;/P&gt;&lt;P&gt;REPORT ZFILE.&lt;BR /&gt;TABLES mara.&lt;BR /&gt;data it_mara TYPE TABLE OF mara.&lt;BR /&gt;data wa_mara like LINE OF it_mara.&lt;BR /&gt;data lv_file TYPE rlgrap-filename.&lt;BR /&gt;data lv_data type string.&lt;BR /&gt;&lt;BR /&gt;START-OF-SELECTION.&lt;BR /&gt;SELECT * FROM mara INTO TABLE it_mara UP TO 10 ROWS.&lt;BR /&gt;&lt;BR /&gt;lv_file = 'sample.xls'.&lt;BR /&gt;OPEN DATASET lv_file FOR OUTPUT In TEXT MODE ENCODING DEFAULT.&lt;BR /&gt;loop AT it_mara INTO wa_mara.&lt;BR /&gt;CONCATENATE wa_mara-matnr&lt;BR /&gt; wa_mara-mtart&lt;BR /&gt; wa_mara-mbrsh&lt;BR /&gt; wa_mara-meins&lt;BR /&gt; wa_mara-ernam&lt;BR /&gt; wa_mara-ersda&lt;BR /&gt; INTO lv_data SEPARATED BY ','.&lt;BR /&gt;TRANSFER lv_data to lv_file.&lt;BR /&gt;clear: wa_mara.&lt;BR /&gt;ENDLOOP.&lt;BR /&gt;if sy-subrc IS INITIAL.&lt;BR /&gt;MESSAGE 'File stored to FTP path Successfully' TYPE 'I'.&lt;BR /&gt;ENDIF.&lt;BR /&gt;CLOSE DATASET lv_file.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sathish Kumar Sidhaiyan&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 06:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321616#M1991135</guid>
      <dc:creator>former_member717457</dc:creator>
      <dc:date>2021-01-12T06:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321617#M1991136</link>
      <description>&lt;P&gt;After executing the code the excel file will store into shared file folder and you can check this in Home directory using Transaction AL11.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sathish Kumar Sidhaiyan&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 06:14:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321617#M1991136</guid>
      <dc:creator>former_member717457</dc:creator>
      <dc:date>2021-01-12T06:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321618#M1991137</link>
      <description>&lt;P&gt;Hi Sathish,&lt;/P&gt;&lt;P&gt;Thanks for your update.&lt;/P&gt;&lt;P&gt;We'll not stored in AL11. Shared folder is not in SAP system. it's separate storage path, which was provided by our company.&lt;/P&gt;&lt;P&gt;Thanks with Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu M.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 07:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321618#M1991137</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2021-01-12T07:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321619#M1991138</link>
      <description>&lt;P&gt;Then you need to ask your Basis consultants to map the directory, otherwise you won't be able to write to it.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 09:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321619#M1991138</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2021-01-12T09:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321620#M1991139</link>
      <description>&lt;P&gt;In addition to  &lt;SPAN class="mention-scrubbed"&gt;c5e08e0478aa4727abc4482f5be390b2&lt;/SPAN&gt; 's words, if the shared folder is mapped on users' PC, you can use the download on local file (but you cannot run the report in background, of course)&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 10:19:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321620#M1991139</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2021-01-12T10:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321621#M1991140</link>
      <description>&lt;P&gt;That's a CSV, not an Excel file&lt;/P&gt;&lt;P&gt;It's not going to a shared folder.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 12:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321621#M1991140</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2021-01-12T12:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321622#M1991141</link>
      <description>&lt;P&gt;Hello Vallamuthu,&lt;/P&gt;&lt;P&gt;Try the below FM to download your Internal table records as excel file (Any file path).&lt;/P&gt;&lt;P&gt;FM: MS_EXCEL_OLE_STANDARD_DAT&lt;/P&gt;&lt;P&gt;Also go-through the link.&lt;/P&gt;&lt;P&gt;Internal Table to Excel &lt;A href="http://abaplovers.blogspot.com/2008/05/abap-internal-table-to-excel-sheet.html"&gt;http://abaplovers.blogspot.com/2008/05/abap-internal-table-to-excel-sheet.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sathish Kumar Sidhaiyan&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 12:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321622#M1991141</guid>
      <dc:creator>former_member717457</dc:creator>
      <dc:date>2021-01-12T12:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: send excel to shared folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321623#M1991142</link>
      <description>&lt;P&gt;Hi Sathish,&lt;/P&gt;&lt;P&gt;Thanks for your update.&lt;/P&gt;&lt;P&gt;But it'll not download the file in the background.&lt;/P&gt;&lt;P&gt;Thanks with Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu M&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 11:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-excel-to-shared-folder/m-p/12321623#M1991142</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2021-01-13T11:51:38Z</dc:date>
    </item>
  </channel>
</rss>

