<?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: write a file by using open dataset in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983762#M72526</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Macy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's one more thing that you need to know here. If tany of the fields in a record of the internal table is &lt;/P&gt;&lt;P&gt;initial, then you will get some alignment problems for the separator (in this case, '|'). For example, if your &lt;/P&gt;&lt;P&gt;internal table has 3 columns and the following entries,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;01	ONE	SUNDAY	
02	TWO	MONDAY
03		TUESDAY
04	FOUR	WEDNESDAY
05	FIVE	THURSDAY
06	SIX	FRIDAY
07		SATURDAY&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then your output in the file is going to look like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;01|ONE|SUNDAY	
02|TWO|MONDAY
03||TUESDAY
04|FOUR|WEDNESDAY
05|FIVE|THURSDAY
06|SIX|FRIDAY
07||SATURDAY&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clearly, this is undesirable. As you can see above, this problem occurs even when the length of the content of the &lt;/P&gt;&lt;P&gt;fields in the internal table is uneven.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I suggest that you do something like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF ITAB OCCURS 0,
        CARRID LIKE SFLIGHT-CARRID,
        SEPARATOR1,
        CONNID LIKE SFLIGHT-CONNID,
        SEPARATOR2,
        FLDATE LIKE SFLIGHT-FLDATE,
      END OF ITAB.

DATA : HEADER(20) VALUE 'SPFLI DETAILS',
       FILENAME(60) VALUE &amp;lt;give the name of the AppServer file here&amp;gt;,
       FILE_LINE(40).


SELECT CARRID
       CONNID
       FLDATE
  FROM SFLIGHT
  INTO CORRESPONDING FIELDS OF TABLE ITAB.

ITAB-SEPARATOR1 = '|'.
ITAB-SEPARATOR2 = '|'.

MODIFY ITAB TRANSPORTING SEPARATOR1 
                         SEPARATOR2 
                   WHERE SEPARATOR1 EQ SPACE.


LOOP AT ITAB.
  AT FIRST.
    OPEN DATASET FILENAME FOR OUTPUT IN TEXT MODE.
    TRANSFER HEADER TO FILENAME.
  ENDAT.
  TRANSFER ITAB TO FILENAME.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that make the point clear. If yes, I wouldn't mind more points :-). Otherwise, please do get back. And I'll &lt;/P&gt;&lt;P&gt;try to help you understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jul 2005 02:48:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-14T02:48:26Z</dc:date>
    <item>
      <title>write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983753#M72517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to write a log from an internal table ITAB to a file in this format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COL1 | COL2 | COL3 | COL4&lt;/P&gt;&lt;P&gt;123    11     ABC      3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:23:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983753#M72517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T10:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983754#M72518</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;Check this link.You can find sample code.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/open_dat.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/open_dat.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:28:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983754#M72518</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-07-13T10:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983755#M72519</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;you can try something like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA HEADER(72).

CONCATENATE 'COL1' 
            'COL2'  
            'COL3'  
            'COL4' 
       INTO HEADER 
  SEPARATED BY SPACE.

LOOP AT ITAB.
  AT FIRST.
    TRANSFER HEADER TO FILENAME.
  ENDAT.
  CONCATENATE ITAB-COL1
              ITAB-COL2
              ITAB-COL3
              ITAB-COL4
         INTO FILE_LINE
    SEPARATED BY '|'.
  TRANSFER FILE_LINE TO FILENAME.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983755#M72519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T10:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983756#M72520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to write to the PC then use GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To the application server use OPEN, TRANSER and CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: file(20) TYPE C value '/usr/test.dat'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET file IN TEXT MODE ENCODING DEFAULT FOR OUTPUT. &lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    TRANSFER ITAB TO file.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOSE DATASET file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:33:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983756#M72520</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-07-13T10:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983757#M72521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Download internal table to Application server file(Unix)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: e_file like rlgrap-filename value '/usr/sap/tmp/file.txt'.      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  open dataset e_file for output in text mode.&lt;/P&gt;&lt;P&gt;  lOOP AT it_datatab......&lt;/P&gt;&lt;P&gt;    transfer it_datatab to e_file.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  close dataset e_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983757#M72521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T10:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983758#M72522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Macy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try to do it dyn. with assign component:&lt;/P&gt;&lt;P&gt;(for big structures like bseg)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) heading: &lt;/P&gt;&lt;P&gt;-get fieldcatalog of your itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; loop at fcat.
   CONCATENATE 'ITAB-' fcat-name INTO hfield.

    ASSIGN (hfield) TO &amp;lt;fs&amp;gt;.
    CONCATENATE str  &amp;lt;fs&amp;gt; INTO str SEPARATED BY space.

 endloop.
 transfer str to file.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) data &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  LOOP AT itab.
    clear str.
    DO.
      ASSIGN COMPONENT sy-index OF STRUCTURE itab TO &amp;lt;fw&amp;gt;.
      IF sy-subrc &amp;lt;&amp;gt; 0.
        EXIT.
      ENDIF.
   CONCATENATE str &amp;lt;fw&amp;gt; INTO str SEPARATED BY space.
  ENDDO.

     transfer str to file.

  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Andreas Mann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983758#M72522</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-07-13T10:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983759#M72523</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 the file using the open dataset statement in output mode.&lt;/P&gt;&lt;P&gt;Then transfer the contents of the internal table to the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code:&lt;/P&gt;&lt;P&gt;open dataset w_dsn for output in text mode encoding default.&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    IF SY-TABIX = 1.&lt;/P&gt;&lt;P&gt;      ITAB5_OUT-MATNR        = 'INPUT MATERIAL #..'.&lt;/P&gt;&lt;P&gt;      ITAB5_OUT-WERKS        = 'POM.'.&lt;/P&gt;&lt;P&gt;      ITAB5_OUT-PHWERKS      = 'PHPL'.&lt;/P&gt;&lt;P&gt;      TRANSFER ITAB5_OUT TO DSN.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING ITAB TO ITAB5_OUT.&lt;/P&gt;&lt;P&gt;    TRANSFER ITAB5_OUT TO DSN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CLOSE DATASET DSN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here itab5_out is the internal table that has the headers.Itab is the internal table that contans the actual data.&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatalakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 10:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983759#M72523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T10:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983760#M72524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand Mandalika, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sample codes are very useful to me. Thanks a lot.&lt;/P&gt;&lt;P&gt;But it can't insert a break when I write the actual content after the header line, i.e. the header and the content line is on the same line in the file.&lt;/P&gt;&lt;P&gt;How to add a break for this?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 01:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983760#M72524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T01:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983761#M72525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Macy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is something that I have not noticed before. But I've found the solution as well. Here's what you need to do - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA HEADER(72).
 
