<?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: Writing data into a file on Application Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685468#M1292162</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dagny,&lt;/P&gt;&lt;P&gt;You are right, it doesn't. I tweaked the data declaration a little bit and introduced a dummy field at the end of the file_struc. This dummy field will help retain the data fields including the filler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
DATA : BEGIN OF file_struc OCCURS 0,
        f1(2) TYPE c,
        f2(10) TYPE c,
        f3(10) TYPE c,  
        filler(10) TYPE c,       " Filler
        dummy TYPE c,       " To retain the filler , do not populate this field.
END OF file_struc.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the above change, I ran the program ,even without writing to AS, it transferes 32 characters to the file, truncating the last dummy field.&lt;/P&gt;&lt;P&gt;Sometimes you need to fool the system in order to get things working -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jun 2009 07:11:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-11T07:11:05Z</dc:date>
    <item>
      <title>Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685459#M1292153</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;I need to write data into a file on application server. &lt;/P&gt;&lt;P&gt;The data is a combination of various fields from a table. If the last few fields of the table are empty ( that is there is no data in them ) , blank spaces should appear in them. &lt;/P&gt;&lt;P&gt;Moreoer in my case the last field is a FILLER ( Which is always EMPTY ).&lt;/P&gt;&lt;P&gt;But in such cases no blank spaces are appearing and the line stops where the last filled field stops ( This can be verified by downloading the file as .txt into presentation server ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please explain how can the blank spaces be retained when writing into file on application server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a Lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 13:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685459#M1292153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T13:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685460#M1292154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try saving as a .csv file with comma or semicolon as the separator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 13:13:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685460#M1292154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T13:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685461#M1292155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try by writing to fill the FILLER for the fields that are having no values so that the FILLLER is making the line filled but with no data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 13:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685461#M1292155</guid>
      <dc:creator>former_member242255</dc:creator>
      <dc:date>2009-06-10T13:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685462#M1292156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Specify the length when transfering the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  z_file_filler                           .


DATA path(30) TYPE c VALUE '/zsap/vsp//tmp/file_temp.txt'.

DATA : BEGIN OF file_struc,
        f1(2) TYPE c,
        f2(10) TYPE c,
        f3(10) TYPE c,
        filler(10),
END OF file_struc.

DATA file_data(32) TYPE c.

file_struc-f1 = 'AB'.
file_struc-f2 = '1234567890'.
file_struc-f3 = ''.

MOVE file_struc TO file_data.

OPEN DATASET path FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
IF sy-subrc = 0.
  TRANSFER file_struc TO path LENGTH 32.  "Speicy the total length to transfer.
  CLOSE DATASET path.
ENDIF.

WRITE file_struc.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After running this program, the file lenght is 33.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, still when you download the file to local PC it truncates the data. So the original file is what you write using transfer, it is only when you download using System list &lt;DEL&gt;&amp;gt;Save&lt;/DEL&gt;&amp;gt; local file it truncates the filler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Advait Gode on Jun 10, 2009 3:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 13:31:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685462#M1292156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T13:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685463#M1292157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also changed the program to use GUI_DOWNLOAD after writing the file to the application server, to download the file to the presentation server. And it retains the spaces then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA path(30) TYPE c VALUE '/zsap/vsp//tmp/file_temp.txt'.

DATA : BEGIN OF file_struc OCCURS 0,
        f1(2) TYPE c,
        f2(10) TYPE c,
        f3(10) TYPE c,
        filler(10),
END OF file_struc.

file_struc-f1 = 'AB'.
file_struc-f2 = '1234567890'.
file_struc-f3 = ''.


OPEN DATASET path FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
IF sy-subrc = 0.
  TRANSFER file_struc TO path  LENGTH 32.
  CLOSE DATASET path.
ENDIF.

CLEAR file_struc.
REFRESH file_struc.

OPEN DATASET path FOR INPUT IN TEXT MODE ENCODING DEFAULT.
IF sy-subrc = 0.
  READ DATASET path INTO file_struc.
  CLOSE DATASET path.
ENDIF.

APPEND file_struc.

CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    filename                        =  'C:\temp\file.txt'
    filetype                        = 'ASC'
  TABLES
    data_tab                        =  file_struc
 EXCEPTIONS
   FILE_WRITE_ERROR                = 1
   NO_BATCH                        = 2
   GUI_REFUSE_FILETRANSFER         = 3
   INVALID_TYPE                    = 4
   NO_AUTHORITY                    = 5
   UNKNOWN_ERROR                   = 6
   HEADER_NOT_ALLOWED              = 7
   SEPARATOR_NOT_ALLOWED           = 8
   FILESIZE_NOT_ALLOWED            = 9
   HEADER_TOO_LONG                 = 10
   DP_ERROR_CREATE                 = 11
   DP_ERROR_SEND                   = 12
   DP_ERROR_WRITE                  = 13
   UNKNOWN_DP_ERROR                = 14
   ACCESS_DENIED                   = 15
   DP_OUT_OF_MEMORY                = 16
   DISK_FULL                       = 17
   DP_TIMEOUT                      = 18
   FILE_NOT_FOUND                  = 19
   DATAPROVIDER_EXCEPTION          = 20
   CONTROL_FLUSH_ERROR             = 21
   OTHERS                          = 22
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore it is working as it should -:) and it does retain the last fields if they are blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 13:38:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685463#M1292157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T13:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685464#M1292158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Advait, Now I see that the blanks do get retained in while writing in application server. But when I download the file directly through GUI download ( that is not first to application server , then to presentation server ), the blanks do not appear. Can you please tell what can be done for blanks to appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 05:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685464#M1292158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T05:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685465#M1292159</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>Thu, 11 Jun 2009 06:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685465#M1292159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T06:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685466#M1292160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;APP_FILE = '/tmp/salesorder.log'.&lt;/P&gt;&lt;P&gt;DATA: MESSAGE TYPE STRING.&lt;/P&gt;&lt;P&gt;data: I_RETURN TYPE STANDARD TABLE OF BAPIRET2 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;*i_return has 3 fields(type, number, MESSAGE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET APP_FILE FOR OUTPUT IN BINARY MODE.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    WRITE / 'file can not be open'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT I_RETURN.&lt;/P&gt;&lt;P&gt;      TRANSFER I_RETURN-TYPE TO APP_FILE.&lt;/P&gt;&lt;P&gt;      TRANSFER I_RETURN-NUMBER TO APP_FILE.&lt;/P&gt;&lt;P&gt;      MOVE I_RETURN-MESSAGE TO MESSAGE.&lt;/P&gt;&lt;P&gt;      TRANSFER MESSAGE TO APP_FILE.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    CLOSE DATASET APP_FILE.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;      WRITE / 'file not updated'.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE / 'file /tmp/salesorder.log is updated'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Jun 11, 2009 8:26 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Jun 11, 2009 8:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 06:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685466#M1292160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T06:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685467#M1292161</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;Call the FM 'GUI_DOWNLOAD' and pass the parameter filetype is 'ASC'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise use OPEN DATSET, TRANSFER DATA and CLOSE DATASET statements&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jyothi CH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jyothi Chinnabathuni on Jun 11, 2009 12:23 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 06:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685467#M1292161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T06:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685468#M1292162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dagny,&lt;/P&gt;&lt;P&gt;You are right, it doesn't. I tweaked the data declaration a little bit and introduced a dummy field at the end of the file_struc. This dummy field will help retain the data fields including the filler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
DATA : BEGIN OF file_struc OCCURS 0,
        f1(2) TYPE c,
        f2(10) TYPE c,
        f3(10) TYPE c,  
        filler(10) TYPE c,       " Filler
        dummy TYPE c,       " To retain the filler , do not populate this field.
END OF file_struc.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the above change, I ran the program ,even without writing to AS, it transferes 32 characters to the file, truncating the last dummy field.&lt;/P&gt;&lt;P&gt;Sometimes you need to fool the system in order to get things working -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 07:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685468#M1292162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T07:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685469#M1292163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Advait, now the blanks come, thanks a lot :).&lt;/P&gt;&lt;P&gt;Just one question. If I download the file in application server through 'CG3Y' transaction instead of through System --&amp;gt; List --&amp;gt; Save --&amp;gt; Local file, I do get the blanks, but after the blanks a special character ( like a rectangle ) appears . &lt;/P&gt;&lt;P&gt;I need these blanks to appear . Even if I apply your logic of 'Length' specification and a dummy character at the end, the blanks are getting truncated when downloaded through System --&amp;gt; List --&amp;gt; Save --&amp;gt; Local file.&lt;/P&gt;&lt;P&gt;Any work-around for this? Please do tell if any, would be grateful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 09:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685469#M1292163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T09:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685470#M1292164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dagny,&lt;/P&gt;&lt;P&gt;Glad to know that it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apparently there is no work around for it when you save it from the list as it is standard code. The only way I could think is to put a value in the dummy field. But process only first 32 charaters when processing the file.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : BEGIN OF file_struc OCCURS 0,
        f1(2) TYPE c,
        f2(10) TYPE c,
        f3(10) TYPE c,
        filler(10) TYPE c,  " Filler
        dummy(1) TYPE c VALUE '#',       " To retain the filler.
END OF file_struc.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"The file content then saves like this  :&lt;/P&gt;&lt;P&gt;Directory:  /zsap/vsp//tmp&lt;/P&gt;&lt;P&gt;Name:       file_temp.txt&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;AB          ABCDEFGHIJ          #&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;Kind regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 11:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685470#M1292164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T11:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Writing data into a file on Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685471#M1292165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok Thank you Advait.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 11:28:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-data-into-a-file-on-application-server/m-p/5685471#M1292165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T11:28:20Z</dc:date>
    </item>
  </channel>
</rss>

