<?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: problem saving file using SO_ATTACHMENT_INSERT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704677#M1578347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry, I don't know why all the return characters are gone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try again:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to do something that should be simple, but somehow it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a report, get a file from your pc using GUI_UPLOAD, save it using SO_ATTACHMENT_INSERT, retrieve it using SO_ATTACHMENT_READ and SO_CONTENT_FROM_KPRO_GET and finally save it back into the pc using GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using png files because I'd like to save images. The file I get back is corrupted. It has some missing data and I don't know why. Can anyone with experience using those FM's maybe see what I'm doing wrong? Thanks a lot in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Joaquin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first part of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONSTANTS lc_general  TYPE sofd-folrg  VALUE 'B'.

DATA: lt_content      TYPE TABLE OF soli,
      lt_header       TYPE TABLE OF soli,
      ls_content      TYPE soli,
      lv_filename     TYPE string,
      lt_content_rec  TYPE TABLE OF soli,
      lt_header_rec   TYPE TABLE OF soli,
      lv_attach_id    TYPE soodk,
      ls_folder_id    TYPE soodk.

SELECTION-SCREEN BEGIN OF BLOCK 0001.

PARAMETERS:      p_datei  TYPE localfile LOWER CASE.

SELECTION-SCREEN END OF BLOCK 0001.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_datei.
  DATA:
    file_table  TYPE filetable,
    action TYPE i,
    rc TYPE sysubrc.

  FIELD-SYMBOLS:
    &amp;lt;file&amp;gt; TYPE file_table.

  CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog
    EXPORTING
      default_extension       = 'PNG'
    CHANGING
      file_table              = file_table
      rc                      = rc
      user_action             = action
    EXCEPTIONS
      file_open_dialog_failed = 1
      cntl_error              = 2
      error_no_gui            = 3
      not_supported_by_gui    = 4
      OTHERS                  = 5.
  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.

  CHECK action = cl_gui_frontend_services=&amp;gt;action_ok.

  READ TABLE file_table INDEX 1 ASSIGNING &amp;lt;file&amp;gt;.

  p_datei = &amp;lt;file&amp;gt;.

START-OF-SELECTION.

  lv_filename = p_datei.

* upload file from laptop.
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = lv_filename
      filetype                = 'BIN'
    TABLES
      data_tab                = lt_content
    EXCEPTIONS
      file_open_error         = 1
      file_read_error         = 2
      no_batch                = 3
      gui_refuse_filetransfer = 4
      invalid_type            = 5
      no_authority            = 6
      unknown_error           = 7
      bad_data_format         = 8
      header_not_allowed      = 9
      separator_not_allowed   = 10
      header_too_long         = 11
      unknown_dp_error        = 12
      access_denied           = 13
      dp_out_of_memory        = 14
      disk_full               = 15
      dp_timeout              = 16
      OTHERS                  = 17.

  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.
    EXIT.
  ENDIF.


* get folder to store the file
  CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
    EXPORTING
      region                = lc_general  "General
    IMPORTING
      folder_id             = ls_folder_id
    EXCEPTIONS
      communication_failure = 1
      owner_not_exist       = 2
      system_failure        = 3
      x_error               = 4
      OTHERS                = 5.
  IF sy-subrc NE 0.
    "error message
    EXIT.
  ENDIF.

* store file
  CALL FUNCTION 'SO_ATTACHMENT_INSERT'
    EXPORTING
      object_id                  = ls_folder_id
      attach_type                = 'BIN'
    IMPORTING
      attach_id                  = lv_attach_id
    TABLES
      objcont                    = lt_content
      objhead                    = lt_header
    EXCEPTIONS
      active_user_not_exist      = 1
      object_type_not_exist      = 2
      operation_no_authorization = 3
      owner_not_exist            = 4
      parameter_error            = 5
      substitute_not_active      = 6
      substitute_not_defined     = 7
      x_error                    = 8
      system_failure             = 9
      communication_failure      = 10
      OTHERS                     = 11.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    "error message
    EXIT.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Feb 2011 13:16:16 GMT</pubDate>
    <dc:creator>former_member383774</dc:creator>
    <dc:date>2011-02-15T13:16:16Z</dc:date>
    <item>
      <title>problem saving file using SO_ATTACHMENT_INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704676#M1578346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to do something that should be simple, but somehow it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a report, get a file from your pc using GUI_UPLOAD, save it using SO_ATTACHMENT_INSERT, retrieve it using SO_ATTACHMENT_READ and SO_CONTENT_FROM_KPRO_GET and finally save it back into the pc using GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using png files because I'd like to save images. The file I get back is corrupted. It has some missing data and I don't know why. Can anyone with experience using those FM's maybe see what I'm doing wrong? Thanks a lot in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joaquin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the source code. Copy-paste into a new report should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONSTANTS lc_general  TYPE sofd-folrg  VALUE 'B'.

