<?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: update data into excel in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610522#M869688</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali..&lt;/P&gt;&lt;P&gt;Thanks For your reply..&lt;/P&gt;&lt;P&gt;my question is..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my itab having the integer values..&lt;/P&gt;&lt;P&gt;whenever I am executing my program it stores the data into excel sheet one by one ..&lt;/P&gt;&lt;P&gt;for that I am using the function module gui_download.&lt;/P&gt;&lt;P&gt;my requirment is..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to give the heading for all the columns.&lt;/P&gt;&lt;P&gt;your answer is ok.if itab having all the value.&lt;/P&gt;&lt;P&gt;for my question itab generate different values in different time.&lt;/P&gt;&lt;P&gt;so i cant move all the datas into itab.&lt;/P&gt;&lt;P&gt;periodically my program generate the values and store it into&lt;/P&gt;&lt;P&gt;excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to give heading for that each column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gowrishankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2008 03:38:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-24T03:38:48Z</dc:date>
    <item>
      <title>update data into excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610520#M869686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using gui_download function module for transfer the data from internal table to excel sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whenever I am executing the program it appends the data into excel sheet perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question id I need to insert the heading in first row..how can i do that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Gowrishankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 02:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610520#M869686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T02:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: update data into excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610521#M869687</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;&lt;/P&gt;&lt;P&gt;Assume this is your final internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;                field1 (20),&lt;/P&gt;&lt;P&gt;                field2(20),&lt;/P&gt;&lt;P&gt;            END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After appending all records to final internal table  write like below.          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE  : 'NAME'        TO  ITAB-field1,&lt;/P&gt;&lt;P&gt;              'NUMBER'    TO  ITAB-field2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT  ITAB INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now GUI_DOWNLOAD.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 02:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610521#M869687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T02:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: update data into excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610522#M869688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali..&lt;/P&gt;&lt;P&gt;Thanks For your reply..&lt;/P&gt;&lt;P&gt;my question is..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my itab having the integer values..&lt;/P&gt;&lt;P&gt;whenever I am executing my program it stores the data into excel sheet one by one ..&lt;/P&gt;&lt;P&gt;for that I am using the function module gui_download.&lt;/P&gt;&lt;P&gt;my requirment is..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to give the heading for all the columns.&lt;/P&gt;&lt;P&gt;your answer is ok.if itab having all the value.&lt;/P&gt;&lt;P&gt;for my question itab generate different values in different time.&lt;/P&gt;&lt;P&gt;so i cant move all the datas into itab.&lt;/P&gt;&lt;P&gt;periodically my program generate the values and store it into&lt;/P&gt;&lt;P&gt;excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to give heading for that each column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gowrishankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 03:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-data-into-excel/m-p/3610522#M869688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T03:38:48Z</dc:date>
    </item>
  </channel>
</rss>

