Sending/receiving  Mail by Online Interactive PDF Forms

Hai friends,
             Following screnario is my first Online interactive PDF form.
     1) User has to give the input like Employee Number,Employee Name,Employee Mail id  in the Online PDF form.When user press submit button the detail which he has entered has to be sent to the entered Mail id.
           2) According to that I can transfer the pdf file without the data which i has entered like Employee Number,Employee Name,Employee Mail id i,e with empty content.
       3) But In my Pdf file should contain all the details i have entered.
       4)  I have created my interactive form with the following properties
            Layout type: zcl layout
            Interface type :XML Schema Based Interface.
I have attached my code here.
I don't know where the conflict occurs.
Could you please check it out my code.let me know the conflict.
DATA: FM_NAME           TYPE RS38L_FNAM,
      FP_DOCPARAMS      TYPE SFPDOCPARAMS,
      lt_att_content_hex type SOLIX_TAB ,
      FP_OUTPUTPARAMS   TYPE SFPOUTPUTPARAMS,
     fp_result TYPE fpformoutput.
     data:wa_empdet type zsat_emp.
       data: input_node1 type ref to if_wd_context_node.
     data:ip_xtr type xString.
       input_node1 = wd_context->get_child_node( 'EMPDET' ).
       input_node1->get_attribute(  EXPORTING name = 'EMP_NO'
                              IMPORTING value = wa_empdet-EMP_NO ).
       input_node1->get_attribute(  EXPORTING name = 'EMP_NAME'
                              IMPORTING value = wa_empdet-EMP_NAME ).
       input_node1->get_attribute(  EXPORTING name = 'FEEDBACK'
                              IMPORTING value = wa_empdet-FEEDBACK ).
      input_node1->get_attribute(  EXPORTING name = 'EMAIL'
                              IMPORTING value = wa_empdet-EMAIL ).
Sets the output parameters and opens the spool job
*CALL FUNCTION 'FP_JOB_OPEN'
CHANGING
   IE_OUTPUTPARAMS = FP_OUTPUTPARAMS
EXCEPTIONS
   CANCEL          = 1
   USAGE_ERROR     = 2
   SYSTEM_ERROR    = 3
   INTERNAL_ERROR  = 4
   OTHERS          = 5.
*IF SY-SUBRC <> 0.
*ENDIF.
Language and country setting (here US as an example)
*fp_docparams-langu   = 'E'.
*fp_docparams-country = 'US'.
*FP_DOCPARAMS-FILLABLE = 'X'.
  DATA lo_nd_pdf TYPE REF TO if_wd_context_node.
  DATA lo_el_pdf TYPE REF TO if_wd_context_element.
  DATA ls_pdf TYPE wd_this->element_pdf.
  DATA lv_pdfsource LIKE ls_pdf-pdfsource.
navigate from <CONTEXT> to <PDF> via lead selection
  lo_nd_pdf = wd_context->get_child_node( name = wd_this->wdctx_pdf ).
get element via lead selection
  lo_el_pdf = lo_nd_pdf->get_element(  ).
get single attribute
  lo_el_pdf->get_attribute(
    EXPORTING
      name =  `PDFSOURCE`
    IMPORTING
      value = lv_pdfsource ).
call function 'FP_FUNCTION_MODULE_NAME'
  EXPORTING
    i_name     = 'ZTEMPSAMPLE1'
  IMPORTING
    e_funcname = fm_name.
CALL FUNCTION fm_name
  EXPORTING
  /1BCDWB/DOCPARAMS        = FP_DOCPARAMS
  /1bcdwb/docxml           = ip_xtr
IMPORTING
   /1BCDWB/FORMOUTPUT       =  fp_result
EXCEPTIONS
   USAGE_ERROR              = 1
   SYSTEM_ERROR             = 2
   INTERNAL_ERROR           = 3
   OTHERS                   = 4
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Close the spool job
*CALL FUNCTION 'FP_JOB_CLOSE'
  IMPORTING
    E_RESULT             =
