<?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 BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284932#M785699</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;&lt;/P&gt;&lt;P&gt;          What is the difference between ws_upload and gui_upload ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz anybody ans This Question..................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;P&gt;Pradip Pawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jan 2008 04:41:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-07T04:41:26Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284932#M785699</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;&lt;/P&gt;&lt;P&gt;          What is the difference between ws_upload and gui_upload ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz anybody ans This Question..................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;P&gt;Pradip Pawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 04:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284932#M785699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T04:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284933#M785700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FM ws_download and ws_upload are obsolete. Instead use gui_upload or gui_download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obsoete means SAP is trying to remove the FM in upcoming versions. So, please use FM GUI_UPLOAD or method CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_UPLOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_UPLOAD&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;FILENAME = L_FILE&lt;/P&gt;&lt;P&gt;HAS_FIELD_SEPARATOR = 'X'&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;DATA_TAB = IT_FILE&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_OPEN_ERROR = 1&lt;/P&gt;&lt;P&gt;FILE_READ_ERROR = 2&lt;/P&gt;&lt;P&gt;OTHERS = 18.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE E398(00) WITH 'Error while opening a file'.&lt;/P&gt;&lt;P&gt;ENDIF.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 04:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284933#M785700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T04:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284934#M785701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; This may help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPLOAD, WS_UPLOAD, GUI_UPLOAD, are used in BDC concepts. ie., Batch Data Communication.&lt;/P&gt;&lt;P&gt;Batch Data Conversion is a concept where user can transfer the Data from non SAP to SAP R/3. So , in these various Function Modules are used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPLOAD&amp;#151;- upload a file to the presentation server (PC)&lt;/P&gt;&lt;P&gt;WS_UPLOAD&amp;#151;&amp;#151; Load Files from the Presentation Server to Internal ABAP Tables.&lt;/P&gt;&lt;P&gt;WS means Work Station.&lt;/P&gt;&lt;P&gt;This is used upto SAP 4.6 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUI_UPLOAD&amp;#151;&amp;#151;&amp;#151;- Replaces WS_UPLOAD. Upoad file from presentation server to the app server. From 4.7 SAP version it is replaced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through beloe links it will be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechies.com/gui_-ws_-function-in-background-csv-upload/" target="test_blank"&gt;http://www.saptechies.com/gui_-ws_-function-in-background-csv-upload/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geekinterview.com/question_details/1522" target="test_blank"&gt;http://www.geekinterview.com/question_details/1522&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;B.sowjanya,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;please reward points if it is helpful&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 05:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284934#M785701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T05:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284935#M785702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This gives brief idea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually we these functions through CALL FUNCTION in ABAP Editor(Tcode is se38) to get local data (i.e. the data which is FLAT FILE on ur system) UPLOAD, WS_UPLOAD, GUI_UPLOAD, are used in BDC(Batch Data Communication). This BDC to  transfer the Data from NON-SAP to SAP R/3.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPLOAD, WS_UPLOAD, GUI_UPLOAD, are also called as Function Modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) UPLOAD: is used to upload a Flat File to the presentation server.&lt;/P&gt;&lt;P&gt;2) WS_UPLOAD: is used to Load Files from the Presentation Server to Internal ABAP Tables.&lt;/P&gt;&lt;P&gt;3) UPLOAD, WS_UPLOAD, These are used upto SAP R/3 4.6 version.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   In this after calling a Call Function there is no need of declaring FLAT FLIE NAME  and PATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) GUI_UPLOAD is used to replace WS_UPLOAD. This is used to upload a file from Presentation&lt;/P&gt;&lt;P&gt;    Server to Application Server.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; 5) GUI_UPLOAD, This is used from SAP R/3 4.7 version.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       In this after calling a Call Function there is need of declaring FLAT FLIE NAME  and PATH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:31:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3284935#M785702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:31:38Z</dc:date>
    </item>
  </channel>
</rss>

