<?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: Download Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757326#M1461089</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can be done by keeping a shared folder in your system will full authorization provided.&lt;/P&gt;&lt;P&gt;But are you sure that the local computer will  switched on all the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can provide the IP address as path, jus like you give it in your explorer.&lt;/P&gt;&lt;P&gt;Also your server and pc must be in the same domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can aslo use a unix script command for moving the file from app server to presentation, but you must place the file in App server first and the  you have to move it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Apr 2010 09:01:58 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2010-04-12T09:01:58Z</dc:date>
    <item>
      <title>Download Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757322#M1461085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to download file from SAP TO LOCAL PC IN BACKGROUND?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 08:26:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757322#M1461085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T08:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Download Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757323#M1461086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 08:29:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757323#M1461086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T08:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Download Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757324#M1461087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;by direct usage of any function module there is no way of doing it...yet by having a NFS mount on ur local drive u will be able to have download to local via background processing.....i have not worked on this  but have learnt that it is doable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 08:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757324#M1461087</guid>
      <dc:creator>prabhu_s2</dc:creator>
      <dc:date>2010-04-12T08:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Download Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757325#M1461088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Easy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download do not work in backgrnd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the below matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to create or write to a file&lt;/P&gt;&lt;P&gt;Use ABAP statements OPEN DATASET with FOR OUTPUT keyword, TRANSFER, CLOSE DATASET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to read a file&lt;/P&gt;&lt;P&gt;Use ABAP statements OPEN DATASET with FOR INPUT keyword, READ DATASET and CLOSE DATASET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Checking file existence&lt;/P&gt;&lt;P&gt;either OCS_GET_FILE_INFO function module &lt;/P&gt;&lt;P&gt;or "OPEN DATASET" ABAP statement &lt;/P&gt;&lt;P&gt;How to get list of files in a directory&lt;/P&gt;&lt;P&gt;To read the names of files present in a particular path on the application server we may use SUBST_GET_FILE_LIST or EPS_GET_DIRECTORY_LISTING function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a search help for selecting a file&lt;/P&gt;&lt;P&gt;F4_DXFILENAME_TOPRECURSION function module may be used to display a search help to choose a file &lt;/P&gt;&lt;P&gt;Snippet &lt;/P&gt;&lt;P&gt;Best practice&lt;/P&gt;&lt;P&gt;Instead of hardcoding the file names, it is possible to define generic names which are called "logical filenames". They may be defined using FILE transaction code, and used using FILE_GET_NAME function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miscellaneous&lt;/P&gt;&lt;P&gt;sdn contribution : ABAP Server Side File Access, by Thomas Jung (class ZCL_ES_SERVER_FILE_ACCESS) &lt;/P&gt;&lt;P&gt;Note 752859: sapiconv - a tool for converting the encoding of files &lt;/P&gt;&lt;P&gt;Working with files on presentation server&lt;/P&gt;&lt;P&gt;How to create or write a file&lt;/P&gt;&lt;P&gt;either GUI_DOWNLOAD function module &lt;/P&gt;&lt;P&gt;Snippet &lt;/P&gt;&lt;P&gt;or CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_DOWNLOAD method &lt;/P&gt;&lt;P&gt;Snippet &lt;/P&gt;&lt;P&gt;Note: DOWNLOAD and WS_DOWNLOAD function modules are obsolete &lt;/P&gt;&lt;P&gt;How to read a file&lt;/P&gt;&lt;P&gt;either GUI_UPLOAD function module &lt;/P&gt;&lt;P&gt;Snippet &lt;/P&gt;&lt;P&gt;or CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_UPLOAD method &lt;/P&gt;&lt;P&gt;Note: UPLOAD and WS_UPLOAD function modules are obsolete &lt;/P&gt;&lt;P&gt;Checking file existence&lt;/P&gt;&lt;P&gt;either DX_FILE_EXISTENCE_CHECK function module &lt;/P&gt;&lt;P&gt;or CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_EXIST method &lt;/P&gt;&lt;P&gt;How to get list of files in a directory&lt;/P&gt;&lt;P&gt;either TMP_GUI_DIRECTORY_LIST_FILES function module &lt;/P&gt;&lt;P&gt;or CL_GUI_FRONTEND_SERVICES=&amp;gt;DIRECTORY_LIST_FILES method &lt;/P&gt;&lt;P&gt;Is there a search help for selecting a file or directory&lt;/P&gt;&lt;P&gt;For selecting a *file", you may use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG method (Basis, 4.6 and after): displays list as a popup with title "Open", and returns the name of selected file &lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_SAVE_DIALOG method (Basis, 4.6 and after): displays list as a popup with title "Save", and returns the name of selected file &lt;/P&gt;&lt;P&gt;Snippet &lt;/P&gt;&lt;P&gt;WS_FILENAME_GET function module (Basis, any release) &lt;/P&gt;&lt;P&gt;F4_FILENAME function module (R/3 and ECC only) &lt;/P&gt;&lt;P&gt;For selecting a directory, you may use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;DIRECTORY_BROWSE method &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to work in background?&lt;/P&gt;&lt;P&gt;No, this functionality is not supplied because presentation servers may be switched off at any time without guarantee (see Note 7925 - Graphics, Upload, Download do not work in backgrnd).&lt;/P&gt;&lt;P&gt;Workarounds may be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Work with files on application server. The user may copy files from or to the application server when he is connected &lt;/P&gt;&lt;P&gt;If you take decisions to make the presentation server work as a server (always the same computer, and it would be switched on), consider it is an RFC server: see SDN article Communication to Presentation Server in Background Mode for more information.&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;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 08:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757325#M1461088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T08:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Download Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757326#M1461089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can be done by keeping a shared folder in your system will full authorization provided.&lt;/P&gt;&lt;P&gt;But are you sure that the local computer will  switched on all the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can provide the IP address as path, jus like you give it in your explorer.&lt;/P&gt;&lt;P&gt;Also your server and pc must be in the same domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can aslo use a unix script command for moving the file from app server to presentation, but you must place the file in App server first and the  you have to move it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 09:01:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-problem/m-p/6757326#M1461089</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-04-12T09:01:58Z</dc:date>
    </item>
  </channel>
</rss>