EXCEPTIONS
   USAGE_ERROR          = 1
   SYSTEM_ERROR         = 2
   INTERNAL_ERROR       = 3
   OTHERS               = 4.
*IF SY-SUBRC <> 0.
*ENDIF.
CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
  EXPORTING
     buffer                = lv_pdfsource
     APPEND_TO_TABLE       = 'X'
IMPORTING
    OUTPUT_LENGTH         =
  tables
    binary_tab            = lt_att_content_hex.
CLASS cl_bcs DEFINITION LOAD.
DATA:
lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
lo_send_request = cl_bcs=>create_persistent( ).
Message body and subject
DATA:
lt_message_body TYPE bcsy_text VALUE IS INITIAL,
lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
APPEND 'Hi,' TO lt_message_body.
append ' ' to lt_message_body.
APPEND 'Please fill the attached form and send it back .'
TO lt_message_body.
append ' ' to lt_message_body.
APPEND 'Thank You,' TO lt_message_body.
lo_document = cl_document_bcs=>create_document(
i_type = 'RAW'
i_text = lt_message_body
i_subject = 'Interactive Form' ).
DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
TRY.
    lo_document->add_attachment(
    EXPORTING
    i_attachment_type = 'PDF'
    i_attachment_subject = 'Pdf Form'
I_ATTACHMENT_SIZE =
I_ATTACHMENT_LANGUAGE = SPACE
I_ATT_CONTENT_TEXT =
I_ATTACHMENT_HEADER =
    i_att_content_hex = lt_att_content_hex ).
  CATCH cx_document_bcs INTO lx_document_bcs.
ENDTRY.
Add attachment
Pass the document to send request
lo_send_request->set_document( lo_document ).
Create sender
DATA:
lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
*DATA:
*lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL.
*lo_sender = cl_sapuser_bcs=>create( sy-uname ).
Set sender
lo_send_request->set_sender(
EXPORTING
i_sender = lo_sender ).
Create recipient
DATA:
eaddr TYPE ADR6-SMTP_ADDR.
eaddr = wa_empdet-email.
Data:
lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
lo_recipient = cl_cam_address_bcs=>create_internet_address( eaddr ).
*lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
Set recipient
lo_send_request->add_recipient(
EXPORTING
i_recipient = lo_recipient
i_express = 'X' ).
lo_send_request->add_recipient(
EXPORTING
i_recipient = lo_recipient
i_express = 'X' ).
Send email
DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
lo_send_request->send(
EXPORTING
i_with_error_screen = 'X'
RECEIVING
result = lv_sent_to_all ).
COMMIT WORK.
message 'The form has been emailed to the recipient' type 'I'.
clear wa_empdet.
Regards,
Keerthi.

Hi,
If i understand well you success to send the form without value , that's right ?
Now you are not able to popualte the fields inside your forms with what user set ?
Regards

