<?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: Does Filetype 'DBF' work with datatype string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795746#M652607</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohammad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 different methods of downloading the data to the excel file but both of them belong to the download to the Application server.&lt;/P&gt;&lt;P&gt;According to the first method,once the list is saved on the Application server and you go to the T-code AL11,display the list and then go to System at the menu bar and click on List and then Save and then to the Local file as excel format and the data gets downloaded in the excel file.&lt;/P&gt;&lt;P&gt;Secondly,once the list is displayed in the Application server,write the T-code CG3Y and it will prompt you for the location on the Presentation server along with the file format.Give the file format as .XLS and you are done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case,you have any further clarifications,do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Puneet Jhari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Sep 2007 05:01:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-17T05:01:32Z</dc:date>
    <item>
      <title>Does Filetype 'DBF' work with datatype string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795744#M652605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am trying to download to excel using filetype 'DBF' for FM 'GUI_DOWNLOAD'.&lt;/P&gt;&lt;P&gt;the problem is that it does download for the fields which are of type string.&lt;/P&gt;&lt;P&gt;How do u do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way to download to excel as I also want to retain leading zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mohammed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 04:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795744#M652605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T04:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Does Filetype 'DBF' work with datatype string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795745#M652606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;FILENAME = FILENAME&lt;/P&gt;&lt;P&gt;FILETYPE = 'ASC'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = BUFFER&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_WRITE_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_BATCH = 2&lt;/P&gt;&lt;P&gt;GUI_REFUSE_FILETRANSFER = 3&lt;/P&gt;&lt;P&gt;INVALID_TYPE = 4&lt;/P&gt;&lt;P&gt;NO_AUTHORITY = 5&lt;/P&gt;&lt;P&gt;UNKNOWN_ERROR = 6&lt;/P&gt;&lt;P&gt;HEADER_NOT_ALLOWED = 7&lt;/P&gt;&lt;P&gt;SEPARATOR_NOT_ALLOWED = 8&lt;/P&gt;&lt;P&gt;FILESIZE_NOT_ALLOWED = 9&lt;/P&gt;&lt;P&gt;HEADER_TOO_LONG = 10&lt;/P&gt;&lt;P&gt;DP_ERROR_CREATE = 11&lt;/P&gt;&lt;P&gt;DP_ERROR_SEND = 12&lt;/P&gt;&lt;P&gt;DP_ERROR_WRITE = 13&lt;/P&gt;&lt;P&gt;UNKNOWN_DP_ERROR = 14&lt;/P&gt;&lt;P&gt;ACCESS_DENIED = 15&lt;/P&gt;&lt;P&gt;DP_OUT_OF_MEMORY = 16&lt;/P&gt;&lt;P&gt;DISK_FULL = 17&lt;/P&gt;&lt;P&gt;DP_TIMEOUT = 18&lt;/P&gt;&lt;P&gt;FILE_NOT_FOUND = 19&lt;/P&gt;&lt;P&gt;DATAPROVIDER_EXCEPTION = 20&lt;/P&gt;&lt;P&gt;CONTROL_FLUSH_ERROR = 21&lt;/P&gt;&lt;P&gt;OTHERS = 22&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 04:54:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795745#M652606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T04:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Does Filetype 'DBF' work with datatype string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795746#M652607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohammad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 different methods of downloading the data to the excel file but both of them belong to the download to the Application server.&lt;/P&gt;&lt;P&gt;According to the first method,once the list is saved on the Application server and you go to the T-code AL11,display the list and then go to System at the menu bar and click on List and then Save and then to the Local file as excel format and the data gets downloaded in the excel file.&lt;/P&gt;&lt;P&gt;Secondly,once the list is displayed in the Application server,write the T-code CG3Y and it will prompt you for the location on the Presentation server along with the file format.Give the file format as .XLS and you are done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case,you have any further clarifications,do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Puneet Jhari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 05:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/does-filetype-dbf-work-with-datatype-string/m-p/2795746#M652607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T05:01:32Z</dc:date>
    </item>
  </channel>
</rss>

