<?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 pdf smartform error! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519828#M238838</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 manage to send pdf to email with attachment, but getting this error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"An unrecognized token BT28.35" was found"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  statics:  ls_doc     type sodocchgi1,&lt;/P&gt;&lt;P&gt;            lv_lines   type i,&lt;/P&gt;&lt;P&gt;            ls_objhead type soli_tab,&lt;/P&gt;&lt;P&gt;            i_objpack  type table of sopcklsti1 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;            i_objtxt   type table of solisti1   WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;            i_objbin   type table of solisti1   WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;            i_reclist  type table of somlreci1  wiTH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERT_OTF'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FORMAT                = 'PDF'&lt;/P&gt;&lt;P&gt;      MAX_LINEWIDTH         = 132&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      BIN_FILESIZE          = lv_filesize&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      OTF                   = gs_output-otfdata&lt;/P&gt;&lt;P&gt;      LINES                 = gt_lines&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ERR_MAX_LINEWIDTH     = 1&lt;/P&gt;&lt;P&gt;      ERR_FORMAT            = 2&lt;/P&gt;&lt;P&gt;      ERR_CONV_NOT_POSSIBLE = 3&lt;/P&gt;&lt;P&gt;      ERR_BAD_OTF           = 4&lt;/P&gt;&lt;P&gt;      OTHERS                = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh: i_objpack, i_objtxt, i_objbin, i_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;convert to bin&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT gt_lines into gs_lines.&lt;/P&gt;&lt;P&gt;    TRANSLATE gs_lines USING '~'.&lt;/P&gt;&lt;P&gt;    CONCATENATE gs_buffer gs_lines INTO gs_buffer.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRANSLATE gs_buffer USING '~'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt;    i_objbin = gs_buffer.&lt;/P&gt;&lt;P&gt;    APPEND i_objbin.&lt;/P&gt;&lt;P&gt;    SHIFT gs_buffer LEFT BY 255 PLACES.&lt;/P&gt;&lt;P&gt;    IF gs_buffer IS INITIAL.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="7" type="ul"&gt;&lt;P&gt;Create Message Body&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Title and Description&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  concatenate 'Invoice' ls_rseg-belnr&lt;/P&gt;&lt;P&gt;  into i_objtxt separated by space.&lt;/P&gt;&lt;P&gt;  append i_objtxt.&lt;/P&gt;&lt;P&gt;  describe table i_objtxt lines lv_lines.&lt;/P&gt;&lt;P&gt;  read table i_objtxt index lv_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_Doc-obj_name = 'INVOICE'.&lt;/P&gt;&lt;P&gt;  concatenate 'TSL Invoice' ls_rseg-belnr into ls_Doc-obj_descr&lt;/P&gt;&lt;P&gt;    separated by space.&lt;/P&gt;&lt;P&gt;  ls_doc-expiry_dat = sy-datum + 10.&lt;/P&gt;&lt;P&gt;  ls_Doc-sensitivty = 'F'.&lt;/P&gt;&lt;P&gt;  ls_Doc-doc_size = lv_lines * 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear i_reclist.&lt;/P&gt;&lt;P&gt;  i_reclist-receiver = gv_emailaddr.&lt;/P&gt;&lt;P&gt;  i_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;  append i_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear i_objpack-transf_bin.&lt;/P&gt;&lt;P&gt;  i_objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;  i_objpack-head_num = 0.&lt;/P&gt;&lt;P&gt;  i_objpack-body_start = 1.&lt;/P&gt;&lt;P&gt;  i_objpack-body_num = lv_lines.&lt;/P&gt;&lt;P&gt;  i_objpack-doc_type = 'RAW'.&lt;/P&gt;&lt;P&gt;  append i_objpack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;(pdf-Attachment)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  i_objpack-transf_bin = 'X'.&lt;/P&gt;&lt;P&gt;  i_objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;  i_objpack-head_num = 0.&lt;/P&gt;&lt;P&gt;  i_objpack-body_start = 1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Länge des Attachment ermitteln&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  describe table i_objbin lines lv_lines.&lt;/P&gt;&lt;P&gt;  read table i_objbin index lv_lines.&lt;/P&gt;&lt;P&gt;  i_objpack-doc_size = lv_lines * 255.&lt;/P&gt;&lt;P&gt;  i_objpack-body_num = lv_lines.&lt;/P&gt;&lt;P&gt;  i_objpack-doc_type = 'PDF'.&lt;/P&gt;&lt;P&gt;  i_objpack-obj_name = 'INVOICE'.&lt;/P&gt;&lt;P&gt;  concatenate 'TSL Invoice' ls_rseg-belnr into i_objpack-obj_descr&lt;/P&gt;&lt;P&gt;    separated by space.&lt;/P&gt;&lt;P&gt;  append i_objpack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      document_data              = ls_doc&lt;/P&gt;&lt;P&gt;      put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      packing_list               = i_objpack&lt;/P&gt;&lt;P&gt;      object_header              = ls_objhead&lt;/P&gt;&lt;P&gt;      CONTENTS_BIN               = i_objbin&lt;/P&gt;&lt;P&gt;      contents_txt               = i_objtxt&lt;/P&gt;&lt;P&gt;      receivers                  = i_reclist&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;      document_not_sent          = 2&lt;/P&gt;&lt;P&gt;      document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;      operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;      parameter_error            = 5&lt;/P&gt;&lt;P&gt;      x_error                    = 6&lt;/P&gt;&lt;P&gt;      enqueue_error              = 7&lt;/P&gt;&lt;P&gt;      others                     = 8.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    message e398(00) with 'Email ERS invoice failed'&lt;/P&gt;&lt;P&gt;     ls_rseg-belnr into g_dummy.&lt;/P&gt;&lt;P&gt;    cf_retcode = sy-subrc.&lt;/P&gt;&lt;P&gt;    PERFORM protocol_update.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Sep 2006 04:01:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-01T04:01:47Z</dc:date>
    <item>
      <title>email pdf smartform error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519828#M238838</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 manage to send pdf to email with attachment, but getting this error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"An unrecognized token BT28.35" was found"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  statics:  ls_doc     type sodocchgi1,&lt;/P&gt;&lt;P&gt;            lv_lines   type i,&lt;/P&gt;&lt;P&gt;            ls_objhead type soli_tab,&lt;/P&gt;&lt;P&gt;            i_objpack  type table of sopcklsti1 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;            i_objtxt   type table of solisti1   WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;            i_objbin   type table of solisti1   WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;            i_reclist  type table of somlreci1  wiTH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERT_OTF'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FORMAT                = 'PDF'&lt;/P&gt;&lt;P&gt;      MAX_LINEWIDTH         = 132&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      BIN_FILESIZE          = lv_filesize&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      OTF                   = gs_output-otfdata&lt;/P&gt;&lt;P&gt;      LINES                 = gt_lines&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ERR_MAX_LINEWIDTH     = 1&lt;/P&gt;&lt;P&gt;      ERR_FORMAT            = 2&lt;/P&gt;&lt;P&gt;      ERR_CONV_NOT_POSSIBLE = 3&lt;/P&gt;&lt;P&gt;      ERR_BAD_OTF           = 4&lt;/P&gt;&lt;P&gt;      OTHERS                = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh: i_objpack, i_objtxt, i_objbin, i_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;convert to bin&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT gt_lines into gs_lines.&lt;/P&gt;&lt;P&gt;    TRANSLATE gs_lines USING '~'.&lt;/P&gt;&lt;P&gt;    CONCATENATE gs_buffer gs_lines INTO gs_buffer.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRANSLATE gs_buffer USING '~'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt;    i_objbin = gs_buffer.&lt;/P&gt;&lt;P&gt;    APPEND i_objbin.&lt;/P&gt;&lt;P&gt;    SHIFT gs_buffer LEFT BY 255 PLACES.&lt;/P&gt;&lt;P&gt;    IF gs_buffer IS INITIAL.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="7" type="ul"&gt;&lt;P&gt;Create Message Body&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Title and Description&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  concatenate 'Invoice' ls_rseg-belnr&lt;/P&gt;&lt;P&gt;  into i_objtxt separated by space.&lt;/P&gt;&lt;P&gt;  append i_objtxt.&lt;/P&gt;&lt;P&gt;  describe table i_objtxt lines lv_lines.&lt;/P&gt;&lt;P&gt;  read table i_objtxt index lv_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_Doc-obj_name = 'INVOICE'.&lt;/P&gt;&lt;P&gt;  concatenate 'TSL Invoice' ls_rseg-belnr into ls_Doc-obj_descr&lt;/P&gt;&lt;P&gt;    separated by space.&lt;/P&gt;&lt;P&gt;  ls_doc-expiry_dat = sy-datum + 10.&lt;/P&gt;&lt;P&gt;  ls_Doc-sensitivty = 'F'.&lt;/P&gt;&lt;P&gt;  ls_Doc-doc_size = lv_lines * 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear i_reclist.&lt;/P&gt;&lt;P&gt;  i_reclist-receiver = gv_emailaddr.&lt;/P&gt;&lt;P&gt;  i_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;  append i_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear i_objpack-transf_bin.&lt;/P&gt;&lt;P&gt;  i_objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;  i_objpack-head_num = 0.&lt;/P&gt;&lt;P&gt;  i_objpack-body_start = 1.&lt;/P&gt;&lt;P&gt;  i_objpack-body_num = lv_lines.&lt;/P&gt;&lt;P&gt;  i_objpack-doc_type = 'RAW'.&lt;/P&gt;&lt;P&gt;  append i_objpack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;(pdf-Attachment)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  i_objpack-transf_bin = 'X'.&lt;/P&gt;&lt;P&gt;  i_objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;  i_objpack-head_num = 0.&lt;/P&gt;&lt;P&gt;  i_objpack-body_start = 1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Länge des Attachment ermitteln&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  describe table i_objbin lines lv_lines.&lt;/P&gt;&lt;P&gt;  read table i_objbin index lv_lines.&lt;/P&gt;&lt;P&gt;  i_objpack-doc_size = lv_lines * 255.&lt;/P&gt;&lt;P&gt;  i_objpack-body_num = lv_lines.&lt;/P&gt;&lt;P&gt;  i_objpack-doc_type = 'PDF'.&lt;/P&gt;&lt;P&gt;  i_objpack-obj_name = 'INVOICE'.&lt;/P&gt;&lt;P&gt;  concatenate 'TSL Invoice' ls_rseg-belnr into i_objpack-obj_descr&lt;/P&gt;&lt;P&gt;    separated by space.&lt;/P&gt;&lt;P&gt;  append i_objpack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      document_data              = ls_doc&lt;/P&gt;&lt;P&gt;      put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      packing_list               = i_objpack&lt;/P&gt;&lt;P&gt;      object_header              = ls_objhead&lt;/P&gt;&lt;P&gt;      CONTENTS_BIN               = i_objbin&lt;/P&gt;&lt;P&gt;      contents_txt               = i_objtxt&lt;/P&gt;&lt;P&gt;      receivers                  = i_reclist&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;      document_not_sent          = 2&lt;/P&gt;&lt;P&gt;      document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;      operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;      parameter_error            = 5&lt;/P&gt;&lt;P&gt;      x_error                    = 6&lt;/P&gt;&lt;P&gt;      enqueue_error              = 7&lt;/P&gt;&lt;P&gt;      others                     = 8.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    message e398(00) with 'Email ERS invoice failed'&lt;/P&gt;&lt;P&gt;     ls_rseg-belnr into g_dummy.&lt;/P&gt;&lt;P&gt;    cf_retcode = sy-subrc.&lt;/P&gt;&lt;P&gt;    PERFORM protocol_update.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:01:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519828#M238838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: email pdf smartform error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519829#M238839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where you r passing the email id in your report, i think there is some problem with getting the host where you r sending the email, plz check that.&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>Fri, 01 Sep 2006 04:06:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519829#M238839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: email pdf smartform error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519830#M238840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am receiving the pdf in my email, but with the error i mentioned in my first posting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;email is in field gv_emailaddr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519830#M238840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: email pdf smartform error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519831#M238841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GO THROUGH THIS LINK WHICH LL GIVE YOU BRIEF IDEA ABOUT SENDING PDF FILE USING MAIL, THAT YOU CAN IMPLEMNET IN YUOR PROGRAM&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/example_code.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/example_code.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;/people/emmanuele.prudenzano/blog/2006/08/03/an-advanced-solution-for-sending-email-from-solution-manager-or-crm&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>Fri, 01 Sep 2006 08:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-pdf-smartform-error/m-p/1519831#M238841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T08:53:18Z</dc:date>
    </item>
  </channel>
</rss>

