<?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: create file on application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244071#M1013031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;open dataset w_fname3 for output in text mode encoding default.

open dataset w_fname2 for output in text mode encoding default.

open dataset w_fname1 for output in text mode encoding default.

  loop at itab into wa.  
     if sy-tabix LE 1000.
      transfer wa to w_fname1.
    elseif sy-tabix GT 1000 and sy-tabix LE 2000.
      transfer wa to w_fname2.
    elseif sy-tabix GT 2000 and sy-tabix LE 3000.
      transfer wa to w_fname3.
    endif.
  endloop.                         

    close dataset w_fname1.
   close dataset w_fname2.
  close dataset w_fname3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jul 2008 05:43:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-30T05:43:04Z</dc:date>
    <item>
      <title>create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244070#M1013030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;lets suppose i have 3000 records in internal table and now there is requirement, to create files on application server first with 1000 records then another 1000 and rest 1000 records, with a single execution of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls tell me how i write to this logic in abap program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244070#M1013030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244071#M1013031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;open dataset w_fname3 for output in text mode encoding default.

open dataset w_fname2 for output in text mode encoding default.

open dataset w_fname1 for output in text mode encoding default.

  loop at itab into wa.  
     if sy-tabix LE 1000.
      transfer wa to w_fname1.
    elseif sy-tabix GT 1000 and sy-tabix LE 2000.
      transfer wa to w_fname2.
    elseif sy-tabix GT 2000 and sy-tabix LE 3000.
      transfer wa to w_fname3.
    endif.
  endloop.                         

    close dataset w_fname1.
   close dataset w_fname2.
  close dataset w_fname3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244071#M1013031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244072#M1013032</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;Use Data sets to upload / download the data into application server.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic Form of the OPEN DATASET Statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To open a file on the application server, use the OPEN statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET &amp;lt;dsn&amp;gt; [Additions].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement opens the file &amp;lt;dsn&amp;gt;. If you do not specify any additions for the mode, the file is opened in binary mode for reading. SY-SUBRC returns 0 if the system opens the file. Otherwise, SY-SUBRC is set to 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You enter the filename &amp;lt;dsn&amp;gt; either as a literal or as a field containing the actual name of the file. If you do not specify a path, the system opens the file in the directory in which the R/3 System is running on the application server. To open a file, the user under which the R/3 System is running must have the requisite authorizations at operating system level. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Filenames are platform-specific. You must therefore use file- and pathnames that conform to the rules of the operating system under which your R/3 System is running. However, you can also use logical filenames to ensure that your programs are not operating system-specific. For further information, refer to Using Platform-Independent Filenames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA FNAME(60).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FNAME = '/tmp/myfile'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET 'myfile'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET FNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This example works as long as your R/3 System is running under UNIX. The program opens the file "myfile" in the directory in which the R/3 System is running, and also opens the file "myfile" in directory "/tmp". However, you would have to change the filename for other operating systems. For example, for OpenVMS, you could write the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FNAME = '[TMP]myfile.BIN'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET 'myfile.BIN'.&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;Reward Points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Raghunath.S&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;9986076729&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244072#M1013032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244073#M1013033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is a code to create file on application server..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZDOWNLOAD_APPL_DEMO.TYPES : BEGIN OF ST_DEMO,&lt;/P&gt;&lt;P&gt;        REG_NO(10) TYPE C,&lt;/P&gt;&lt;P&gt;        NAME(20) TYPE C,&lt;/P&gt;&lt;P&gt;        ADDR(20) TYPE C,&lt;/P&gt;&lt;P&gt;        END OF ST_DEMO.DATA : WA_DEMO TYPE ST_DEMO,&lt;/P&gt;&lt;P&gt;       IT_DEMO TYPE TABLE OF ST_DEMO,&lt;/P&gt;&lt;P&gt;       L_FNAME TYPE STRING .PARAMETERS: P_FNAME(128) TYPE C DEFAULT '\usr\sap\SRI\SYS\src\DOWN.TXT' OBLIGATORY.&lt;/P&gt;&lt;P&gt;L_FNAME = P_FNAME.&lt;/P&gt;&lt;P&gt;WA_DEMO-REG_NO = '100001'.&lt;/P&gt;&lt;P&gt;WA_DEMO-NAME = 'ANAND'.&lt;/P&gt;&lt;P&gt;WA_DEMO-ADDR = 'NAGARKOVIL'.&lt;/P&gt;&lt;P&gt; APPEND WA_DEMO TO IT_DEMO.WA_DEMO-REG_NO = '100002'.&lt;/P&gt;&lt;P&gt;WA_DEMO-NAME = 'VIKRAM'.&lt;/P&gt;&lt;P&gt;WA_DEMO-ADDR = 'CHENNAI'.&lt;/P&gt;&lt;P&gt;APPEND WA_DEMO TO IT_DEMO.  OPEN DATASET L_FNAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;  WRITE :5 'REG NUM',16 'NAME',37 'ADDRESS' .&lt;/P&gt;&lt;P&gt;  LOOP AT IT_DEMO INTO WA_DEMO.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;      TRANSFER WA_DEMO TO L_FNAME.&lt;/P&gt;&lt;P&gt;      WRITE :/5 WA_DEMO-REG_NO,16 WA_DEMO-NAME,37 WA_DEMO-ADDR.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope u may get some help from this ..&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Ashu Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:47:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244073#M1013033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244074#M1013034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii!&lt;/P&gt;&lt;P&gt;  Check out this sample code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT z_sdn.

DATA: fname(40),
      w_line TYPE i,
      w_idx TYPE i VALUE 1.