DATA: lt_content      TYPE TABLE OF soli,
      lt_header       TYPE TABLE OF soli,
      ls_content      TYPE soli,
      lv_filename     TYPE string,
      lt_content_rec  TYPE TABLE OF soli,
      lt_header_rec   TYPE TABLE OF soli,
      lv_attach_id    TYPE soodk,
      ls_folder_id    TYPE soodk.

SELECTION-SCREEN BEGIN OF BLOCK 0001.

PARAMETERS:      p_datei  TYPE localfile LOWER CASE.

SELECTION-SCREEN END OF BLOCK 0001.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_datei.
  DATA:
    file_table  TYPE filetable,
    action TYPE i,
    rc TYPE sysubrc.

  FIELD-SYMBOLS:
    &amp;lt;file&amp;gt; TYPE file_table.

  CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog
    EXPORTING
      default_extension       = 'PNG'
    CHANGING
      file_table              = file_table
      rc                      = rc
      user_action             = action
    EXCEPTIONS
      file_open_dialog_failed = 1
      cntl_error              = 2
      error_no_gui            = 3
      not_supported_by_gui    = 4
      OTHERS                  = 5.
  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.

  CHECK action = cl_gui_frontend_services=&amp;gt;action_ok.

  READ TABLE file_table INDEX 1 ASSIGNING &amp;lt;file&amp;gt;.

  p_datei = &amp;lt;file&amp;gt;.

START-OF-SELECTION.

  lv_filename = p_datei.

* upload file from laptop.
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = lv_filename
      filetype                = 'BIN'
    TABLES
      data_tab                = lt_content
    EXCEPTIONS
      file_open_error         = 1
      file_read_error         = 2
      no_batch                = 3
      gui_refuse_filetransfer = 4
      invalid_type            = 5
      no_authority            = 6
      unknown_error           = 7
      bad_data_format         = 8
      header_not_allowed      = 9
      separator_not_allowed   = 10
      header_too_long         = 11
      unknown_dp_error        = 12
      access_denied           = 13
      dp_out_of_memory        = 14
      disk_full               = 15
      dp_timeout              = 16
      OTHERS                  = 17.

  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.
    EXIT.
  ENDIF.

* get folder to store the file
  CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
    EXPORTING
      region                = lc_general  "General
    IMPORTING
      folder_id             = ls_folder_id
    EXCEPTIONS
      communication_failure = 1
      owner_not_exist       = 2
      system_failure        = 3
      x_error               = 4
      OTHERS                = 5.
  IF sy-subrc NE 0.
    "error message
    EXIT.
  ENDIF.

* store file
  CALL FUNCTION 'SO_ATTACHMENT_INSERT'
    EXPORTING
      object_id                  = ls_folder_id
      attach_type                = 'BIN'
    IMPORTING
      attach_id                  = lv_attach_id
    TABLES
      objcont                    = lt_content
      objhead                    = lt_header
    EXCEPTIONS
      active_user_not_exist      = 1
      object_type_not_exist      = 2
      operation_no_authorization = 3
      owner_not_exist            = 4
      parameter_error            = 5
      substitute_not_active      = 6
      substitute_not_defined     = 7
      x_error                    = 8
      system_failure             = 9
      communication_failure      = 10
      OTHERS                     = 11.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    "error message
    EXIT.
  ENDIF.

* read file
  CALL FUNCTION 'SO_ATTACHMENT_READ'
    EXPORTING
      object_id                  = ls_folder_id
      attach_id                  = lv_attach_id
    TABLES
      objcont                    = lt_content_rec
      objhead                    = lt_header_rec
    EXCEPTIONS
      active_user_not_exist      = 1
      object_not_exist           = 2
      operation_no_authorization = 3
      owner_not_exist            = 4
      parameter_error            = 5
      substitute_not_active      = 6
      substitute_not_defined     = 7
      x_error                    = 8
      communication_failure      = 9
      system_failure             = 10
      OTHERS                     = 11.

  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.
    EXIT.
  ENDIF.

* read content of file
  CALL FUNCTION 'SO_CONTENT_FROM_KPRO_GET'
    TABLES
      objcont = lt_content_rec.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    EXIT.
  ENDIF.

* download to laptop
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename                = 'c:\test1.png'
      filetype                = 'BIN'
    TABLES
      data_tab                = lt_content_rec
    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;Edited by: Joaquin Recio Huertas on Feb 15, 2011 2:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 13:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704676#M1578346</guid>
      <dc:creator>former_member383774</dc:creator>
      <dc:date>2011-02-15T13:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving file using SO_ATTACHMENT_INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704677#M1578347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry, I don't know why all the return characters are gone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try again:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to do something that should be simple, but somehow it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a report, get a file from your pc using GUI_UPLOAD, save it using SO_ATTACHMENT_INSERT, retrieve it using SO_ATTACHMENT_READ and SO_CONTENT_FROM_KPRO_GET and finally save it back into the pc using GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using png files because I'd like to save images. The file I get back is corrupted. It has some missing data and I don't know why. Can anyone with experience using those FM's maybe see what I'm doing wrong? Thanks a lot in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Joaquin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first part of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONSTANTS lc_general  TYPE sofd-folrg  VALUE 'B'.

