<?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: Help!A question about abap. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564440#M857765</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;this is about the logical path and the physical path..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can go to the tcode file for the logical path for the unix server and give it ...there &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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Mar 2008 08:23:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-21T08:23:45Z</dc:date>
    <item>
      <title>Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564432#M857757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi~~~I'm having some trouble about abap, I defined a method as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  download&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM DOWNLOAD.&lt;/P&gt;&lt;P&gt;  DATA: FILENAME type string.&lt;/P&gt;&lt;P&gt;  CONCATENATE '&lt;BR /&gt;192.168.0.28\sap\HuaFu  project\14 Report\SD\ZSDR05_' SY-DATUM  '.XLS' INTO FILENAME.&lt;/P&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 = 'DAT'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB = gdt_header.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     INVALID_FILESIZE    = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     INVALID_TABLE_WIDTH = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     INVALID_TYPE        = 3.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    WRITE: '&amp;amp;#25991;&amp;amp;#20214;&amp;amp;#24050;&amp;amp;#25104;&amp;amp;#21151;&amp;amp;#19979;&amp;amp;#36733;&amp;amp;#21040;',FILENAME.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WRITE: '&amp;amp;#19979;&amp;amp;#36733;&amp;amp;#22833;&amp;amp;#36133;'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "download&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now this method runs successful in my own OS(windows),but it is fail when I define it in the Linux Server,Useing T-CODE SM37 to see , the state show it was canceled. What's wrong with my code,and how to defined the path in linux server,&lt;/P&gt;&lt;P&gt;help,thx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564432#M857757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564433#M857758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi wu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WS_DOWNLOAD,GUI_DOWNLOAD,DOWNLOAD,UPLOAD,&lt;/P&gt;&lt;P&gt;WS_UPLOAD,GUI_UPLOAD  function modules will not work in background mode. Use open dataset ... transfer.. close dataset.. instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Sankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564433#M857758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564434#M857759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Wu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this thread on the SND and hope you getthe needed information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="789855"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:36:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564434#M857759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564435#M857760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Try using some other statemnts like OPEN DATASET, CLOSE DATASET, to upload or download ur file from the application server. And make it a point to translate ur variable containing the file path to lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u out.&lt;/P&gt;&lt;P&gt;Reward ponts if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564435#M857760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564436#M857761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;All &lt;STRONG&gt;GUI&lt;/STRONG&gt; function modules will not work in back ground. U told it was worked for u in ur system. It might be because u ran it in foreground. Try running this in back ground it will not work even in ur system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solusion for ur problem will be first transfer the data into application server and later u have to download it using transaction &lt;STRONG&gt;CG3Y&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below the syntax to download data to application server.&lt;/P&gt;&lt;P&gt;OPEN DATASET l_file FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;IF sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;LOOP AT gdt_header.&lt;/P&gt;&lt;P&gt;TRANSFER gdt_header TO l_file.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CLOSE DATASET l_file.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;MESSAGE ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar Vemuru on Mar 21, 2008 11:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:46:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564436#M857761</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-03-21T05:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564437#M857762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;  Thanks for your replaies.&lt;/P&gt;&lt;P&gt;  But the OPEN DATASET...TRANSFER...CLOSE DATASET function is download a exist file from Application server to the front .&lt;/P&gt;&lt;P&gt;   Now, I hope to resolve how to create a file to application server, the file content is that I get the results. &lt;/P&gt;&lt;P&gt;   Appreciate to get your help. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 07:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564437#M857762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T07:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564438#M857763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the path in linux with backward slashes as this //&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 07:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564438#M857763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T07:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564439#M857764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear K.P.N,&lt;/P&gt;&lt;P&gt;   I try it .but failure. Can not find error message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:06:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564439#M857764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T08:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564440#M857765</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;this is about the logical path and the physical path..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can go to the tcode file for the logical path for the unix server and give it ...there &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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564440#M857765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T08:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564441#M857766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear venkat,&lt;/P&gt;&lt;P&gt;  Your mean is replace the file path '&lt;BR /&gt;192.168.0.28\...\....xls' to '/tmp/....xls'? I have tested this method, but failure. Could you give a example? thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 09:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564441#M857766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T09:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help!A question about abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564442#M857767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;  Please help me.thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 02:13:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-a-question-about-abap/m-p/3564442#M857767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T02:13:53Z</dc:date>
    </item>
  </channel>
</rss>

