<?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: fm CALL FUNCTION 'GUI_DOWNLOAD' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385468#M530021</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Put all the field names in a internal table and pass that ITAB to FIELDNAMES internal tables in TABLES parameter of the fun module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 06:37:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T06:37:02Z</dc:date>
    <item>
      <title>fm CALL FUNCTION 'GUI_DOWNLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385465#M530018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts:&lt;/P&gt;&lt;P&gt;                How to add a field name line in fm 'GUI_DOWNLOAD'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;allen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:30:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385465#M530018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: fm CALL FUNCTION 'GUI_DOWNLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385466#M530019</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;DATA: V_PATH TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_PATH = P_FILE.&lt;/P&gt;&lt;P&gt;**-- Function GUI_DOWNLOAD is used to save the data back in the&lt;/P&gt;&lt;P&gt;**-- flat file from the internal table&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FILENAME                = V_PATH&lt;/P&gt;&lt;P&gt;      FILETYPE                = 'ASC'&lt;/P&gt;&lt;P&gt;      APPEND                  = ' '&lt;/P&gt;&lt;P&gt;      WRITE_FIELD_SEPARATOR   = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB                = I_PIPE&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;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****DO REWARD IF USEFULL&lt;/P&gt;&lt;P&gt;VIJAY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385466#M530019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: fm CALL FUNCTION 'GUI_DOWNLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385467#M530020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the parameter : FIELDNAMES its a table type parameter&lt;/P&gt;&lt;P&gt;append all your fieldnames to it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:36:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385467#M530020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: fm CALL FUNCTION 'GUI_DOWNLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385468#M530021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Put all the field names in a internal table and pass that ITAB to FIELDNAMES internal tables in TABLES parameter of the fun module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:37:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385468#M530021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: fm CALL FUNCTION 'GUI_DOWNLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385469#M530022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;In the Function module FIELDNAMES, you need to pass a Structure which will have the Field name to the FIELDNAMES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-call-function-gui-download/m-p/2385469#M530022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:40:01Z</dc:date>
    </item>
  </channel>
</rss>