CONCATENATE 'COL1' 
            'COL2'  
            'COL3'  
            'COL4' 
       INTO HEADER 
  SEPARATED BY SPACE.
 
LOOP AT ITAB.
  AT FIRST.
&amp;lt;b&amp;gt;    open dataset filename for output in text mode.&amp;lt;/b&amp;gt;
    TRANSFER HEADER TO FILENAME.
  ENDAT.
  CONCATENATE ITAB-COL1
              ITAB-COL2
              ITAB-COL3
              ITAB-COL4
         INTO FILE_LINE
    SEPARATED BY '|'.
  TRANSFER FILE_LINE TO FILENAME.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only difference to the earlier code, as you can see , is the OPEN DATASET statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 02:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983761#M72525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T02:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: write a file by using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983762#M72526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Macy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's one more thing that you need to know here. If tany of the fields in a record of the internal table is &lt;/P&gt;&lt;P&gt;initial, then you will get some alignment problems for the separator (in this case, '|'). For example, if your &lt;/P&gt;&lt;P&gt;internal table has 3 columns and the following entries,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;01	ONE	SUNDAY	
02	TWO	MONDAY
03		TUESDAY
04	FOUR	WEDNESDAY
05	FIVE	THURSDAY
06	SIX	FRIDAY
07		SATURDAY&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then your output in the file is going to look like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;01|ONE|SUNDAY	
02|TWO|MONDAY
03||TUESDAY
04|FOUR|WEDNESDAY
05|FIVE|THURSDAY
06|SIX|FRIDAY
07||SATURDAY&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clearly, this is undesirable. As you can see above, this problem occurs even when the length of the content of the &lt;/P&gt;&lt;P&gt;fields in the internal table is uneven.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I suggest that you do something like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF ITAB OCCURS 0,
        CARRID LIKE SFLIGHT-CARRID,
        SEPARATOR1,
        CONNID LIKE SFLIGHT-CONNID,
        SEPARATOR2,
        FLDATE LIKE SFLIGHT-FLDATE,
      END OF ITAB.

DATA : HEADER(20) VALUE 'SPFLI DETAILS',
       FILENAME(60) VALUE &amp;lt;give the name of the AppServer file here&amp;gt;,
       FILE_LINE(40).


SELECT CARRID
       CONNID
       FLDATE
  FROM SFLIGHT
  INTO CORRESPONDING FIELDS OF TABLE ITAB.

ITAB-SEPARATOR1 = '|'.
ITAB-SEPARATOR2 = '|'.

MODIFY ITAB TRANSPORTING SEPARATOR1 
                         SEPARATOR2 
                   WHERE SEPARATOR1 EQ SPACE.


LOOP AT ITAB.
  AT FIRST.
    OPEN DATASET FILENAME FOR OUTPUT IN TEXT MODE.
    TRANSFER HEADER TO FILENAME.
  ENDAT.
  TRANSFER ITAB TO FILENAME.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that make the point clear. If yes, I wouldn't mind more points :-). Otherwise, please do get back. And I'll &lt;/P&gt;&lt;P&gt;try to help you understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 02:48:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-a-file-by-using-open-dataset/m-p/983762#M72526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T02:48:26Z</dc:date>
    </item>
  </channel>
</rss>

