<?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 EMAIL ATTACHMENT NOT IN RIGHT FORMAT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937846#M387708</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;Can anyone help me on my program that requires email with attachment. I have completed the codes that sends the email however the attachment has a bad format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The attachment should be in text format, contains a table data, which should be seperated by tabs and carriage return. I had tested this in other boxes where it was working well however in ECC60, the attachment shows a long strip of string seperated by tabs and a wierd character (a box?) that signifies a carriage return. The width of the text file became 1022 characters until carriage return (for another row?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The contents of the attachment is stored in an internal table, which is used for FM SO_NEW_DOCU*. I had seen some solutions/codes of other threads however the solution does not suit on my problem. I had also applied some codes for active unicode enabled programs on the concatenation with a hex type (tab or carriage return)to the string unto the internal table, such us for variables of  type x, applied some type casting and the class cl_abap_char_utilities. Still, it doesn't work on the attachment. What seems to be the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also a solution where I get to change the value of a field of a standard table. However we are not authorized to do so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Feb 2007 17:12:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-20T17:12:04Z</dc:date>
    <item>
      <title>EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937846#M387708</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;Can anyone help me on my program that requires email with attachment. I have completed the codes that sends the email however the attachment has a bad format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The attachment should be in text format, contains a table data, which should be seperated by tabs and carriage return. I had tested this in other boxes where it was working well however in ECC60, the attachment shows a long strip of string seperated by tabs and a wierd character (a box?) that signifies a carriage return. The width of the text file became 1022 characters until carriage return (for another row?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The contents of the attachment is stored in an internal table, which is used for FM SO_NEW_DOCU*. I had seen some solutions/codes of other threads however the solution does not suit on my problem. I had also applied some codes for active unicode enabled programs on the concatenation with a hex type (tab or carriage return)to the string unto the internal table, such us for variables of  type x, applied some type casting and the class cl_abap_char_utilities. Still, it doesn't work on the attachment. What seems to be the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also a solution where I get to change the value of a field of a standard table. However we are not authorized to do so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 17:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937846#M387708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T17:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937847#M387709</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;&amp;lt;b&amp;gt;Here is custom sample code for E-mail purpose&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*---------------------------------------------------------*

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report ZSEND
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

report zsend .

tables: kna1.

* data for send function
data doc_data like sodocchgi1.
data object_id like soodk.
data objcont like soli occurs 10 with header line.
data receiver like somlreci1 occurs 1 with header line.

select * from kna1 where anred like 'C%'.
write:/ kna1-kunnr, kna1-anred.

* send data internal table
concatenate kna1-kunnr kna1-anred
into objcont-line separated by space.

append objcont.
endselect.

* insert receiver (sap name)
refresh receiver.
clear receiver.
move: sy-uname to receiver-receiver,
'X' to receiver-express,
'B' to receiver-rec_type.
append receiver.

* insert mail description
write 'Sending a mail through abap'
to doc_data-obj_descr.

call function 'SO_NEW_DOCUMENT_SEND_API1'
exporting
document_data = doc_data
importing
new_object_id = object_id
tables
object_content = objcont
receivers = receiver
exceptions
too_many_receivers = 1
document_not_sent = 2
document_type_not_exist = 3
operation_no_authorization = 4
parameter_error = 5
x_error = 6
enqueue_error = 7
others = 8.


