<?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: Excel upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527744#M848698</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean Excel is converting '0012' to '12'.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that's so, I don't think you can fix that with gui_download, because excel is treating that data as a numeric type.&lt;/P&gt;&lt;P&gt;Are you just passing the internal table as .xls?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Feb 2008 20:38:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-28T20:38:27Z</dc:date>
    <item>
      <title>Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527740#M848694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hye...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  My input is a parameter which contains the output file destination path.&lt;/P&gt;&lt;P&gt;parameter: p_path type char50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Now i want to upload the data of internal table to the excel in the given path. when i am using fm gui_upload it is eliminating non  values in the cells, it is considering only the non-zero part of the column... if the column has value '0012', the output in the cell is '12'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Please give me any code as how to upload using the directory as input.. urgent..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 28, 2008 3:21 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 20:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527740#M848694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T20:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527741#M848695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to upload the data of internal table to the excel in the given path. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You want to updload the internal table to a Excel file???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you explain...I know that we can upload an Excel to an Internal Table or Download an Internal to an Excel...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 20:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527741#M848695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T20:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527742#M848696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i  want to download the contents of the internal table to the excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 20:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527742#M848696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T20:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527743#M848697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried to change the data types for C...I mean...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of having&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DMBTR TYPE MSEG-DMBTR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DMBTR(15) TYPE C.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That might work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 20:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527743#M848697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T20:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527744#M848698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean Excel is converting '0012' to '12'.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that's so, I don't think you can fix that with gui_download, because excel is treating that data as a numeric type.&lt;/P&gt;&lt;P&gt;Are you just passing the internal table as .xls?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 20:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527744#M848698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T20:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527745#M848699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i am passing the internal table with coloums of char type to .xls.. i knw gui_download is not helping me in that case. i want some other solution.. i also tried 'MS_EXCEL_OLE_STANDARD_DAT' which does not take my input parameter as file_name and also the result is same.. the field is considered as neumeric. any better solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 20:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527745#M848699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T20:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527746#M848700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at this thread&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="749901"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is a really good solution. You can print a character before the number with the leading zeros, one guy gives a series of characters that don't appear in excel.&lt;/P&gt;&lt;P&gt;Is a good solution if no one is going to use that sheet to upload data or manipulate it in for of sums or other numeric functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been thinking of writing a function to download data in xml to excel. Never looked at the blogs, try those, maybe someone tought about the idea first&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 21:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-upload/m-p/3527746#M848700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T21:31:14Z</dc:date>
    </item>
  </channel>
</rss>