DATA: lt_content      TYPE TABLE OF soli,
      lt_header       TYPE TABLE OF soli,
      ls_content      TYPE soli,
      lv_filename     TYPE string,
      lt_content_rec  TYPE TABLE OF soli,
      lt_header_rec   TYPE TABLE OF soli,
      lv_attach_id    TYPE soodk,
      ls_folder_id    TYPE soodk.

SELECTION-SCREEN BEGIN OF BLOCK 0001.

PARAMETERS:      p_datei  TYPE localfile LOWER CASE.

SELECTION-SCREEN END OF BLOCK 0001.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_datei.
  DATA:
    file_table  TYPE filetable,
    action TYPE i,
    rc TYPE sysubrc.

  FIELD-SYMBOLS:
    &amp;lt;file&amp;gt; TYPE file_table.

  CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog
    EXPORTING
      default_extension       = 'PNG'
    CHANGING
      file_table              = file_table
      rc                      = rc
      user_action             = action
    EXCEPTIONS
      file_open_dialog_failed = 1
      cntl_error              = 2
      error_no_gui            = 3
      not_supported_by_gui    = 4
      OTHERS                  = 5.
  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.

  CHECK action = cl_gui_frontend_services=&amp;gt;action_ok.

  READ TABLE file_table INDEX 1 ASSIGNING &amp;lt;file&amp;gt;.

  p_datei = &amp;lt;file&amp;gt;.

START-OF-SELECTION.

  lv_filename = p_datei.

* upload file from laptop.
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = lv_filename
      filetype                = 'BIN'
    TABLES
      data_tab                = lt_content
    EXCEPTIONS
      file_open_error         = 1
      file_read_error         = 2
      no_batch                = 3
      gui_refuse_filetransfer = 4
      invalid_type            = 5
      no_authority            = 6
      unknown_error           = 7
      bad_data_format         = 8
      header_not_allowed      = 9
      separator_not_allowed   = 10
      header_too_long         = 11
      unknown_dp_error        = 12
      access_denied           = 13
      dp_out_of_memory        = 14
      disk_full               = 15
      dp_timeout              = 16
      OTHERS                  = 17.

  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.
    EXIT.
  ENDIF.


* get folder to store the file
  CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
    EXPORTING
      region                = lc_general  "General
    IMPORTING
      folder_id             = ls_folder_id
    EXCEPTIONS
      communication_failure = 1
      owner_not_exist       = 2
      system_failure        = 3
      x_error               = 4
      OTHERS                = 5.
  IF sy-subrc NE 0.
    "error message
    EXIT.
  ENDIF.

* store file
  CALL FUNCTION 'SO_ATTACHMENT_INSERT'
    EXPORTING
      object_id                  = ls_folder_id
      attach_type                = 'BIN'
    IMPORTING
      attach_id                  = lv_attach_id
    TABLES
      objcont                    = lt_content
      objhead                    = lt_header
    EXCEPTIONS
      active_user_not_exist      = 1
      object_type_not_exist      = 2
      operation_no_authorization = 3
      owner_not_exist            = 4
      parameter_error            = 5
      substitute_not_active      = 6
      substitute_not_defined     = 7
      x_error                    = 8
      system_failure             = 9
      communication_failure      = 10
      OTHERS                     = 11.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    "error message
    EXIT.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 13:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704677#M1578347</guid>
      <dc:creator>former_member383774</dc:creator>
      <dc:date>2011-02-15T13:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving file using SO_ATTACHMENT_INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704678#M1578348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;second part:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* read file
  CALL FUNCTION 'SO_ATTACHMENT_READ'
    EXPORTING
      object_id                  = ls_folder_id
      attach_id                  = lv_attach_id
    TABLES
      objcont                    = lt_content_rec
      objhead                    = lt_header_rec
    EXCEPTIONS
      active_user_not_exist      = 1
      object_not_exist           = 2
      operation_no_authorization = 3
      owner_not_exist            = 4
      parameter_error            = 5
      substitute_not_active      = 6
      substitute_not_defined     = 7
      x_error                    = 8
      communication_failure      = 9
      system_failure             = 10
      OTHERS                     = 11.

  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.
    EXIT.
  ENDIF.

* read content of file
  CALL FUNCTION 'SO_CONTENT_FROM_KPRO_GET'
    TABLES
      objcont = lt_content_rec.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    EXIT.
  ENDIF.

* download to laptop
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename                = 'c:\test1.png'
      filetype                = 'BIN'
    TABLES
      data_tab                = lt_content_rec
    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;Thanks a lot in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 13:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-file-using-so-attachment-insert/m-p/7704678#M1578348</guid>
      <dc:creator>former_member383774</dc:creator>
      <dc:date>2011-02-15T13:17:07Z</dc:date>
    </item>
  </channel>
</rss>