*---------------------------------------------------------*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward suitable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:44:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937847#M387709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T18:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937848#M387710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need use the CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF  for a Line break in the Atachment,&lt;/P&gt;&lt;P&gt;you have the data in the internal table, so after completing the firstline add the above line feed class and append the internal table,you need to append this for every line break&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937848#M387710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T18:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937849#M387711</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;Is it possible to use a text format on the Function Module "O_NEW_DOCUMENT_ATT_SEND_API1" in ECC 6.0? Beacuse alot of your examples are using XLS Format attachments. I had been attaching text fomat file in the mail and when I open the text attachment, the expected format is not satisfied. Still the result is a long string (max1022 char). It should be a tab-delimited text file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 07:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937849#M387711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T07:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937850#M387712</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;&amp;lt;b&amp;gt;Yes it is possible.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of 'XLS' you can use 'TXT' or 'ASC' (Ascii format) depending on your requirement.&amp;lt;/b&amp;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;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward suitable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 10:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937850#M387712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T10:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937851#M387713</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;&amp;lt;b&amp;gt;All the possible attachment types &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which can be used in this function module - SO_NEW_DOCUMENT_SEND_API1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for attachment purpose &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; in ECC 6.0 Version are as follows -&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
-------------------------------------
Type        Description
---------------------------------------
ALI   ABAP list document        
ARC   Archive object (image)    
BCS   External Document Storage 
BIN   Binary document           
DLI   Distribution list         
EXT   PC document               
FAX   Fax                       
FOL   Folder                    
GRA   SAP Business Graphics     
OBJ   Business object           
OFO   Object folder             
OTF   OTF document              
R3I   IDoc                      
RAW   SAP editor document       
SCR   SAPscript document        
URL   Link to Internet/Intranet 
WIM   Work item                 
XXL   Document for list viewer &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward suitable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 10:52:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937851#M387713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T10:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: EMAIL ATTACHMENT NOT IN RIGHT FORMAT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937852#M387714</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;Try this code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data method1 like sy-ucomm.&lt;/P&gt;&lt;P&gt;data g_user like soudnamei1.&lt;/P&gt;&lt;P&gt;data g_user_data like soudatai1.&lt;/P&gt;&lt;P&gt;data g_owner like soud-usrnam.&lt;/P&gt;&lt;P&gt;data g_receipients like soos1 occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_document like sood4 .&lt;/P&gt;&lt;P&gt;data g_header like sood2.&lt;/P&gt;&lt;P&gt;data g_folmam like sofm2.&lt;/P&gt;&lt;P&gt;data g_objcnt like soli occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_objhead like soli occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_objpara like selc occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_objparb like soop1 occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_attachments like sood5 occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_references like soxrl occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data g_authority like sofa-usracc.&lt;/P&gt;&lt;P&gt;data g_ref_document like sood4.&lt;/P&gt;&lt;P&gt;data g_new_parent like soodk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of g_files occurs 10 ,&lt;/P&gt;&lt;P&gt;        text(4096) type c,&lt;/P&gt;&lt;P&gt;      end of g_files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: fold_number(12) type c,&lt;/P&gt;&lt;P&gt;      fold_yr(2) type c,&lt;/P&gt;&lt;P&gt;      fold_type(3) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: pFile Like rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-Screen On Value-Request For pFile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_FILENAME_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DEF_FILENAME = space&lt;/P&gt;&lt;P&gt;      DEF_PATH     = pFile&lt;/P&gt;&lt;P&gt;      MASK         = 'All files'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      FILENAME     = pFile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  g_user-sapname = sy-uname.&lt;/P&gt;&lt;P&gt;  call function 'SO_USER_READ_API1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      user      = g_user&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      user_data = g_user_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fold_type = g_user_data-outboxfol+0(3).&lt;/P&gt;&lt;P&gt;  fold_yr = g_user_data-outboxfol+3(2).&lt;/P&gt;&lt;P&gt;  fold_number = g_user_data-outboxfol+5(12).&lt;/P&gt;&lt;P&gt;  clear g_files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh: g_objcnt,&lt;/P&gt;&lt;P&gt;           g_objhead,&lt;/P&gt;&lt;P&gt;           g_objpara,&lt;/P&gt;&lt;P&gt;           g_objparb,&lt;/P&gt;&lt;P&gt;           g_receipients,&lt;/P&gt;&lt;P&gt;           g_attachments,&lt;/P&gt;&lt;P&gt;           g_references,&lt;/P&gt;&lt;P&gt;           g_files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method1 = 'SAVE'.&lt;/P&gt;&lt;P&gt;  g_document-foltp = fold_type.&lt;/P&gt;&lt;P&gt;  g_document-folyr = fold_yr.&lt;/P&gt;&lt;P&gt;  g_document-folno = fold_number.&lt;/P&gt;&lt;P&gt;  g_document-objtp = g_user_data-object_typ.&lt;/P&gt;&lt;P&gt;*g_document-objdes = 'testing by program'.&lt;/P&gt;&lt;P&gt;*g_document-folrg = 'O'.&lt;/P&gt;&lt;P&gt;*g_document-objlen = '0'.&lt;/P&gt;&lt;P&gt;*g_document-file_ext = 'TXT'.&lt;/P&gt;&lt;P&gt;  g_header-objdes = 'Checking email by program'.&lt;/P&gt;&lt;P&gt;*g_header-file_ext = 'TXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SO_DOCUMENT_REPOSITORY_MANAGER'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      method       = method1&lt;/P&gt;&lt;P&gt;      office_user  = sy-uname&lt;/P&gt;&lt;P&gt;      ref_document = g_ref_document&lt;/P&gt;&lt;P&gt;      new_parent   = g_new_parent&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      authority    = g_authority&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      objcont      = g_objcnt&lt;/P&gt;&lt;P&gt;      objhead      = g_objhead&lt;/P&gt;&lt;P&gt;      objpara      = g_objpara&lt;/P&gt;&lt;P&gt;      objparb      = g_objparb&lt;/P&gt;&lt;P&gt;      recipients   = g_receipients&lt;/P&gt;&lt;P&gt;      attachments  = g_attachments&lt;/P&gt;&lt;P&gt;      references   = g_references&lt;/P&gt;&lt;P&gt;      files        = g_files&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      document     = g_document&lt;/P&gt;&lt;P&gt;      header_data  = g_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method1 = 'ATTCREATEFROMPC'.&lt;/P&gt;&lt;P&gt;  g_files-text = pfile.&lt;/P&gt;&lt;P&gt;  append g_files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SO_DOCUMENT_REPOSITORY_MANAGER'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      method       = method1&lt;/P&gt;&lt;P&gt;      office_user  = g_owner&lt;/P&gt;&lt;P&gt;      ref_document = g_ref_document&lt;/P&gt;&lt;P&gt;      new_parent   = g_new_parent&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      authority    = g_authority&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      objcont      = g_objcnt&lt;/P&gt;&lt;P&gt;      objhead      = g_objhead&lt;/P&gt;&lt;P&gt;      objpara      = g_objpara&lt;/P&gt;&lt;P&gt;      objparb      = g_objparb&lt;/P&gt;&lt;P&gt;      recipients   = g_receipients&lt;/P&gt;&lt;P&gt;      attachments  = g_attachments&lt;/P&gt;&lt;P&gt;      references   = g_references&lt;/P&gt;&lt;P&gt;      files        = g_files&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      document     = g_document&lt;/P&gt;&lt;P&gt;      header_data  = g_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method1 = 'SEND'.&lt;/P&gt;&lt;P&gt;  g_receipients-recnam = 'MK085'.&lt;/P&gt;&lt;P&gt;  g_receipients-recesc = 'B'.&lt;/P&gt;&lt;P&gt;  g_receipients-sndex = 'X'.&lt;/P&gt;&lt;P&gt;  append  g_receipients.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SO_DOCUMENT_REPOSITORY_MANAGER'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      method       = method1&lt;/P&gt;&lt;P&gt;      office_user  = g_owner&lt;/P&gt;&lt;P&gt;      ref_document = g_ref_document&lt;/P&gt;&lt;P&gt;      new_parent   = g_new_parent&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      authority    = g_authority&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      objcont      = g_objcnt&lt;/P&gt;&lt;P&gt;      objhead      = g_objhead&lt;/P&gt;&lt;P&gt;      objpara      = g_objpara&lt;/P&gt;&lt;P&gt;      objparb      = g_objparb&lt;/P&gt;&lt;P&gt;      recipients   = g_receipients&lt;/P&gt;&lt;P&gt;      attachments  = g_attachments&lt;/P&gt;&lt;P&gt;      references   = g_references&lt;/P&gt;&lt;P&gt;      files        = g_files&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      document     = g_document&lt;/P&gt;&lt;P&gt;      header_data  = g_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOpe this helps.&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Seema&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 10:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-attachment-not-in-right-format/m-p/1937852#M387714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T10:55:14Z</dc:date>
    </item>
  </channel>
</rss>

