<?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: queery in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019406#M1347373</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 : FNAME LIKE RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Concatenation befor calling GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE M_PATH SY-DATUM SY-UZEIT INTO FNAME&lt;/P&gt;&lt;P&gt;  SEPARATED BY '_'.&lt;/P&gt;&lt;P&gt;  CONCATENATE FNAME '.txt' INTO FNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;           FILENAME                = FNAME&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DATA_TAB                = I_DNLD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anil Katoch on Jul 31, 2009 12:48 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2009 10:47:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-31T10:47:52Z</dc:date>
    <item>
      <title>queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019405#M1347372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;when i use cal function gui_download ,how to get sys date on notepad that is file name as bkpf_extract_20090731.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;swathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 10:43:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019405#M1347372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T10:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019406#M1347373</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 : FNAME LIKE RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Concatenation befor calling GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE M_PATH SY-DATUM SY-UZEIT INTO FNAME&lt;/P&gt;&lt;P&gt;  SEPARATED BY '_'.&lt;/P&gt;&lt;P&gt;  CONCATENATE FNAME '.txt' INTO FNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;           FILENAME                = FNAME&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DATA_TAB                = I_DNLD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anil Katoch on Jul 31, 2009 12:48 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 10:47:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019406#M1347373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T10:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019407#M1347374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Use proper subject line in future&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA : file_name TYPE string.
DATA:file(45) TYPE c .

    CONCATENATE 'C:\' 'bkpf_extract_' sy-datum '.txt' INTO file.
    file_name = file.

    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                        = file_name
       filetype                        = 'ASC'
      TABLES
        data_tab                        = it_data.
   
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 10:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019407#M1347374</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-07-31T10:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019408#M1347375</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;&lt;/P&gt;&lt;P&gt;DATA:wk_file(40) TYPE c,&lt;/P&gt;&lt;P&gt;           wk_file_name TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    CONCATENATE 'C:\' 'bkpf_extract_' sy-datum '.txt' INTO wk_file.&lt;/P&gt;&lt;P&gt;    wk_file_name = wk_file.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        filename                        = wk_file_name&lt;/P&gt;&lt;P&gt;       filetype                        = 'ASC'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                        = &amp;lt;pass your internal table here&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 10:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019408#M1347375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T10:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019409#M1347376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Swathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;First of all Welcome to SDN&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please always use meaningful Subject Line for you Post&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test the code given in above two replies those will solve out your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 10:59:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019409#M1347376</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-07-31T10:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019410#M1347377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Aug 2009 15:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019410#M1347377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-02T15:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019411#M1347378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Dear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you didn't read the [Forum Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/Rules&lt;EM&gt;of&lt;/EM&gt;Engagement] if &lt;STRONG&gt;Yes than please read first carefully&lt;/STRONG&gt; and if &lt;STRONG&gt;No mean you have read than you must read these more carefully&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because you are posting again and again against the &lt;STRONG&gt;Forum Rules&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please always &lt;STRONG&gt;Search Before Posting&lt;/STRONG&gt; and &lt;STRONG&gt;Open New Thread for your Query&lt;/STRONG&gt; but don't think that some one will write all the code for you just try first your end and if face any problem than post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please don't mind just go through this link [Forum Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/Rules&lt;EM&gt;of&lt;/EM&gt;Engagement]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Aug 2009 17:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019411#M1347378</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-08-02T17:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: queery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019412#M1347379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Please read the Rules of Engagement&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Aug 2009 18:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queery/m-p/6019412#M1347379</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-08-02T18:09:34Z</dc:date>
    </item>
  </channel>
</rss>

