<?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>Question Re: How to send Dynamic Interactive Forms through mail? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585047#M2075147</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 think webdynpro for ABAP is suitable for dyanmic interactive form. Please try in that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;suma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 May 2009 08:39:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-07T08:39:54Z</dc:date>
    <item>
      <title>How to send Dynamic Interactive Forms through mail?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaq-p/5585046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to sent Interactive Forms as attachment through mails.&lt;/P&gt;&lt;P&gt;Everything works fine as long as the Content of this Interactive Form stays static.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I add dynamic elements and test this in SFP, they work.&lt;/P&gt;&lt;P&gt;However when they get sent by mail, the dynamic content is lost and gets back Static.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone has ABAP code or any other solutions so that the PDF gets send as an Dynamic Form?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maarten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 07:58:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaq-p/5585046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T07:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to send Dynamic Interactive Forms through mail?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585047#M2075147</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 think webdynpro for ABAP is suitable for dyanmic interactive form. Please try in that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;suma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 08:39:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585047#M2075147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T08:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to send Dynamic Interactive Forms through mail?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585048#M2075148</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'm working from the Web UI. This is BSP. Here I add 2 Methods (GET_PDF and SEND_MAIL).&lt;/P&gt;&lt;P&gt;The GET_PDF gets all data for the form and then sends the FORMOUTPUT to the SEND_MAIL method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I add the PDF as following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I convert it to BINARY and then I add it as attachment.&lt;/P&gt;&lt;P&gt;Do I need to add it as another TYPE or ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+  CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      BUFFER                = ip_formoutput-PDF "PDF file from function module&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    APPEND_TO_TABLE       = ' '&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;    OUTPUT_LENGTH         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      BINARY_TAB            = lt_att_content_hex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lo_document-&amp;gt;add_attachment(&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_attachment_type    = 'PDF'&lt;/P&gt;&lt;P&gt;      i_attachment_subject = 'Your appointment Details'&lt;/P&gt;&lt;P&gt;      i_att_content_hex    = lt_att_content_hex ).+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maarten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 08:48:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585048#M2075148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T08:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to send Dynamic Interactive Forms through mail?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585049#M2075149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgot to set parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      fp_docparams-DYNAMIC = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the call of the function module of this form&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 06:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-send-dynamic-interactive-forms-through-mail/qaa-p/5585049#M2075149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T06:56:26Z</dc:date>
    </item>
  </channel>
</rss>

