<?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 Application server file is full in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566986#M256144</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 am downloading a file onto applocation server.&lt;/P&gt;&lt;P&gt;the file contain huge amount of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I scheduled a background job, It got cancelled with error DATASET_WRITE_ERROR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime errors         DATASET_WRITE_ERROR                                        &lt;/P&gt;&lt;P&gt;Exception              CX_SY_FILE_IO                                              &lt;/P&gt;&lt;P&gt;       Occurred on     10/16/2006 at   20:05:23                                                                                &lt;/P&gt;&lt;P&gt;Error when writing to the file "&lt;BR /&gt;sapr3dq\sapmnt\trans\new_testaudit010194916.t                                                                                &lt;/P&gt;&lt;P&gt;What happened?                                                                                &lt;/P&gt;&lt;P&gt;The current program, "ZLGF_AUDIT_TEST", had to be terminated because a capacity   &lt;/P&gt;&lt;P&gt; limit                                                                            &lt;/P&gt;&lt;P&gt;has been reached.                                                                                &lt;/P&gt;&lt;P&gt;What can you do?                                                                                &lt;/P&gt;&lt;P&gt;Make a note of the actions and input which caused the error.                                                                                &lt;/P&gt;&lt;P&gt;To resolve the problem, contact your SAP system administrator.                                                                                &lt;/P&gt;&lt;P&gt;You can use transaction ST22 (ABAP Dump Analysis) to view and administer          &lt;/P&gt;&lt;P&gt;termination messages, especially those beyond their normal deletion               &lt;/P&gt;&lt;P&gt;date.                                                                                &lt;/P&gt;&lt;P&gt;Error analysis                                                                                &lt;/P&gt;&lt;P&gt;An exception occurred. This exception is dealt with in more detail below          &lt;/P&gt;&lt;P&gt;. The exception, which is assigned to the class 'CX_SY_FILE_IO', was neither      &lt;/P&gt;&lt;P&gt;caught nor passed along using a RAISING clause, in the procedure "DOWLOAD_NEW"    &lt;/P&gt;&lt;P&gt;.                                                                       &lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have expected this exception&lt;/P&gt;&lt;P&gt; to occur, the running program was terminated.                          &lt;/P&gt;&lt;P&gt;The reason for the exception is:                                        &lt;/P&gt;&lt;P&gt;An error occurred when writing to the file                              &lt;/P&gt;&lt;P&gt; "&lt;BR /&gt;sapr3dq\sapmnt\trans\new_testaudit010194916.txt".                   &lt;/P&gt;&lt;P&gt;Error text: "No such file or directory"                                 &lt;/P&gt;&lt;P&gt;Error code: 2                                                                                &lt;/P&gt;&lt;P&gt;How to correct the error                                                                                &lt;/P&gt;&lt;P&gt;The exception must either be prevented, caught within the procedure     &lt;/P&gt;&lt;P&gt; "DOWLOAD_NEW"                                                          &lt;/P&gt;&lt;P&gt;"(FORM)", or declared in the procedure's RAISING clause.                &lt;/P&gt;&lt;P&gt;To prevent the exception, note the following:                                                                                &lt;/P&gt;&lt;P&gt;You may able to find an interim solution to the problem                 &lt;/P&gt;&lt;P&gt;in the SAP note system. If you have access to the note system yourself, &lt;/P&gt;&lt;P&gt;use the following search criteria:                                      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how I am using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF out_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;       text(250),&lt;/P&gt;&lt;P&gt;      END OF out_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_pre = 'X'.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        filename                = l_flname&lt;/P&gt;&lt;P&gt;        filetype                = 'DAT'&lt;/P&gt;&lt;P&gt;        append                  = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       confirm_overwrite       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                = out_tab&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        file_write_error        = 1&lt;/P&gt;&lt;P&gt;        no_batch                = 2&lt;/P&gt;&lt;P&gt;        gui_refuse_filetransfer = 3&lt;/P&gt;&lt;P&gt;        invalid_type            = 4&lt;/P&gt;&lt;P&gt;        no_authority            = 5&lt;/P&gt;&lt;P&gt;        unknown_error           = 6&lt;/P&gt;&lt;P&gt;        header_not_allowed      = 7&lt;/P&gt;&lt;P&gt;        separator_not_allowed   = 8&lt;/P&gt;&lt;P&gt;        filesize_not_allowed    = 9&lt;/P&gt;&lt;P&gt;        header_too_long         = 10&lt;/P&gt;&lt;P&gt;        dp_error_create         = 11&lt;/P&gt;&lt;P&gt;        dp_error_send           = 12&lt;/P&gt;&lt;P&gt;        dp_error_write          = 13&lt;/P&gt;&lt;P&gt;        unknown_dp_error        = 14&lt;/P&gt;&lt;P&gt;        access_denied           = 15&lt;/P&gt;&lt;P&gt;        dp_out_of_memory        = 16&lt;/P&gt;&lt;P&gt;        disk_full               = 17&lt;/P&gt;&lt;P&gt;        dp_timeout              = 18&lt;/P&gt;&lt;P&gt;        file_not_found          = 19&lt;/P&gt;&lt;P&gt;        dataprovider_exception  = 20&lt;/P&gt;&lt;P&gt;        control_flush_error     = 21&lt;/P&gt;&lt;P&gt;        OTHERS                  = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'File',&lt;/P&gt;&lt;P&gt;              l_flname,&lt;/P&gt;&lt;P&gt;              'created successfuly'.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'Error in creating File',&lt;/P&gt;&lt;P&gt;              l_flname.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    concatenate l_name 'new_testaudit010' sy-uzeit '.txt' into l_file.&lt;/P&gt;&lt;P&gt;    move l_file to p_sfile.&lt;/P&gt;&lt;P&gt;    OPEN DATASET p_sfile FOR APPENDING IN TEXT MODE ENCODING NON-UNICODE.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      LOOP AT out_tab.&lt;/P&gt;&lt;P&gt;        TRANSFER out_tab-text TO p_sfile.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET p_sfile.&lt;/P&gt;&lt;P&gt;      clear out_tab.&lt;/P&gt;&lt;P&gt;      refresh out_tab.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'File',&lt;/P&gt;&lt;P&gt;        p_sfile,&lt;/P&gt;&lt;P&gt;        'created successfuly'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'Error in creating File',&lt;/P&gt;&lt;P&gt;     p_sfile.&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;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " dowload_new&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;I am assuming the file on the application server has reached its  capacity of storing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am right please let me know how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Oct 2006 03:29:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-17T03:29:09Z</dc:date>
    <item>
      <title>Application server file is full</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566986#M256144</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 am downloading a file onto applocation server.&lt;/P&gt;&lt;P&gt;the file contain huge amount of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I scheduled a background job, It got cancelled with error DATASET_WRITE_ERROR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime errors         DATASET_WRITE_ERROR                                        &lt;/P&gt;&lt;P&gt;Exception              CX_SY_FILE_IO                                              &lt;/P&gt;&lt;P&gt;       Occurred on     10/16/2006 at   20:05:23                                                                                &lt;/P&gt;&lt;P&gt;Error when writing to the file "&lt;BR /&gt;sapr3dq\sapmnt\trans\new_testaudit010194916.t                                                                                &lt;/P&gt;&lt;P&gt;What happened?                                                                                &lt;/P&gt;&lt;P&gt;The current program, "ZLGF_AUDIT_TEST", had to be terminated because a capacity   &lt;/P&gt;&lt;P&gt; limit                                                                            &lt;/P&gt;&lt;P&gt;has been reached.                                                                                &lt;/P&gt;&lt;P&gt;What can you do?                                                                                &lt;/P&gt;&lt;P&gt;Make a note of the actions and input which caused the error.                                                                                &lt;/P&gt;&lt;P&gt;To resolve the problem, contact your SAP system administrator.                                                                                &lt;/P&gt;&lt;P&gt;You can use transaction ST22 (ABAP Dump Analysis) to view and administer          &lt;/P&gt;&lt;P&gt;termination messages, especially those beyond their normal deletion               &lt;/P&gt;&lt;P&gt;date.                                                                                &lt;/P&gt;&lt;P&gt;Error analysis                                                                                &lt;/P&gt;&lt;P&gt;An exception occurred. This exception is dealt with in more detail below          &lt;/P&gt;&lt;P&gt;. The exception, which is assigned to the class 'CX_SY_FILE_IO', was neither      &lt;/P&gt;&lt;P&gt;caught nor passed along using a RAISING clause, in the procedure "DOWLOAD_NEW"    &lt;/P&gt;&lt;P&gt;.                                                                       &lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have expected this exception&lt;/P&gt;&lt;P&gt; to occur, the running program was terminated.                          &lt;/P&gt;&lt;P&gt;The reason for the exception is:                                        &lt;/P&gt;&lt;P&gt;An error occurred when writing to the file                              &lt;/P&gt;&lt;P&gt; "&lt;BR /&gt;sapr3dq\sapmnt\trans\new_testaudit010194916.txt".                   &lt;/P&gt;&lt;P&gt;Error text: "No such file or directory"                                 &lt;/P&gt;&lt;P&gt;Error code: 2                                                                                &lt;/P&gt;&lt;P&gt;How to correct the error                                                                                &lt;/P&gt;&lt;P&gt;The exception must either be prevented, caught within the procedure     &lt;/P&gt;&lt;P&gt; "DOWLOAD_NEW"                                                          &lt;/P&gt;&lt;P&gt;"(FORM)", or declared in the procedure's RAISING clause.                &lt;/P&gt;&lt;P&gt;To prevent the exception, note the following:                                                                                &lt;/P&gt;&lt;P&gt;You may able to find an interim solution to the problem                 &lt;/P&gt;&lt;P&gt;in the SAP note system. If you have access to the note system yourself, &lt;/P&gt;&lt;P&gt;use the following search criteria:                                      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how I am using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF out_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;       text(250),&lt;/P&gt;&lt;P&gt;      END OF out_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_pre = 'X'.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        filename                = l_flname&lt;/P&gt;&lt;P&gt;        filetype                = 'DAT'&lt;/P&gt;&lt;P&gt;        append                  = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       confirm_overwrite       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                = out_tab&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        file_write_error        = 1&lt;/P&gt;&lt;P&gt;        no_batch                = 2&lt;/P&gt;&lt;P&gt;        gui_refuse_filetransfer = 3&lt;/P&gt;&lt;P&gt;        invalid_type            = 4&lt;/P&gt;&lt;P&gt;        no_authority            = 5&lt;/P&gt;&lt;P&gt;        unknown_error           = 6&lt;/P&gt;&lt;P&gt;        header_not_allowed      = 7&lt;/P&gt;&lt;P&gt;        separator_not_allowed   = 8&lt;/P&gt;&lt;P&gt;        filesize_not_allowed    = 9&lt;/P&gt;&lt;P&gt;        header_too_long         = 10&lt;/P&gt;&lt;P&gt;        dp_error_create         = 11&lt;/P&gt;&lt;P&gt;        dp_error_send           = 12&lt;/P&gt;&lt;P&gt;        dp_error_write          = 13&lt;/P&gt;&lt;P&gt;        unknown_dp_error        = 14&lt;/P&gt;&lt;P&gt;        access_denied           = 15&lt;/P&gt;&lt;P&gt;        dp_out_of_memory        = 16&lt;/P&gt;&lt;P&gt;        disk_full               = 17&lt;/P&gt;&lt;P&gt;        dp_timeout              = 18&lt;/P&gt;&lt;P&gt;        file_not_found          = 19&lt;/P&gt;&lt;P&gt;        dataprovider_exception  = 20&lt;/P&gt;&lt;P&gt;        control_flush_error     = 21&lt;/P&gt;&lt;P&gt;        OTHERS                  = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'File',&lt;/P&gt;&lt;P&gt;              l_flname,&lt;/P&gt;&lt;P&gt;              'created successfuly'.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'Error in creating File',&lt;/P&gt;&lt;P&gt;              l_flname.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    concatenate l_name 'new_testaudit010' sy-uzeit '.txt' into l_file.&lt;/P&gt;&lt;P&gt;    move l_file to p_sfile.&lt;/P&gt;&lt;P&gt;    OPEN DATASET p_sfile FOR APPENDING IN TEXT MODE ENCODING NON-UNICODE.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      LOOP AT out_tab.&lt;/P&gt;&lt;P&gt;        TRANSFER out_tab-text TO p_sfile.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET p_sfile.&lt;/P&gt;&lt;P&gt;      clear out_tab.&lt;/P&gt;&lt;P&gt;      refresh out_tab.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'File',&lt;/P&gt;&lt;P&gt;        p_sfile,&lt;/P&gt;&lt;P&gt;        'created successfuly'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'Error in creating File',&lt;/P&gt;&lt;P&gt;     p_sfile.&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;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " dowload_new&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;I am assuming the file on the application server has reached its  capacity of storing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am right please let me know how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 03:29:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566986#M256144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T03:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Application server file is full</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566987#M256145</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 hope the problem may be because append = 'X' in FM.Since the file does not exists[from error analysis].Just try commneting it.Kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason for the exception is: &lt;/P&gt;&lt;P&gt;An error occurred when writing to the file &lt;/P&gt;&lt;P&gt;"&lt;BR /&gt;sapr3dq\sapmnt\trans\new_testaudit010194916.txt". &lt;/P&gt;&lt;P&gt;Error text: "No such file or directory" &lt;/P&gt;&lt;P&gt;Error code: 2 &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 = l_flname&lt;/P&gt;&lt;P&gt;filetype = 'DAT'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*append = 'X'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;confirm_overwrite = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;data_tab = out_tab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;file_write_error = 1&lt;/P&gt;&lt;P&gt;no_batch = 2&lt;/P&gt;&lt;P&gt;gui_refuse_filetransfer = 3&lt;/P&gt;&lt;P&gt;invalid_type = 4&lt;/P&gt;&lt;P&gt;no_authority = 5&lt;/P&gt;&lt;P&gt;unknown_error = 6&lt;/P&gt;&lt;P&gt;header_not_allowed = 7&lt;/P&gt;&lt;P&gt;separator_not_allowed = 8&lt;/P&gt;&lt;P&gt;filesize_not_allowed = 9&lt;/P&gt;&lt;P&gt;header_too_long = 10&lt;/P&gt;&lt;P&gt;dp_error_create = 11&lt;/P&gt;&lt;P&gt;dp_error_send = 12&lt;/P&gt;&lt;P&gt;dp_error_write = 13&lt;/P&gt;&lt;P&gt;unknown_dp_error = 14&lt;/P&gt;&lt;P&gt;access_denied = 15&lt;/P&gt;&lt;P&gt;dp_out_of_memory = 16&lt;/P&gt;&lt;P&gt;disk_full = 17&lt;/P&gt;&lt;P&gt;dp_timeout = 18&lt;/P&gt;&lt;P&gt;file_not_found = 19&lt;/P&gt;&lt;P&gt;dataprovider_exception = 20&lt;/P&gt;&lt;P&gt;control_flush_error = 21&lt;/P&gt;&lt;P&gt;OTHERS = 22.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 03:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566987#M256145</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-10-17T03:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Application server file is full</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566988#M256146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayanthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the error when I am downloading to a Application server not on to PC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the storage capacity of a file in a server is exhasuted with data ie can't accomodate more data, then what should be the best way to transfer very large amount of data, without error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 21:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566988#M256146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T21:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Application server file is full</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566989#M256147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think the APP server (UNIX) is like a PC in that files can't fill up all available space on the drive. I think you can get your basis people to allocate more space to the directory that you're writing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 21:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566989#M256147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T21:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Application server file is full</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566990#M256148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I have the same Dump, can you tell me how you resolve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings from Chile,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 13:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-file-is-full/m-p/1566990#M256148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T13:22:12Z</dc:date>
    </item>
  </channel>
</rss>

