<?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: internal table - excel file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829114#M662040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rishi,&lt;/P&gt;&lt;P&gt;You can use GUI_download.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 12:17:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T12:17:04Z</dc:date>
    <item>
      <title>internal table - excel file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829110#M662036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to move the contents of internal table to excel file with tab delimited. the excel file should be created dynamically with preloaded header information.the naming of the excel file also should change dynamically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 10:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829110#M662036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T10:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: internal table - excel file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829111#M662037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rishi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During debuggin right click and choose option save as excel or if you want to do it thru program you can use gui_download to do the job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the FM "RH_START_EXCEL_WITH_DATA" if your system has it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR u can use OLE concepts...&lt;/P&gt;&lt;P&gt; also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this out&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/file/file_updownpop.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/file/file_updownpop.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/programs/custom/zdownempdata.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/programs/custom/zdownempdata.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 10:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829111#M662037</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-10-04T10:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: internal table - excel file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829112#M662038</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;Use the below function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAP_CONVERT_TO_XLS_FORMAT'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        I_FIELD_SEPERATOR    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        I_LINE_HEADER        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          i_filename           = p_fname "'D:\file1.xls'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        I_APPL_KEEP          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;          i_tab_sap_data       = input_rec "your internal table&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CHANGING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        I_TAB_CONVERTED_DATA =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CONVERSION_FAILED    = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTHERS               = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 10:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829112#M662038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T10:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: internal table - excel file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829113#M662039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The best way is to do by i_oi_spreadsheet.&lt;/P&gt;&lt;P&gt;It has several features , which makes the task easy. take a look at pkg SOFFICEINTEGRATION which has several examples on how to integrate Excel and ABAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 10:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829113#M662039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T10:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: internal table - excel file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829114#M662040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rishi,&lt;/P&gt;&lt;P&gt;You can use GUI_download.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 12:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829114#M662040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T12:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: internal table - excel file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829115#M662041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,  &lt;/P&gt;&lt;P&gt;U can use the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the below function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAP_CONVERT_TO_XLS_FORMAT',&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 12:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-excel-file/m-p/2829115#M662041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T12:20:32Z</dc:date>
    </item>
  </channel>
</rss>

