How to: 1. Submitt form as PDF and not XML 2. Allow user to save to computer Thanks

How to:
1. Submitt form as PDF and not XML
2. Allow user to save to computer
Thanks

Thanks For the Post!!
Please be advised that this forum is for discussions about
the Acrobat.com online services only. Your best source of questions
and answers for Acrobat would be in the
Acrobat Windows
Forums or the
Acrobat Macintosh
Forums.

Similar Messages

  • Sending PDF and not XML

    Hello,
    I am trying to send a PDF and not XML when clicking a button that I created. Heres what I did:
    1. Create the button
    2. Select it
    3. Field tab>Control Type>radio button select Submit
    4. Submit tab>in the Submit to URL: box I type the email address in this format: mailto:[email protected]
    5. Submit As: drop down list select "PDF"
    I uploaded this form to my server, downloaded Adobe Reader 8 on another computer, logged in from that other computer, but when I click on the submit email button nothing happens. It works if the form is set for XML, but not PDFs.
    Is this the correct syntax for the email address?
    What else is there that am I missing or doing wrong?
    Thank you

    Hi,
    I had this problem.
    Open the form in Acrobat Professional. Click on "Advanced" and "Enable Usage Rights in Abobe Reader". Click on "Save Now" and try it again.
    I hope this helps!
    Emma

  • Output of form so result is pdf and not xml

    I am new to Adobe Lifecycle Designer ES and have created a simple form, which will be submitted by email. When the form is emailed, the resulting output is an XML file. I need the resulting file to be a pdf, with all fields showing.
    I have searched and cannot find the means and option to do this. I would appreciate help on this matter.
    I am using LC Designer ES ver 8.2.1.
    Thanks.
    Mark K

    Yes you can.. You need to use xfa.host.importData(); method to import an XML file to your PDF. Before you do that you need to add a data connection using the XML in form and bind the fields to tags in the XML. This way, when you import the XML ,the form knows where to pupulate the XML tag values..
    Check this thread to get a sample file and XML..
    http://forums.adobe.com/thread/622594
    Hope this helps..
    Thanks
    Srini

  • How to convert from pop to imap and not lose messages downloaded or stored on my computer?

    I have several inboxes but only need to convert the mail inbox et al for cox

    Creat a new Mailbox... On My Mac, move the existing eMails to that box first.
    Then you may need to delete the POP account before setting up the IMAP account.

  • Allow users to save form responses as text or Word document?

    Is it possible to allow a respondant to save their responsesn to a .txt or .doc file upon completion of the form? 
    If this isn't possible in Adobe forms, does anyone know of another platform that would support this?
    Thanks!

    PDF and TXT or DOC are file types and file types are processed by applications. Adobe Acrobat can save to many different formats, Reader is very restricted as to what formats it can save to. Are you familiar with how Acrobat saves a PDF to the TXT or DOC format? Well it is the entire PDF and not just the fields. To save the content of the fields you need to export the form field data through a different menu option or the use of JavaScript.
    Acrobat can export to a CSV, FDF, or XFDF file type. With proper rights and JavaScript Reader could also save to the CSV, FDF, or XFDF file format. Acrobat with the use of JavaScript could create a PDF report on the fly that consist only of the field data and that file could be saved as a DOC or TXT file. Reader cannot create PDF reports.
    Using a web server and scripting on the web server opens more options.

  • How do I take a snapshot of a form in pdf and import onto a ppt slide?

    How do I take a snapshot of a form in pdf and import onto a ppt slide?

    Can't you use the standard method for taking screenshots of what is on your screen? (which depends on your platform and OS version).

  • How to convert sap script to pdf and send it as email attachment

    hi,
    my requirement is to convert a standard sales order form to pdf and send it as email attachment. get me some sample code for the same
    thanks in advance

    Hi
    See this sample code and after that use the fun module to send the mail
    SO_NEW_DOCUMENT_ATT_SEND_API1
    REPORT zzz_jaytest .
    Types Declaration
    TYPES : BEGIN OF ty_pa0001,
    pernr TYPE pa0001-pernr,
    bukrs TYPE pa0001-bukrs,
    werks TYPE pa0001-werks,
    END OF ty_pa0001.
    Internal Table Declaration
    DATA : i_pa0001 TYPE STANDARD TABLE OF ty_pa0001, "For pa0001 Details
    i_otf TYPE STANDARD TABLE OF itcoo, "For OTF data
    i_content_txt TYPE soli_tab, "Content
    i_content_bin TYPE solix_tab, "Content
    i_objhead TYPE soli_tab,
    Work Area Declaration
    w_pa0001 TYPE ty_pa0001, "For pa0001 Details
    w_res TYPE itcpp, "SAPscript output
    "parameters
    w_otf TYPE itcoo, "For OTF
    w_pdf TYPE solisti1, "For PDF
    w_transfer_bin TYPE sx_boolean, "Content
    w_options TYPE itcpo, "SAPscript output
    "interface
    Variable Declaration
    v_len_in TYPE so_obj_len,
    v_size TYPE i.
    Constants Declaration
    CONSTANTS : c_x TYPE c VALUE 'X', "X
    c_locl(4) TYPE c VALUE 'LOCL', "Local Printer
    c_otf TYPE sx_format VALUE 'OTF', "OTF
    c_pdf TYPE sx_format VALUE 'PDF', "PDF
    c_printer TYPE sx_devtype VALUE 'PRINTER', "PRINTER
    c_bin TYPE char10 VALUE 'BIN', "BIN
    c_name TYPE string VALUE 'C:\ZZZ_JAYTEST.PDF',"Downloading
    "File Name
    c_form(11) TYPE c VALUE 'ZZZ_JAYTEST'. "Form Name
    START-OF-SELECTION.
    Selecting the records from pa0001
    SELECT pernr bukrs werks FROM pa0001
    INTO TABLE i_pa0001 UP TO 10 ROWS.
    Setting the options
    w_options-tdcopies = 1 ."Number of copies
    w_options-tdnoprev = c_x."No print preview
    w_options-tdgetotf = c_x."Return of OTF table
    w_options-tddest = c_locl."Spool: Output device
    Opening the form
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    form = c_form
    device = c_printer
    language = sy-langu
    OPTIONS = w_options
    IMPORTING
    RESULT = w_res.
    LOOP AT i_pa0001 INTO w_pa0001.
    Writting into the form
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    element = 'MAIN'
    window = 'MAIN'.
    ENDLOOP.
    Closing the form
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
    RESULT = w_res
    TABLES
    otfdata = i_otf
    EXCEPTIONS
    unopened = 1
    bad_pageformat_for_print = 2
    send_error = 3
    spool_error = 4
    codepage = 5
    OTHERS = 6.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Converting OTF data to single line
    LOOP AT i_otf INTO w_otf.
    CONCATENATE w_otf-tdprintcom w_otf-tdprintpar
    INTO w_pdf.
    APPEND w_pdf TO i_content_txt.
    ENDLOOP.
    Converting to PDF Format
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
    EXPORTING
    format_src = c_otf
    format_dst = c_pdf
    devtype = c_printer
    CHANGING
    transfer_bin = w_transfer_bin
    content_txt = i_content_txt
    content_bin = i_content_bin
    objhead = i_objhead
    len = v_len_in
    EXCEPTIONS
    err_conv_failed = 1
    OTHERS = 2.
    v_size = v_len_in.
    Downloading the PDF File
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = v_size
    filename = c_name
    filetype = c_bin
    TABLES
    data_tab = i_content_bin.
    If you r using this function module check it once....
    call function 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    IMPORTING
    bin_filesize = v_len_in
    TABLES
    otf = i_otf
    lines = i_tline
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    others = 4.
    Fehlerhandling
    if sy-subrc <> 0.
    endif.
    or u can use the standard program RSTXPDFT4 to download the script into PDF format onto a particular location
    follow this link for sample program.
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci1121833,00.html
    check...
    How to send smart form via email
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp
    Regards
    Anji

  • Please explain me how I can use Form feed(\f) and Carriage return(\r)

    what is Form feed(\f) and Carriage return(\r)?
    Please explain to me.
    Thank you.

    These control characters aren't used much these days except that if you example a Windows or MSDOS text file in a binary editor you'll find each line ends with "\r\n". However when reading or writing text through classes these carriage returns will be added and removed automatically so your program doesn't see them.
    The controlls date back to teletype machines which operated rather like typewriters. Cariage return, as it's name implied, caused the print head to move back to the start of the line, line feed advanced a line (without, necessarilly, returning the carriage) and formfeed skipped to the next page.
    Newline on these machines was always "return, linefeed" because executing the carriage return on these machine could take too long. The early machines had only a single character buffer so that they had to executed the characters as quickly as they arrived. So doing the linefeed after the carriage return gave the carriage more time to return. On some teletypes if you did "linefeed, return" then the first character of the new line would often be printed somewhere in the middle of the line.
    This is the origin of the MSDOS/Windows end of line sequence.
    Many printers will still respect formfeed if printing is direct. Some will take carriage return without linefeed to allow you to start again overprinting the same line.
    However printing, these days, is seldom direct but done in bitmap form.

  • Email form and not XML

    Hello,
    How do I set the email button so that the form is mailed and not the data in XML format?
    Thank you.

    Hi Chris,
    Thanks so much for the excellent advice. It was a breeeze once I knew what to do, and clicking on the XML Source Tab brought me right to the line of code that needed to be changed. I uploaded the form to our web site and sent it to myself and the PDF arrived instead of XML.
    I do have another question. I can't find settings for Reader Extensions anywhere. I'm guessing this isn't an issue as long as the form is on our web site, but from what you say it seems like if I email the form to our users and they have it on their desktop and try to send it it won't go unless I have the RE settings correct.
    I'm a novice and trying to learn so I appreciate your patience.
    Thanks.

  • I have an iTunes account with a $25.00 credit but everytime I go to purchase a song, it goes to my credit card details. How do I use the iTunes credit and not the credit card?

    I have an iTunes account with a $25.00 credit but everytime I go to purchase a song, it goes to my credit card details. How do I use the iTunes credit and not the credit card?

    Just to confirm, you are logged into the iTunes Store using the account in which the balance exists, and the balance is showing at the top of the iTunes Store window? And you're not trying to purchase gifts for someone else?

  • How to I share Itune library, and movies with a different user on the same computer?

    How do I share Itunes and movies with a different user on the same computer?

    https://discussions.apple.com/community/itunes

  • How do we delete duplicates songs easily and not one at a time in iTunes?

    how do we delete duplicate songs easily and not one by one in iTunes?

    I've written a script called DeDuper which can help remove unwanted duplicates. See this  thread for background.
    tt2

  • How do you move a single album, and not the whole library, in iPhoto to an external hard drive?

    How do you move a single album, and not the whole library, in iPhoto to an external hard drive?

    File -> Export to a folder and copy it over.
    That will give you a folder with the images. There is no way to move an album outside of iPhoto. You would need to have a library containing it.
    Regards
    TD

  • I transferred data from my Macbook Pro to my Mac mini but it forced me to make a new user for my old data.  How do I transfer my music, pics, and docs from the "old" user to the new user (so that I only have one user instead of 2?)

    I transferred data from my Macbook Pro to my Mac mini but it forced me to make a new user for my old data.  How do I transfer my music, pics, and docs from the "old" user to the new user (so that I only have one user instead of 2?)

    Unless you transfer the files from Setup Assistant, Migration Assistant creates a new user with the data.
    To transfer the files to your first user, you have to log on this new user, and copy all your files to /Users/Shard folder. This is a folder where you can put the files you want to share between two or more users, and all users can read and write in it.
    After copying the files, go to your first user, open /Users/Shared folder, and copy the files to your user folders. If you migrated applications, you must know that they are stored in a common folder (/Applications), so you don't have to transfer them. To open /Users/Shared folder, open Go menu (in the menu bar) > Go to Folder, and type the folder

  • How do you print an email attachment and not the email itself. please.

    how do you print an email attachment and not the email itself.  please.
    This question was solved.
    View Solution.

    Hi there, if there is text in the body of the email it will print automatically when sent to an ePrint email address. The only way to just have the attachment print is for there to be no text in the email body.
    Hope that helps answer your question.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

