<?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 open data set in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323268#M510342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends&lt;/P&gt;&lt;P&gt;i make one file like dat.i use open data set so dat file created &lt;/P&gt;&lt;P&gt;so my question is that where this file is created ?&lt;/P&gt;&lt;P&gt;it will create on applicationserver?&lt;/P&gt;&lt;P&gt;bcoz its not create on my local drive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 07:13:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T07:13:20Z</dc:date>
    <item>
      <title>open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323268#M510342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends&lt;/P&gt;&lt;P&gt;i make one file like dat.i use open data set so dat file created &lt;/P&gt;&lt;P&gt;so my question is that where this file is created ?&lt;/P&gt;&lt;P&gt;it will create on applicationserver?&lt;/P&gt;&lt;P&gt;bcoz its not create on my local drive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323268#M510342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323269#M510343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;        OPEN DATASET stmt is used to open a file on applicaiton server either for reading or writing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: OPEN DATASET &amp;lt;dsn&amp;gt; FOR [OUTPUT/INPUT] ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT in above stmt identifies that we are opening the file for writing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT in above stmt identified that we are opening the file for output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reading Data from Application Server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     open dataset fname for input in text mode encoding default.&lt;/P&gt;&lt;P&gt;     if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;        write:/ 'Unable to open file:', fname.&lt;/P&gt;&lt;P&gt;     else.&lt;/P&gt;&lt;P&gt;        do.&lt;/P&gt;&lt;P&gt;           read datasset fname into &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;           if sy-subrc ne o.&lt;/P&gt;&lt;P&gt;              exit.&lt;/P&gt;&lt;P&gt;           else.&lt;/P&gt;&lt;P&gt;              append &amp;lt;wa&amp;gt; to itab.&lt;/P&gt;&lt;P&gt;           endif.&lt;/P&gt;&lt;P&gt;           close dataset fname.&lt;/P&gt;&lt;P&gt;        enddo.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Writing Data to Application Server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     open dataset fname for output in text mode encoding default.&lt;/P&gt;&lt;P&gt;     if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;        write:/ 'Unable to open file:', fname.&lt;/P&gt;&lt;P&gt;     else.&lt;/P&gt;&lt;P&gt;        loop at itab.&lt;/P&gt;&lt;P&gt;               transfer itab to fname.&lt;/P&gt;&lt;P&gt;        endloop.&lt;/P&gt;&lt;P&gt;        close dataset fname.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info gives you some idea.&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, 11 Jun 2007 07:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323269#M510343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323270#M510344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    yes this fill will be created in the applicationn server . You can see&lt;/P&gt;&lt;P&gt;     that file using transaction AL11 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ***do reward if usefull&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323270#M510344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323271#M510345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Yes &lt;/P&gt;&lt;P&gt;A file will be created on Application server.&lt;/P&gt;&lt;P&gt;We use DATASET concept for reading, writing, transfering data from Local to Application servers.&lt;/P&gt;&lt;P&gt;see the sample code&lt;/P&gt;&lt;P&gt;ABAP code for uploading a TAB delimited file into an internal table. See code below for structures.&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; Report  ZUPLOADTAB                                                  *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&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; Example of Uploading tab delimited file                             *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&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;REPORT  zuploadtab                    .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PARAMETERS: p_infile  LIKE rlgrap-filename&lt;/P&gt;&lt;P&gt;                        OBLIGATORY DEFAULT  '/usr/sap/'..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: ld_file LIKE rlgrap-filename.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*Internal tabe to store upload data&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_record,&lt;/P&gt;&lt;P&gt;    name1 like pa0002-VORNA,&lt;/P&gt;&lt;P&gt;    name2 like pa0002-name2,&lt;/P&gt;&lt;P&gt;    age   type i,&lt;/P&gt;&lt;P&gt;    END OF t_record.&lt;/P&gt;&lt;P&gt;DATA: it_record TYPE STANDARD TABLE OF t_record INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;      wa_record TYPE t_record.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*Text version of data table&lt;/P&gt;&lt;P&gt;TYPES: begin of t_uploadtxt,&lt;/P&gt;&lt;P&gt;  name1(10) type c,&lt;/P&gt;&lt;P&gt;  name2(15) type c,&lt;/P&gt;&lt;P&gt;  age(5)  type c,&lt;/P&gt;&lt;P&gt; end of t_uploadtxt.&lt;/P&gt;&lt;P&gt;DATA: wa_uploadtxt TYPE t_uploadtxt.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*String value to data in initially.&lt;/P&gt;&lt;P&gt;DATA: wa_string(255) type c.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;constants: con_tab TYPE x VALUE '09'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*If you have Unicode check active in program attributes then you will&lt;/P&gt;&lt;P&gt;*need to declare constants as follows:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*class cl_abap_char_utilities definition load.&lt;/P&gt;&lt;P&gt;*constants:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   con_tab  type c value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&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;P&gt;*START-OF-SELECTION&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;ld_file = p_infile.&lt;/P&gt;&lt;P&gt;OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt;    CLEAR: wa_string, wa_uploadtxt.&lt;/P&gt;&lt;P&gt;    READ DATASET ld_file INTO wa_string.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1&lt;/P&gt;&lt;P&gt;                                      wa_uploadtxt-name2&lt;/P&gt;&lt;P&gt;                                      wa_uploadtxt-age.&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING wa_uploadtxt TO wa_upload.&lt;/P&gt;&lt;P&gt;      APPEND wa_upload TO it_record.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;  CLOSE DATASET ld_file.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*END-OF-SELECTION&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*!! Text data is now contained within the internal table IT_RECORD&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Display report data for illustration purposes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  loop at it_record into wa_record.&lt;/P&gt;&lt;P&gt;    write:/     sy-vline,&lt;/P&gt;&lt;P&gt;           (10) wa_record-name1, sy-vline,&lt;/P&gt;&lt;P&gt;           (10) wa_record-name2, sy-vline,&lt;/P&gt;&lt;P&gt;           (10) wa_record-age, sy-vline.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&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>Mon, 11 Jun 2007 07:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323271#M510345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323272#M510346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yeah it definatly create file in application server,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to view this file,&lt;/P&gt;&lt;P&gt;go to T.code al11,&lt;/P&gt;&lt;P&gt;select  dir_home folder, here u can find your open datset file name.&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;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:19:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323272#M510346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323273#M510347</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;for opening the file which resides on the application server we use OPEN DATASET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Creating use this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- Generate Absolute File Name --*&lt;/P&gt;&lt;P&gt;    PERFORM GENERATE_FILEPATH USING 'I'&lt;/P&gt;&lt;P&gt;                                    'O'&lt;/P&gt;&lt;P&gt;                                    ' '&lt;/P&gt;&lt;P&gt;                                    V_PATH_OUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;We concatenate the file path and file name&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CONCATENATE V_PATH_OUT P_FILENM INTO P_FNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;We open the file (dataset) for output on the server&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    OPEN DATASET P_FNAME FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;      PERFORM SSC_ERROR_HANDLER&lt;/P&gt;&lt;P&gt;         USING&lt;/P&gt;&lt;P&gt;            'ZA'                       "Message Id&lt;/P&gt;&lt;P&gt;            '005'                      "Message Number&lt;/P&gt;&lt;P&gt;            'E'                        "Message type&lt;/P&gt;&lt;P&gt;            P_FNAME                    "Message 1&lt;/P&gt;&lt;P&gt;            ' '                        "Message 2&lt;/P&gt;&lt;P&gt;            ' '                        "Message 3&lt;/P&gt;&lt;P&gt;            ' '                        "Message 4&lt;/P&gt;&lt;P&gt;            ' '                        "Mail the error message or no&lt;/P&gt;&lt;P&gt;           'X'                         "log the error Message or no&lt;/P&gt;&lt;P&gt;           ' '                         "Plant&lt;/P&gt;&lt;P&gt;           ' '.                        "Company code&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;We loop at the output table and write out the data to the server file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      IF P_DETAIL EQ 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT I_OUT_REC.&lt;/P&gt;&lt;P&gt;        TRANSFER I_OUT_REC TO P_FNAME LENGTH 256.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      ELSEIF P_SUM EQ 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT D_OUT_REC.&lt;/P&gt;&lt;P&gt;        TRANSFER D_OUT_REC TO P_FNAME LENGTH 256.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      elseif p_sumven eq 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT V_OUT_REC.&lt;/P&gt;&lt;P&gt;        TRANSFER V_OUT_REC TO P_FNAME LENGTH 256.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET P_FNAME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:21:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323273#M510347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323274#M510348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for reply&lt;/P&gt;&lt;P&gt;but if i want make file on my local drive for that what coding i do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323274#M510348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323275#M510349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;PARAMETERS :  p_file   TYPE localfile.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;else hardcode value for p_FILE WHICH IS FOUND IN LOCAL DRIVE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     OPEN DATASET p_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;     *errror msg.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        LOOP AT gt_fichier INTO gs_fichier.&lt;/P&gt;&lt;P&gt;          TRANSFER gs_fichier TO p_file.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;        CLOSE DATASET p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sooness&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:13:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323275#M510349</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-06-11T08:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323276#M510350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi prasanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use FM gui_downlaod to down load to your pc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if userful.&lt;/P&gt;&lt;P&gt;&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;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:30:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323276#M510350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323277#M510351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Datasets whether open, read or write,whatever they are, statements are always used for Application Servers and GUI_UPLOAD and GUI_DOWNLOAD are used for Presentation Servers. So your file will be created on Application Server. Go to AL11 and double click on DIR_HOME to view the file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323277#M510351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323278#M510352</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;What ever the file u created by using OPENDATA SET &amp;lt; name &amp;gt; FOR OUTPUT,&lt;/P&gt;&lt;P&gt;                                                      CLOSEDATA SET &amp;lt;name&amp;gt;.&lt;/P&gt;&lt;P&gt;That file created deffinetly on Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;for creating file on local disc, call these FM&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;download,&lt;/P&gt;&lt;P&gt;ws_download&lt;/P&gt;&lt;P&gt;gui_download&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or call this method...&lt;/P&gt;&lt;P&gt;call method cl_gui_fronend_services=&amp;gt;gui_download&lt;/P&gt;&lt;P&gt;                            exporting &lt;/P&gt;&lt;P&gt;                                          filename = '   ' "provide path where u want to create&lt;/P&gt;&lt;P&gt;                                          file type = 'ASC'&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;Ashokreddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323278#M510352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: open data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323279#M510353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;i done all this things.&lt;/P&gt;&lt;P&gt;but i can't  store file in my local drive and perticular folder.&lt;/P&gt;&lt;P&gt;so what can i do?&lt;/P&gt;&lt;P&gt;plz reply me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-data-set/m-p/2323279#M510353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:28:55Z</dc:date>
    </item>
  </channel>
</rss>

