Emailing Your Own Attachment from an XFA Form

Hello there
Is there any way to send an email with an attachment from a XFA PDF created in designer?, where the attachment is not one of the "built-in" options (XML, pdf etc.).
I want to be able to email the encrypted XML.
If not, how can XML data be securely submitted?
Many thanks

That link contains the following:
LiveCycle ES4 provides support for rendering XFA-based forms into HTML5 such that the forms can be opened in browsers with HTML5 support, including those running on mobile devices like iPad. The HTML5 rendition of the forms maintains the layout of the form design and supports most form logic (such as JavaScript, form calc, and form validations) embedded in the XFA form template. This way, your technology investments in XFA forms are carried over easily to devices where running of the Adobe Reader plugin is not feasible.
Has anybody actually used this and, if so, what has been your experience? 

Similar Messages

  • You can't access your own content from the top menu anymore?

    Apple made a monumental FAIL decision for me regarding the new Apple TV.
    They really want to force feed their iTunes store to us so badly that they have now stripped all of your own content from the main menu.
    No longer can you go to TV Shows and watch... well, YOUR TV shows. Apple buried all of your personal content a couple of menus deep. In fact, the entire Music category is Now gone! Unbelievable!
    And I can't use album covers for a screen saver anymore? That was a great feature! i guess they don't want music associated with a TV device. Very bad decision in my opinion.
    This unit is a step BACK, not forward.
    Am is missing something? is there a way to get this content back to the front so I can easily access my stuff?

    Frozo wrote:
    Apple made a monumental FAIL decision for me regarding the new Apple TV.
    agreed
    They really want to force feed their iTunes store to us so badly that they have now stripped all of your own content from the main menu.
    agreed. the appletv is now an itunes store device (with your own content as a side issue).
    No longer can you go to TV Shows and watch... well, YOUR TV shows. Apple buried all of your personal content a couple of menus deep. In fact, the entire Music category is Now gone! Unbelievable!
    agreed
    And I can't use album covers for a screen saver anymore? That was a great feature! i guess they don't want music associated with a TV device. Very bad decision in my opinion.
    agreed
    This unit is a step BACK, not forward.
    agreed
    Am is missing something? is there a way to get this content back to the front so I can easily access my stuff?
    you're not missing anything unfortunately.

  • Email XLS excel attachment from ABAP

    Hi,
    I am trying to email an excel attachment from ABAP, but when I open in excel, it says not a recognizable format, but when I click OK it does open as a tab-delimited file and look OK.
    Any ideas please?

    Hi,
    Please check this link
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    aRs

  • PL/SQL code to capture email with an Attachment from the POP server

    Hey guys,
    With the help of this forum and Billy I am able to capture the email from POP3 server and display it to the user. But now my query is how can I get an Attachment from the email using PL/SQL's UTL-TCP method ? Right now the attachment is displayed as string of characters.
    Thanks.

    Seeing that none-one has bitten on this, I will have a very quick nibble.
    Dealing with attachments can be complex - especially if binary. Attachment will be (should be) encoded using 7 bits. This requires you to un-encode it.
    Attachments also require you to parse the mail body looking for the attachment boundary markers (as specified in the e-mail header).
    The RFCs detailing the Internet Message Body and attachments will have the actual gory technical stuff.
    It will make a lot more sense when looking at an existing MIME message ("raw" e-mail) when reading these RFCs - as you can fairly easily see how the MIME message was created with the attachment boundaries and headers.
    Of course - also realise that as soon as you have decoded that attachment into a "proper" binary for your platform, you have a potentially malicious payload that could be "accidentally" executed. So safe guards are also needed.
    Some of the RFC's covering these are:
    # RFC 2049 - Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples
    # RFC 2048 - Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures
    # RFC 2047 - MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text
    # RFC 2046 - Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types
    # RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies
    # RFC 2044 - UTF-8, a transformation format of Unicode and ISO 10646
    # RFC 2112 - The MIME Multipart/Related Content-type
    Full list of RFCs at http://www.faqs.org/rfcs/rfc-titles.html

  • Sending an Email with Excel Attachment from Local directory

    Hi,
    I have a requirement : I want to send an email with an attachment which is exist on local  directory and currently I am using
    cl_bcs classes
    Thanks,
    Moderator message: Welcome to SCN!
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on Aug 4, 2011 5:15 PM

    Hi,
    I have a requirement : I want to send an email with an attachment which is exist on local  directory and currently I am using
    cl_bcs classes
    Thanks,
    Moderator message: Welcome to SCN!
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on Aug 4, 2011 5:15 PM

  • Opening a list item pdf attachment from the display form in a new window

    I have a list setup in which attachments are enabled.
    Users attach pdf's to list items.
    When they go into the display form for a list item and click on a pdf attachment in the "Attachments" area at the bottom of the form, it opens in the same browser window.
    I would like to amend this so it opens in a new window.  Has anyone found a fix for this?
    Thanks in advance,
    Mark

    Hi ,
    Put the code below in your DispForm.aspx page .The you can open the attachments in a new window. Including all the other links on the DispForm.aspx page .
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript">
    $(function(){ 
    $('a').click(function(){
                    window.open(this.href);
                   return false;
    });</script>
    Thanks,
    Entan Ming

  • How to read attachment from adobe interactive form

    Hi,
    My requirement is- vendor should fill all the detail in an offline interactive form and attach necessary documents in the form itself. How can i read the attachments from the form inside my program and how can i store it in SAP. I am using FM ' SMUM_XML_PARSE' to read all the data in the form.
    Best Regards,
    Tofan

    mailForm
    Parameters: bUI, cTo, [cCc], [cBcc], [cSubject], [cMsgBody]
    Returns: nothing
    This method exports the form data and mails the resulting FDF file as an attachment to all recipients,
    with or without user interaction depending on the value of  bUI.
    If it is set to true then the rest of the parameters are used to seed the compose new message window that is displayed to the user.
    If bUI is set to false, the cTo parameter is required and all others are optional.
    You must use a semicolon u201C;u201D to separate multiple recipients in cTo, cCc, cBcc parameters.
    The length limit for cSubject and cMsgBody is 64k bytes.
    Example:
    /* This will pop up the compose new message window */
    this.mailForm(true);
    /* This will send out the mail with the attached FDF file to fun1 @ fun . com and fun2 @ fun . com */
    this.mailForm(false, "fun1 @ fun . com; fun2 @ fun . com", "", "", "This is the subject", "This is the body of the mail.");
    Note:
    This is a Windows-only feature. In addition, the client machine must have its
    default mail program configured to be MAPI enabled in order to use this method.
    I had to change the code:
    instead of this.mailDoc :
    var myDoc = event.target;
    myDoc.mailDoc(false, "fun1 @ fun . com; fun2 @ fun . com", "", "", "This is the subject", "This is the body of the mail." );       
    But the outlook new message window still opens...
    Any Idea's?
    Eran

  • SOA Suite 11g - Email with attachments (Attachment from SOAP attachment)

    Hello,
    Can any one please help as to how I can do the following in Oracle SOA 11g:
    Using a BPEL process how can I send an Email with attachments where the attachment itself is coming from a SOAP attachment.
    The back ground is that we have portal sites from where the users can upload a document and then from their a SOA service is invoked and the attachment would be passed as (SOAP attachments) and then emails have to be send to users containing this uploaded document as the attachment.
    Thanks.
    feel free to email me [email protected]

    Yes, I need all supported standards and their version of SOA Suite 11g because my customer wants to upgrade from 10g to 11g, especially all supported standards and version number of OBPM 11g and OBPM 10g.
    A people has pasted all support standards and version number of OBPM 10g. I get a standard list of OSB.
    OBPM 11g supports:
    BPEL
    xml 1.0
    Servlet 2.3\JSP1.2 (J2EE 1.2),
    Servlet 2.4\JSP2.0(J2EE 1.4),
    Servlet 2.5\JSP2.1(Java EE 1.5)
    UDDI
    SOAP
    WSDL
    WS-BPEL for People
    XML Schema
    XPDL
    SOAP
    XQuery
    XLIFF
    XSL map
    XSLT
    UML
    Ant
    EJB 2.1, JPA/EJB 3.0
    JAAS
    Spring
    JAXB 1.0, JAXB 2.0
    XHTML
    HTML
    JSP
    JSF
    JSR-168
    XSQL
    WS-Policy
    But I cannot find the document about version number of the above standards

  • Sending email with excel attachment from an ABAP report

    Hello All,
    I am using the function module SO_DOCUMENT_SEND_API1 to send an e-mail with an excel attachment.
    The code works fine for  less than 255 characters in each row of excel file.But for more than 255 characters , the excel file received has data upto 255 characters only.
    Can someone please suggest how to send excel file with more than 255 characters in each row ?
    Regards,
    KK

    check below code
    FORM excelrep .
      DATA :l_syuzeit TYPE sy-uzeit,
            l_time(5) TYPE c,
            l_ampm(2) TYPE c,
            l_subject(255) TYPE c.
      CLEAR t_xls.
      REFRESH t_xls.
      l_syuzeit = sy-uzeit.
      IF t_final_data1[] IS NOT INITIAL.
        PERFORM fill_header.
        LOOP AT t_final_data1 WHERE status NE space.
          t_xls-jobname = t_final_data1-jobname.
          WRITE t_final_data1-act_start_date TO t_xls-act_start_date.
          WRITE t_final_data1-est_start_time TO t_xls-est_start_time.
          WRITE t_final_data1-act_start_time TO t_xls-act_start_time.
          WRITE t_final_data1-est_end_time TO t_xls-est_end_time.
          WRITE t_final_data1-act_end_time TO t_xls-act_end_time.
          t_xls-est_duration = t_final_data1-est_duration.
          t_xls-act_duration = t_final_data1-duration.
          t_xls-status = t_final_data1-comment.
          t_xls-process = t_final_data1-desc.
          t_xls-fill10 = c_0d.
          t_xls-fill1 = c_09.
          t_xls-fill2 = c_09.
          t_xls-fill3 = c_09.
          t_xls-fill4 = c_09.
          t_xls-fill5 = c_09.
          t_xls-fill6 = c_09.
          t_xls-fill7 = c_09.
          t_xls-fill8 = c_09.
          t_xls-fill9 = c_09.
          APPEND t_xls.
          CLEAR t_xls.
        ENDLOOP.
        l_ampm = c_am.
        IF l_syuzeit GT c_125959.
          l_syuzeit = l_syuzeit - c_120000.
          l_ampm = c_pm.
        ELSEIF l_syuzeit GT c_120000.
          l_ampm = c_pm.
        ELSEIF l_syuzeit LT c_010000.
          l_syuzeit = l_syuzeit + c_120000.
          l_ampm = c_am.
        ENDIF.
        WRITE l_syuzeit TO l_time USING EDIT MASK c_edmask.
        CONCATENATE text-070 l_time l_ampm INTO l_subject
                                      SEPARATED BY space.
        CLEAR w_doc_chng.
        w_doc_chng-obj_name = l_subject.
        w_doc_chng-obj_descr = l_subject.
        CLEAR t_objtxt.
        REFRESH t_objtxt.
        t_objtxt = text-068.
        APPEND t_objtxt.
        CLEAR t_objtxt.
        t_objtxt = space.
        APPEND t_objtxt.
        CLEAR t_objtxt.
        t_objtxt = text-069.
        APPEND t_objtxt.
        CLEAR t_objtxt.
        t_objtxt = space.
        APPEND t_objtxt.
        CLEAR t_objtxt.
        MOVE w_sysinfo TO t_objtxt.
        APPEND t_objtxt.
        CLEAR t_objtxt.
        t_objtxt = space.
        APPEND t_objtxt.
        CLEAR t_objtxt.
        CLEAR w_tab_lines.
        DESCRIBE TABLE t_objtxt LINES w_tab_lines.
        w_doc_chng-doc_size = w_tab_lines * c_255.
        CLEAR t_objpack.
        REFRESH t_objpack.
        t_objpack-body_start = c_1.
        t_objpack-body_num = w_tab_lines * c_255.
        t_objpack-doc_type = c_txt.
        APPEND t_objpack.
        CLEAR t_objpack.
        CLEAR t_objbin.
        REFRESH t_objbin.
        LOOP AT t_xls.
          t_objbin = t_xls.
          APPEND t_objbin.
          CLEAR t_objbin.
        ENDLOOP.
        CLEAR w_tab_lines.
        DESCRIBE TABLE t_objbin LINES w_tab_lines.
        CLEAR l_subject.
        CONCATENATE text-083 sy-datum l_time l_ampm INTO l_subject
                    SEPARATED BY c_uscore.
        CLEAR t_objhead.
        REFRESH t_objhead.
        t_objhead = l_subject.
        APPEND t_objhead.
        CLEAR t_objhead.
        t_objpack-transf_bin = c_x.
        t_objpack-head_start = c_1.
        t_objpack-head_num = c_1.
        t_objpack-body_start = c_1.
        t_objpack-body_num = w_tab_lines.
        t_objpack-doc_type = c_xls.
        t_objpack-obj_name = text-070.
        t_objpack-obj_descr = text-070.
        t_objpack-doc_size = w_tab_lines * c_255.
        t_objpack-mess_type =  space.
        APPEND t_objpack.
        CLEAR t_objpack.
        CLEAR t_reclist.
        REFRESH t_reclist.
        IF s_email[] IS NOT INITIAL.
          LOOP AT s_email.
            t_reclist-receiver = s_email-low.
            t_reclist-rec_type = c_u.
            APPEND t_reclist.
            CLEAR t_reclist.
          ENDLOOP.
        ENDIF.
        PERFORM mail_report.
      ELSE.
        MESSAGE e015 WITH text-072.
      ENDIF.
      CLEAR : w_doc_chng,
              t_objpack,
              t_objhead,
              t_objbin,
              t_objtxt.
      REFRESH : t_objpack,
                t_objhead,
                t_objbin,
                t_objtxt,
                t_reclist.
    ENDFORM.                    " excelrep_criticaljobs
    *&      Form  mail_report
          text
    -->  p1        text
    <--  p2        text
    FORM mail_report .
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = w_doc_chng
          commit_work                = c_x
        TABLES
          packing_list               = t_objpack
          object_header              = t_objhead
          contents_bin               = t_objbin
          contents_txt               = t_objtxt
          receivers                  = t_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc NE 0.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE i015 WITH text-071.
          WHEN 2.
            MESSAGE i015 WITH text-072.
          WHEN 4.
            MESSAGE i015 WITH text-073.
          WHEN OTHERS.
            MESSAGE i015 WITH text-074.
        ENDCASE.
      ELSE.
        MESSAGE s015 WITH text-081.
      ENDIF.
    ENDFORM.                    " mail_report

  • Is there an app now (or in the process of creation) where you can make your own ringtone from a purchased song on iTunes?

    I want to be able to make my ringtone because not all songs are available as ringtones. Is there an Apple application that can make a unique ringtone? I've tried apps from the Store, but they sometimes get erased from my phone in Sync.

    You have been able to do this for years.
    Google will find several ways to do this.

  • Extract attachment from Infopath and set columns

    Good morning,
    I have a requirement to extract an attachment from an InfoPath form.  I have achieved that with no problem using these instructions -
    http://support.microsoft.com/kb/2517906
    What I would also like to do when this document gets copied over to the document library, is to also set a column (ie. customer number).  Based on this column the document gets moved to the correct folder via SPD workflow.  I'm guessing I need
    to add some additional script to the InfoPath form?

    Hi kelsnz,
    According to your description, my understanding is that you want to extract an attachment from an InfoPath form then save it into a library.
    For this issue, there is no OOB way to achieve it. I suggest you develop your own custom workflow activity to do it. Here is a similar article, please take a look at:
    http://spappdev.blogspot.in/2009/03/programatically-extract-attachments.html
    http://www.bizsupportonline.net/blog/2010/04/top-10-questions-infopath-file-attachments/ (section 6)
    Or, you can use  a third party solution to do it:
    https://askmanisha.wordpress.com/2013/10/04/extracting-info-path-attachment-using-nintex/
    http://www.deviantpoint.com/post/2009/06/06/Custom-SharePoint-Designer-workflow-for-extracting-InfoPath-attachment-fields.aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Unable to send emails to specific sites from ipad or pc

    The following is the undelivered message response without the attachment.
    This is the mail system at host mwinf5d59.orange.fr.
    I am sorry to have to inform you that your message could not
    be delivered to one or more recipients. It is attached below.
    For further assistance, please send mail to postmaster.
    If you do so, please include this problem report. You can
    delete your own text from the attached returned message.
                     The mail system
    host dixons.co.uk[85.158.136.51] said: 553
    information. (#5.7.1)
    Also
    This is the mail system at host mwinf5d59.orange.fr.
    I am sorry to have to inform you that your message could not
    be delivered to one or more recipients. It is attached below.
    For further assistance, please send mail to postmaster.
    If you do so, please include this problem report. You can
    delete your own text from the attached returned message.
                     The mail system
    host dsgiplc.com[195.245.231.67] said: 553
    information. (#5.7.1)
    <E-mail Edited by Host>

    http://www.apple.com/support/iphone/assistant/airprint/

  • USEREXIT to adjust the rebate credit memo request to your own require

    We are using function module SD_BONUS_CREDIT_NOTE_CREATE in one of our rebate program.
    This Functional provides the option to use USEREXIT to adjust the rebate credit memo request to your      own requirements.
    With Present form of  functionl module it take standard doc type to  create the  rebate credit memo request.
    So Question here which  are userexit we have in this FM  which can be used to create  the  rebate credit memo request to our requirement.
    Has any body used this FM before to this length..
    appreacite your help
    Thanks
    rao

    Hi Serma,
    I haven't use this FM. I only can advise you how to find user exits in this (any) FM.
    Open your FM via SE37 and then try to find in this Function Group any CALL CUSTOMER-FUNCTION 'xxx' ..., where xxx is a 3-digit number which refers to the relevant FM EXIT_<FG>_xxx.
    <FG> is the name of the Function group to which the FM belongs to.
    When you find such an EXIT-Function, take a look at the parameters. When you find parameters which satisfy your needs, go ahead and build your EXIT enhancement in the predefined ZX-Include (you can find this inside the FM EXIT_<FG>_xxx).
    I hope this helps,
    Heinz

  • Reading attachments from adobe interactive form

    Hi,
    My requirement is- vendor should fill all the detail in an offline interactive form and attach necessary documents in the form itself. How can i read the attachments from the form inside my program and how can i store it in SAP. I am using FM ' SMUM_XML_PARSE' to read all the data in the form.
    Best Regards,
    Tofan

    Hi Ali,
    Thank you for the reply. But i want to read the attachments which are attached inside the adobe forms.
    How to read the form and get all the data i know but i want to extract the attachments which are attached in the form and save it in sap.
    For example- in an adobe form customer is attaching the PAN copy, Registration certificate etc, how to read these attachment from the adobe form and store in sap?
    Regards.
    Tofan

  • Opening XFA Forms in Flex

    Hi,
    Is it possible to have certain data which is inputted in a Flex app by the user, available in a form that is then opened from within the Flex app?
    Scenario:
    Flex app with data fields and links to several embedded XFA forms.
    User inputs key data, like name, company, department, etc.
    As user then clicks on a link/button that opens a form in a new window, I want the user inputted data to populate fields in the form
    Can this be achieved?
    Using app.media I can get data from one XFA form to another. Is there a way to "broadcast" data from within Flex that is avaialble to other programs?
    My preference is for the form to open in a new window. To get the data into the form, would I need to open the form in an iFrame instead?
    Thanks,
    Niall

    Not natively. The Flash Player doed not contain a full html
    parser/renderer.
    People usually do this using an Iframe. Google this, I recall
    seeing a component that someone did that looked effective.
    Tracy

Maybe you are looking for