Maybe you are looking for

  • How do I remove a Windows partition after Firmware message?

    Want to remove the windows partition on my 2006 MacBook running Leopard. I tried Bootcamp Assistant but it says I need to update my Firmware. I downloaded the update suggested and then had a message saying the firmware didn't need updating. Tried Boo

  • Drag and Drop Image in Adobe Air

    Is there a problem with the 'Drag Image' proxy, that is present in the DragManager class' doDrag method? I have tried using this and it works absolutely fine with a web application, but DOES NOT work with an AIR application.

  • Reg: Profit Center Group Upload Prog

    Hi, In profit center group upload program im using FM: BAPI_PROFITCENTERGRP_CREATE, when im trying to upload data, in the flat file, if Hierarchy level '0' is appearing once means i can able to upload, but Hierarchy level '0' appears n number of time

  • How to implement left join for the below sql.

    i need to perform left join between inventory table and purchase table and inventory table with sales table. please let me know the syntax. SELECT Tbl_ProductGroupMaster.ProdName, Tbl_ProductGroupMaster.UnitNam, Tbl_Inventory.CrDate, Tbl_Inventory.Qt

  • Cannot reinstall itunes windows

    Must install 64 bit, seems to get to the end & then rewinds.  Tried to download separately, gets stuck.  I think the problem is with the apple support portion.  I have a iPhone 4, iPod 4th, and shuffle with 2 different iTunes accounts.