DATA:
  BEGIN OF fs_flight,
    carrid   LIKE sflight-carrid,
    connid   LIKE sflight-connid,
    fldate   LIKE sflight-fldate,
  END OF fs_flight.

DATA:
  t_flight LIKE
     TABLE OF
           fs_flight.
DATA:
  t_flight1 LIKE
      TABLE OF
            fs_flight.
SELECT-OPTIONS:
  s_carrid FOR fs_flight-carrid,
  s_connid FOR fs_flight-connid.
fname = '.\ztest46.csv'.
PERFORM get_flight_data.
OPEN DATASET fname FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
 DESCRIBE TABLE t_flight LINES w_line.
 DO 10 TIMES.
  READ TABLE t_flight INDEX w_idx INTO fs_flight.
  TRANSFER fs_flight TO fname.
 ENDDO.

IF sy-subrc EQ 0.
  WRITE: 'File Opened On Apps Server'.
ELSE.
  WRITE: 'File could not be opened'.
ENDIF.
CLOSE DATASET fname.
w_idx = w_idx + 1.

OPEN DATASET fname FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
 DESCRIBE TABLE t_flight LINES w_line.
 DO 10 TIMES.
  READ TABLE t_flight INDEX w_idx INTO fs_flight.
  TRANSFER fs_flight TO fname.
 ENDDO.
CLOSE DATASET fname.



*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  get_flight_data
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM get_flight_data .
  SELECT carrid
         connid
         fldate
    FROM sflight
    INTO TABLE t_flight
   WHERE carrid IN s_carrid
     AND connid IN s_connid.
ENDFORM.                    " get_flight_data
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:52:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244074#M1013034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244075#M1013035</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; CONCATENATE&lt;/P&gt;&lt;P&gt;      w_phy_path_tx   " Physical path&lt;/P&gt;&lt;P&gt;      c_error               " file type&lt;/P&gt;&lt;P&gt;      c_sep                 " seperator&lt;/P&gt;&lt;P&gt;      wa_dir_list-name  "directory name&lt;/P&gt;&lt;P&gt;    INTO&lt;/P&gt;&lt;P&gt;      w_error_tx.          " file name in application server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REPLACE c_ext_txt IN w_error_tx WITH c_extn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONDENSE w_error_tx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Open error file to write error info&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  OPEN DATASET w_error_tx FOR OUTPUT IN TEXT MODE  ENCODING DEFAULT&lt;/P&gt;&lt;P&gt;      IGNORING CONVERSION ERRORS .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT t_error INTO wa_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Get the legacy compaign code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE t_zfa_map INTO wa_zfa_map WITH KEY&lt;/P&gt;&lt;P&gt;                                fanum = wa_error-fanum&lt;/P&gt;&lt;P&gt;                                BINARY SEARCH.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        wa_error-fanum = wa_zfa_map-altfa.&lt;/P&gt;&lt;P&gt;        TRANSFER wa_error TO w_error_tx.&lt;/P&gt;&lt;P&gt;        CLEAR:  wa_error, wa_zfa_map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&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; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLOSE DATASET w_error_tx.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i055 INTO w_message_tx. " 'File could not be closed !'.&lt;/P&gt;&lt;P&gt;    PERFORM sub_write_audit_log USING w_message_tx&lt;/P&gt;&lt;P&gt;                                      w_error_tx&lt;/P&gt;&lt;P&gt;                                      space.&lt;/P&gt;&lt;P&gt;    CLEAR : w_message_tx.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Populate 3000 records into 3 different internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and create 3 different files in applicatipn server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244075#M1013035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244076#M1013036</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;Good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below SDN post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/profile.jspa?userID=3473432" target="test_blank"&gt;https://forums.sdn.sap.com/profile.jspa?userID=3473432&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 05:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244076#M1013036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T05:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: create file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244077#M1013037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vipin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Class 'CL_RSAN_UT_APPSERV_FILE_WRITER' have the method 'APPSERVER_FILE_WRITE' to write the data to Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your requirement,&lt;/P&gt;&lt;P&gt;1. Get the App server path,&lt;/P&gt;&lt;P&gt;2. Loop the Main internal table&lt;/P&gt;&lt;P&gt;3. build the internal table to send to file in App server if the record reached 1000 the call the method which is mentioned above.&lt;/P&gt;&lt;P&gt;4. repeat the above steps for 2000,3000 etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type: ty_str type string.&lt;/P&gt;&lt;P&gt;data: it_str type standard table of ty_str,&lt;/P&gt;&lt;P&gt;        wa_str type ty_str,&lt;/P&gt;&lt;P&gt;        l_str type string.&lt;/P&gt;&lt;P&gt;Loop it_final into wa_final.&lt;/P&gt;&lt;P&gt;concatenate wa_final-f1 wa_final-f2 into l_str.&lt;/P&gt;&lt;P&gt;wa_str = l_str.&lt;/P&gt;&lt;P&gt;append wa_str into it_str.&lt;/P&gt;&lt;P&gt;clear wa_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-tabix = 1000.&lt;/P&gt;&lt;P&gt;  call method CL_RSAN_UT_APPSERV_FILE_WRITER=&amp;gt;APPSERVER_FILE_WRITE&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;I_FILENAME = l_file_path_name " Filename with App Path&lt;/P&gt;&lt;P&gt;I_DATA_TAB = it_str.&lt;/P&gt;&lt;P&gt;refresh it_str.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Boobalan S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 06:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-file-on-application-server/m-p/4244077#M1013037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T06:03:34Z</dc:date>
    </item>
  </channel>
</rss>

