cancel
Showing results for 
Search instead for 
Did you mean: 

Interactive Form scenario: Webdynpro necessary?

Former Member
0 Kudos

Hi,

is it possible to realize an offline interactive Forms scenario only with transaction SFP and an ABAP Coding like in this document: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c2567f2b0b01-0010-b7b5-977c...

Or can I realize this only with a webdynpro?

(Offline Interactive Scenario should contain the following steps:

-interactive PDF is generated and sent by mail to customer

-when clicking on "submit", filled PDF is sent back by email to the SAP system

-data stored in the SAP system)

Thanks a lot!

regards

Maschine

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Maschine,

it is possible.

Example of sending of an adobe form by email: report BCS_EXAMPLE_6

Insert following javaScript into click event of the control Button from the library Standard for sending of the filled adobe form back:

  var myDoc = event.target;
  try {
    myDoc.mailDoc({
      bUI: false,
      cTo: "aa@bb.com",
      cCC: "",
      cSubject: "Subject",
      cMsg: ""
      });
  } catch (e) {}

Example of retrieving xml data from a filled adobe form: report FP_PDF_TEST_03

Regards

Michal

Former Member
0 Kudos

Thanks for this very good answer.