<?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: sapforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514569#M236991</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check with the function Module  'SO_NEW_DOCUMENT_ATT_SEND_API1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the tables parameters, Packing List&lt;/P&gt;&lt;P&gt;          set doc_type field as 'PDF' and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will work..&lt;/P&gt;&lt;P&gt;please get back if not..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Sep 2006 08:46:27 GMT</pubDate>
    <dc:creator>Shivaji16</dc:creator>
    <dc:date>2006-09-07T08:46:27Z</dc:date>
    <item>
      <title>sapforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514568#M236990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sapforms allows to generate documents in PDF format. I would like to know if it was possible to automatically mail these documents with sapforms.&lt;/P&gt;&lt;P&gt;I know it's possible with a WAS but I would like to do it with SAP R3 4.6C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 13:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514568#M236990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T13:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: sapforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514569#M236991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check with the function Module  'SO_NEW_DOCUMENT_ATT_SEND_API1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the tables parameters, Packing List&lt;/P&gt;&lt;P&gt;          set doc_type field as 'PDF' and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will work..&lt;/P&gt;&lt;P&gt;please get back if not..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Sep 2006 08:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514569#M236991</guid>
      <dc:creator>Shivaji16</dc:creator>
      <dc:date>2006-09-07T08:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: sapforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514570#M236992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can make use of the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM send_mail USING  p_y16m_rcp_par STRUCTURE y16m_rcp_par.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Have a subject for the mail&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  g_s_document_data-obj_name = text-t02.&lt;/P&gt;&lt;P&gt;  g_s_document_data-obj_descr = text-t03.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill receiver information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  g_s_receivers-rec_type = p_y16m_rcp_par-rec_type.&lt;/P&gt;&lt;P&gt;  g_s_receivers-rec_id = p_y16m_rcp_par-rec_id.&lt;/P&gt;&lt;P&gt;  g_s_receivers-express = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND g_s_receivers TO g_t_receivers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call function to send mail&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            document_data              = g_s_document_data&lt;/P&gt;&lt;P&gt;           document_type              = 'RAW'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         PUT_IN_OUTBOX              = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         SENT_TO_ALL                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         NEW_OBJECT_ID              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         OBJECT_HEADER              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;           object_content             =  g_t_object_content&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         CONTENTS_HEX               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         OBJECT_PARA                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         OBJECT_PARB                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            receivers                  = g_t_receivers&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;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " SEND_MAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Sep 2006 08:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514570#M236992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-07T08:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: sapforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514571#M236993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the solutions.&lt;/P&gt;&lt;P&gt;I would like to know if these solutions are concerning a smtp host that will be configured somewhere in SAP or the internal SAP mailing service (workplace). It's the first case that would be interessant for me.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Sep 2006 15:07:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapforms/m-p/1514571#M236993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-07T15:07:57Z</dc:date>
    </item>
  </channel>
</rss>