Similar Messages

  • Online Interactive PDF Form Error

    recently i was doing the Online Interactive PDF Form tutorial which is found on <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#50">here</a>
    and i encounter errors on it
    below is the errors
    Internal Server Error
    Failed to process request. Please contact your system administrator.
    Root Cause:
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Severe : PDFDocument is NULL. Exception : Service call exception; nested exception is: java.net.UnknownHostException: pwdf3102
    but the problem is i now currently is using Trial Slim Edition. and is there anyway to check whether the server allow or support Online Interactive PDF Form....
    or anyway to solve this problem...

    hi Sumit Malhotra,
    i try ur configuration guide and the user into ADScaller group and test this thing
    <b>Checking the User and Password</b>
    and the result as below
    <b>Request</b>
    POST /AdobeDocumentServices/Config?style=document HTTP/1.1
    Host: l31017:50100
    Content-Type: text/xml; charset=UTF-8
    Connection: close
    Cookie: <value is hidden>
    Cookie: <value is hidden>
    Authorization: <value is hidden>
    Content-Length: 675
    SOAPAction: ""
    <?xml version="1.0" encoding="UTF-8" ?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><pns:rpData xmlns:pns='urn:AdobeDocumentServicesVi'><ns1:rpStrings xmlns:ns1='urn:AdobeDocumentServicesVi' xmlns:pns='urn:com.adobe'><pns:RpString><pns:name></pns:name><pns:value></pns:value></pns:RpString></ns1:rpStrings><ns2:rpStreams xmlns:ns2='urn:AdobeDocumentServicesVi' xmlns:pns='urn:com.adobe'><pns:RpStream><pns:name></pns:name><pns:value>AA==</pns:value></pns:RpStream></ns2:rpStreams></pns:rpData></SOAP-ENV:Body></SOAP-ENV:Envelope>
    <b>Response</b>
    HTTP/1.1 200 OK
    Connection: close
    Server: SAP J2EE Engine/7.00
    Content-Type: text/xml; charset=UTF-8
    Date: Wed, 19 Sep 2007 07:04:29 GMT
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ><SOAP-ENV:Body><rpl:rpDataResponse xmlns:rpl='urn:AdobeDocumentServicesVi'><rpl:Response xmlns:pns='urn:com.adobe'><pns:rpStrings><pns:RpString><pns:name>TraceString</pns:name><pns:value>Begin trace
    Required stream: "PDFDocument" not found.
    </pns:value></pns:RpString><pns:RpString><pns:name>Error_Level</pns:name><pns:value>0</pns:value></pns:RpString><pns:RpString><pns:name>Results</pns:name><pns:value></pns:value></pns:RpString><pns:RpString><pns:name>VersionInfo</pns:name><pns:value>705.20051005114147.242570</pns:value></pns:RpString></pns:rpStrings></rpl:Response></rpl:rpDataResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
    then after that i try to redeploy my application but then still the same
    i get back the same errors
    <b>Detailed Error Information
    Detailed Exception Chain</b>
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Severe : PDFDocument is NULL. Exception : Service call exception; nested exception is:
         java.net.UnknownHostException: pwdf3102
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:385)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1117)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:330)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:297)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:706)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:660)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:228)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:56)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:40)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    wonder anyone could be me out 

  • I tried to submit an interactive PDF form,  but received a message: Error opening URL to submit the

    I tried to submit an interactive PDF form,  but received a message: Error opening URL to submit the form. My form is created in InDesign cs6 and exported to interactive PDF with text fields. any one has some tips to deal wiith this?

    Did you get this resolved? I am doing the same thing, passing in a url to the submitForm method via cURL. I am submitting as FDF, and specifying the #FDF at end of URL.
    Currently working against a localhost url, which is allowed and trusted in acrobat to rule out the enhanced security of the reader.
    Any ideas?

  • Extend SAP R/3 4.x with Interactive PDF Forms

    Hi there,
    In this blog of Matthias Zeller <a href="http:///people/matthias.zeller2/blog/2004/06/22/the-hidden-secret-of-adobe-reader hidden secret of Adobe Reader</a> there is the following paragraph:
    <i>While mySAP ERP 2004 provides many business scenarios using Interactive Forms out-of-the-box, a lot of customers have asked me how they can use the new Interactive Forms with existing R/3 applications. Therefore, I would like to encourage you to vote for my SAP TechEd presentation proposal ("Extend your SAP R/3 4.x applications with interactive PDF forms"). I plan to discuss how you can connect your existing SAP R/3 applications with SAP Web AS 6.40 to enable interactive form workflows.</i>
    Can somebody tell me if this presentation is somewhere on SDN? Or can somebody tell me where i can find more information about this subject?
    Thx in advance.
    Regards Maarten.

    Hi Maarten,
    Here's a brief run-down on how you could make use of SAP/Adobe Interactive Forms and Workflow:
    1) Remember that a form is really just a UI for collecting data.  A PDF form can be used to collect data online (connected to your SAP system) or offline, e.g. you could send it as a mail attachment, fill it in, and email it to a central point for uploading into the system. 
    2) The main requirements for using SAP Interactive Forms are:
    a) A NW04 (6.40) or NW04s (7.00) WebAs (Java Stack) to run Adobe Document Services. This is the critical component that assigns ReaderRights to the document, e.g. so that the user can change the data and save it on the document.   You could run a WebAs like this alongside your R/3 4.7 - e.g. if you have an XI system or Enterprise Portal you could use that system to run Adobe Document Services.  Every form you create must be generated via the Adobe Document Services to get the Reader Rights. Note: Get a NW04s environment if you can - as this release has usefuul new features such as loading attachments to the PDF, using digital signatures, etc.
    b) A WebDynpro application to generate the Adobe form via Adobe Document Services, and to execute the Adobe Form when using online mode, and to upload offline forms.  Tutorials on how to do this are available in SDN - have a look at the Adobe section within WebDynpro. Note: From ECC 5.0 there are some standard WebDynpros apps provided, but in R/3 4.7 you will need to write your own.
    c) There's also a licensing requirement for any production custom forms (SAP provided forms and cosmetic changes to those forms are free) so make sure you get your SAP account manager involved to help sort out how your intended usage will fit in with your current license agreement and any discounts that may apply.
    3) To use the "form" with workflow has some additional requirements:
    a) You need to store the data entered via the form somewhere that is accessible by Workflow.  The easiest approach here is to use the standard form handling technique Internet Service Requests.  Transaction QISRSCENARIO will let you define all of the form fields, give you BADIs for doing validation, raising workflow events, etc.  Also from ECC 5.0 onwards using Adobe forms as the form entry is a standard option for this technique, so this will help reduce the upgrade impact when you eventually do upgrade.
    b) Assuming you use ISRs, have your WebDynpro App call the function module ISR_PROCESS_EVENT to pass the data to R/3 and do the validation checks.
    c) Assuming you use ISRs, you use the BOR object for notification such as BUS2078, as your main object for the workflow.  The form data is attached to the notification and can be retrieved using function module ISR_SPECIAL_DATA_GET.
    d) If you want to call your WebDynpro App from SBWP (I take you don't have Enterprise Portal?) then use transaction WF_EXTSRV to define the web service to call your WebDynpro app and generate a workflow task for it.  Also you must configure transaction WF_HANDCUST to enable R/3 to handle web services.  Note: If you do have the Enterprise Portal, you can use transaction SWFVISU instead.
    I'd strongly recommend you read the ISR cookbook at http://service.sap.com/isr as well.   ISRs aren't the only way to use Adobe forms with R/3 but they are extremely handy if you want to use your Adobe form with Workflow.
    As for Lotus Notes, you can use your WebDynpro app to generate and send/receive a form to/from an email address.  You can also put a hyperlink in your workflow task to call your WebDynpro app and use RSWUWFML2 (swap to Enhanced Notifications when you upgrade) to send out a mail with the hyperlink attached as per usual.
    You'll also find some useful threads on Adobe forms and Workflow in the SDN BPM Forum.  So if you have workflow specific questions try raising them in the BPM forum.
    Enjoy!
    Regards,
    Jocelyn

  • Offline Interactive PDF Forms Using EMail with WebDynpro for ABAP

    These is a tutorial on implementing Offline Interactive PDF Forms using Email to both send out and receive the form back using WebDynpro for Java.
    Is it possible to implement the same using WebDynpro for ABAP, specifically receiving the forms via email server.
    Regards,
    Mark

    Hi Mark,
    Check this out :
    https://www.sdn.sap.com/irj/sdn/interactiveforms-elearning
    Go to section :
    Send, Receive, and Process Interactive Forms via Email in SAP NetWeaver Application Server ABAP (RIG session 4A)
    and for the ABAP WebDynpro :
    SAP Interactive Forms by Adobe in Web Dynpro for ABAP (Session 3A) .
    I managed to make it work in my internal sytem.
    Goodluck.
    Cheers,
    Danny

  • Acrobat 9Pro - How to add a submit (to email address) button for an online fillable PDF form.

    Sorry if this has been answered before, but this is my first time trying to add a submit button to the bottom of a online fillable pdf form. I have 5 of these froms to do. I need the user to go to my website, click the link to open an online fillable form, fill it out and click a submit button in the form, so it can be emailed to an individual. I thought I followed all the steps correctly in Adobe Acrobat 9 Pro, every which way I could find, but the form gives me an error "this operation not permitted", it's in IE, created in Vista and I now have a headache. Do I need to add extra code to my website html somewhere?
    Does anyone have the neccessary steps to make this work, a video would be even better. Do I have to have this LifeCycle Designer thing?
    My url in case anyone wants to see it. http://www.dyenetwebdesign.com/DaysGoneBy/forms/index2.html
    Thanks sooo much!!
    Deb Dye

    Some comments based on your application:
    1. It looks like might likely exceed the 500 use limit, in that case to not use Reader Rights or you will violate the license. The cost beyond that can be negotiated with Adobe (if they will talk to you), but don't expect it to be check. In that case, submit the form data as and FDF file. This file can be imported into the form at your end and get exactly the same results as if the whole form had been sent. The FDF submission does not require Reader Rights. The parent will still be able to print the form, but saving would require having Acrobat, not Reader.
    2. A lot of the data appears to be personal in terms of the name of children, addresses, etc. It would be a good idea to check with legal counsel about submitting such information by e-mail, particularly for children. E-mail is not generally considered secure, unless you possibly used some form of secure e-mail. For that reason you should consider submitting the data to a web script that would be stored someplace for you to obtain it and possibly send you a notice of receipt. A secure website is preferred for this use. You should keep the option open for anyone to submit the form in paper if they object to the potential security risks with your online submission method.
    I know those put rinkles in your forms, but for such an application it is a good idea to consider the potential consequences if you do not worry about the form security and number of uses. The potential is to put you out of business or more. OK, an extremist view, but worth considering.

  • Cannot open/view/access interactive pdf form using Safari

    I was unable to open interactive pdf forms from websites with Safari 6 on my iMac. I received the following message:
    Quote
    To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html
    For further support, go to www.adobe.com/support/products/acrreader.html
    Unquote
    I still couldn't view/open/access the form even after I upgraded to Version 11.0.04 of Adobe Reader.
    This problem happens only (I believe) after I updated OS X and Safari. Previously I was able to do it without any trouble as recently as July 2013. However, I don't encounter any issue if it is just an ordinary pdf document especailly if it can be downloaded to be opened later.
    As far as I can ascertain, I don't have any plug-in except for McAfee SiteAdvisor 2.0, 1Password 3.9.0, AdBlock 2.5.46 (which is disabled), Evernote Web Clipper 5.7, and Open In Internet Explorer 1.0 (by Parallels).
    I am using OS X Mountain Lion 10.8.5 and Safari 6.0.5 (8536.30.1).
    Can anyone please help? Thank you.

    Thank you, Carolyn Samit and andyBall_uk, for your prompt responses and suggestions.
    Although I didn't follow your recommendations, they gave me some idea regarding what to do to resolve the issue.
    The solution is actually very simple. I uninstalled my existing Adobe Reader (using CleanMyMac 2 but I believe moving the app to trash should do it as well), downloaded a fresh copy (version 11.0.04) and reinstalled it again. When the software was being installed, it asked whether I wanted to make Adobe Reader (AR) the default PDF reader. I indicated OK and allowed installation to proceed and finish.
    After installation of AR, I reopened Safari and went to a website to click the link to the pdf form. And lo and behold, I was able to open/access/view the document! It worked with a second website.
    So the lesson is when installing an upgrade remember to make Adobe Reader the default PDF reader.
    I hope that this procedure can help others resolve their issue if they have a similar problem.

  • Interactive PDF form in Activities - Error in Content Server

    Hi Experts,
    We would like to display an interactive PDF form in the attachements of activities.
    But the new windows shows nothing.
    First we thought this was an error due to Interactive Forms, but then we found out that Content Server has obviously some problems with this generated PDF and assigns a Content Length = 0 to all these generated documents.
    Please find attached some ICM traces, which shows this
    content length = 0.
    M  ICTSYS: AddHeaderField 'Content-Type' -> 'application/pdf'
    M  ICTSYS: AddHeaderField 'Content-Disposition' -> 'inline; filename="Interview.pdf"'
    M  ICTSYS: AddHeaderField 'X-compId' -> 'Interview.pdf'
    M  ICTSYS: AddHeaderField 'X-Content-Length' -> '0 '
    M  ICTSYS: AddHeaderField 'X-compDateC' -> '2007-02-06'
    M  ICTSYS: AddHeaderField 'X-compTimeC' -> '07:35:17'
    M  ICTSYS: AddHeaderField 'X-compDateM' -> '2007-02-06'
    M  ICTSYS: AddHeaderField 'X-compTimeM' -> '07:35:17'
    M  ICTSYS: AddHeaderField 'X-compStatus' -> 'online'
    M  ICTSYS: AddHeaderField 'X-pVersion' -> '0046'
    M  ICTSYS: AddHeaderField 'X-docProt' -> 'dru'
    M  ICTSYS: SetData data=00000000 off=0 len=0
    M  ICTSYS: SetStatus 200 OKICTSYS: AddHeaderField 'server' -> 'SAP Web Application Server (1.0;700)'
    A  SYSTEM-CALL RFC_ID id RFC_VALUE value
    A  RFC-SYSTEM> ID[0, type :0]: len:4 val:HTTP
    All suggestion are welcome!
    Best regards,
    Levente Bartha

    To have information entered once in a text field, and then have information repeat in subsequent fields, the name of each text field form needs to be identical. In screen shot, both fields are named the same

  • Interactive PDF Form Speed Issues

    Hello!  I am looking for some info for an interactive PDF form issue.
    A little info on the form:
    Created in Acrobat PRO 9.4.5, Windows.
    File Size: 559KB
    Ultimately the file is placed up on a website, it is 3 pages with a colored background on each page and a lineart logo.  It has text fields for things like name, phone etc., has some radio buttons, drop-downs, two links to other pages within the site and two links to other PDF docs.  It does not have a flowable layout and is only being populated by the end user.  The form has buttons on the bottom to email, print, save & clear the form.
    The form tested fine from our file servers and/or local machines, the client had no issues testing when we sent them the files.  We start to get into issues once the file was posted on their site and the results from testing vary significantly as I would suspect can be somewhat expected due to machine, browser, Acrobat and/or Reader variances etc. but maybe there is something we can do to improve how it functions(?)
    Some end-users have come back saying that the form takes a while until they can enter text in any of the fields following their first click in one of the form fields to begin using the form.  Also commented on was that the PDF pages scroll slowly as they move further down the page.  We do not have any details about any browser versions, settings etc. and also did not receive this feedback directly.
    Internal testing we have found some of the following accessing the form from their site (the site is a DNN site using a file handling module),
    I am going to try and limit the info below as it could get very lengthy w/ all the various outcomes:
    I did not have any issues on first click or scrolling in either IE8 or Firefox4, I do however have some slowness when I click the links that go to other pages on their site and also the links to the other PDF documents (I can only get this to occur when I am accessing the form through the link on their site it does not occur when I test any other way either locally from my desktop, our file server or even when I right click the file that resides on the web server and open w/ either of my browsers).
    A co-worker tested every which way and could not get any slowness at all any way that she tried.  Another tested and found IE on their machine to have the hangups but not Firefox.  And a third had the initial click slowness (but also said he had that when he saved the file from the site to his desktop and opened it), please note browser & Reader/Acrobat versions probably vary from each person testing.
    What I am feeling is that the form itself is ok just that the user variances can produce different outcomes but I just want to check and see if anyone else has had anything similar or has any suggestions to maybe "speed" the form up covering a variety of users.
    Thanks very much!
    Robin

    When you fix it in Acrobat, what you want to do specifically is remove whatever action is present in the button and add a "Submit a form" action to the Mouse Up event. Specify that you want to submit the entire PDF and use the mailto URL you showed earlier, making sure there are no spaces.
    For it to work in desktop versions of Reader prior to 11, you need to Reader-enabled the document by selecting: File > Save as Other > Reader Extended PDF > Enable More Tools
    The button won't work with the native iOS PDF viewer, but certain other PDF viewers such as Adobe Reader and Readdle's PDF Expert allow you to email a filled-in form and will support the button action.

  • Non-interactive PDF forms & licences

    Hello,
    I need an advice. I created WD application using non-interactive PDF form. Actually I used UI element InteractiveForm but we didn't place any editable element (text box, dropdown list, ...) into it. We just want to generate the PDF form dynamically. And now we need to know whether it's necessary to buy any licence for this use case. Does somebody know that?
    After deployment I can't open the PDF form. The report "500   Internal Server Error ..." is displayed and there is message "... The error is: com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to UPDATEDATAINPDF ..." in defaltTrace file.
    Thank you in advance!
    Regards
    Zbynek

    Thank you very much! The answer was really helpful. But I have one more question. I have changed preview type from INTERACTIVE FORM to PRINT FORM as you recommended but it still doesn't work.
    There is written "
    ...PDFObjectRuntimeException: Processing exception during a "UsageRights" operation.
    com.adobe.ProcessingException: Could not retrieve a password for credential: ReaderRights.
    " in defaultTrace file.
    Till now I didn't asked SAP for sending credential. Now I did that. Do you think that it could be the problem? I thought it's not necessary for non-interactive forms.
    Regards,
    Zbynek

  • Programmatically filling in fields of an interactive PDF form from a database

    I have a web app written in Grails, but it doesn't matter. I ask is there possible way to send the data from database into the the third party interactive PDF form? If yes, what tools from Adobe I would need to make this kind of web app plugin? Is it possible to view Javascript code of once made PDF?

    You can simply create an FDF or XFDF file and return that to the browser.

  • Interactive pdf  forms in Webdynpro Java

    Hi All,
    I am doing enhancements in the Interactive pdf form. In the first page already there are some fields/text and Now i want to import the pdf file from the Next page.
    Could any one please suggest me how to import the pdf file from the Next page(Next subform/page2) onwards.
    Thanks,
    Archana.

    Hi,
    Refer this link,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/wdjava%20archive/online%20interactive%20pdf%20form.pdf
    Regards,
    Sunaina Reddy T

  • Interactive PDF forms

    Hi,
    In Our project we are creating an Interactive PDF form. This form shows some data that we get from the bapi.While creating the form there is no issue.
    We are also saving the generated PDF's at some location in the server. Through a different application we are accessing these old stored pdf's. Now when we save the PDF to our local machine and try to open it we get a message saying:
    >"This document contained certain rights to enable special features in Adobe Reader. The document has been changed since it was created and these rights are no longer valid. Please contact the author for the original version of this document".
    With this message all the javascript written on the PDF form get disabled and due to this few of the data are not getting displayed.
    What can be the reason for this? Does it has something to do with ADS configuration on the server?
    Please reply.
    Thanks & regards,
    Sujit

    Hi, Sujit!
    To me it seems that the document somehow gets modified while you process. Try to save your file on the local machine under a new name, enable and save again.
    Regards,
    Thomas

  • Interactive PDF form on Android, can I make a form field to open camera and use photo in field?

    If I have an interactive PDF form on Android, is there any way to make a form field that will open the camera and insert the photo in the field?

    One alternative would be to create a web form in FormsCentral and use the attachment feature.

  • How do I set up my 3G to send/receive mail from MS exchange?

    How do I set up my 3G to send/receive mail from MS exchange?

    Welcome to the Apple Community.
    If you can't get your mail to work on Snow Leopard after June 30, you might want to try one of these approaches
    1. Configuring Mail in Snow Leopard
    2. Delete your mail account from Mail preferences and set it up again using the Mail Server Information.
    Some users have apparently encountered issues using this information in pre-Lion set ups (I haven't), Roger Wilmut has kindly provided instructions for those who find themselves with this problem.
    Entering iCloud email settings manually in Snow Leopard or Leopard

Maybe you are looking for