<?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: Upload file from presentation server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309320#M505560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check with the Transaction codes&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CG3Y and CG3Z&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&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>Sat, 11 Aug 2007 22:04:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-11T22:04:30Z</dc:date>
    <item>
      <title>Upload file from presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309316#M505556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to upload a file from the presentation server to the application server in the background. I used the function module ARCHIVFILE_CLIENT_TO_SERVER. When I use it in the background it runs successfully, but when I search for the file in AL11, I am unable to find it there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 07:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309316#M505556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T07:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Upload file from presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309317#M505557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;can you post ur code??

DATA: 
l_pcfile LIKE sapb-sappfad, "Desktop file &amp;amp; path
l_serfil LIKE sapb-sappfad. "Server File &amp;amp; path

l_pcfile = 'D:Datatempinput.txt'.
l_serfil = '/tmp/output.txt' .

CALL FUNCTION 'ARCHIVFILE_CLIENT_TO_SERVER'
EXPORTING
path = l_pcfile
targetpath = l_serfil
EXCEPTIONS
error_file = 1
OTHERS = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 07:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309317#M505557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T07:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Upload file from presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309318#M505558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had also tried the same code. But I am not able to see the uploaded file in AL11.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309318#M505558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T09:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: Upload file from presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309319#M505559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Preeti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM 'ARCHIVFILE_CLIENT_TO_SERVER' works perfectly and upon successful run, u can always see the file using AL11. If u say that you are not able to see the file, means either the FM didnt run successfully (exception1 or 2). Please check the program in debug mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Aug 2007 05:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309319#M505559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-11T05:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Upload file from presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309320#M505560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check with the Transaction codes&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CG3Y and CG3Z&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&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>Sat, 11 Aug 2007 22:04:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-file-from-presentation-server/m-p/2309320#M505560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-11T22:04:30Z</dc:date>
    </item>
  </channel>
</rss>

