How can I fill in a form, save the form such that it cannot be further altered, and email it as it was saved?

How can I fill in a form, save the form such that it cannot be further altered, and email it as it was saved?  I created a form with 5 fields.  It is a form letter that is intended as a receipt for funds received.  I want to fill in the date, name, amount received, etc., save the form with inserted data fields so they can't be further altered, and be able to email it as a complete unalterable PDF document.  What I'm doing now, is filling in the fields, printing it, scanning it, and emailing it as an unalterable document.  The document was created on a Mac using Adobe Acrobat Pro version 10.1.13.  The document is filled in on a PC that only has Adobe reader on it, printed, scanned and emailed as an attachment. There must be a better way! 

If you have access to a ASP.net Web Server, then the submission could be FLATTENED with FDFToolkit.net and emailed without client-side email software by only using Adobe Reader.
For more information check out the following websites:
http://www.pdfemail.net/examples/
http://www.fdftoolkit.net/examples/

Similar Messages

  • How can get difference between 2 dates in the form of days

    how can get difference between 2 dates in the form of days

    Hi,
    Check the following program:
    REPORT ZDATEDIFF.
    DATA: EDAYS   LIKE VTBBEWE-ATAGE,
          EMONTHS LIKE VTBBEWE-ATAGE,
          EYEARS  LIKE VTBBEWE-ATAGE.
    PARAMETERS: FROMDATE LIKE VTBBEWE-DBERVON,
                TODATE   LIKE VTBBEWE-DBERBIS DEFAULT SY-DATUM.
    call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
      exporting
        i_date_from          = FROMDATE
        i_date_to            = TODATE
      I_FLG_SEPARATE       = ' '
      IMPORTING
        E_DAYS               = EDAYS
        E_MONTHS             = EMONTHS
        E_YEARS              = EYEARS.
    WRITE:/ 'Difference in Days   ', EDAYS.
    WRITE:/ 'Difference in Months ', EMONTHS.
    WRITE:/ 'Difference in Years  ', EYEARS.
    INITIALIZATION.
    FROMDATE = SY-DATUM - 60.
    Regards,
    Bhaskar

  • How can i uninstalled adobe creative suite on my old computer that it doesn´t work now and installed adobe on my new computer?

    how can i uninstalled adobe creative suite on my old computer that it doesn´t work now and installed adobe on my new computer?

    use the adobe uninstallers to uninstall from your old computer, and use the installation files to install on your new computer.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • HT1386 How can I synch my iPhone 3G on the same computer that my wife synches her iPhone 4S?

    How can I synch my iPhone 3G on the same computer that my wife uses to synch her iPhone 4S?  How can we keep our apps, contacts, calendars, etc. separate?

    You'll have to create separate user accounts to keep your iTunes libraries separate.
    How to use multiple iPods, iPads, or iPhones with one computer: http://support.apple.com/kb/HT1495

  • Please Help--Can't fill out or submit/save .PDF forms

    Hi-
    Running Safari 5.1.2 on Mac OS 10.6.8 (the latest updates according to software update) and using the Schubert PDF browser plugin. http://www.schubert-it.com/pluginpdf/
    Before updating from Safari 5.0.xxxx I could fill out and submit .PDF forms in Safari without any issues. Now, I cannot. The form comes up but I cannot enter any text into the text fields.
    About a month ago I went through this and had to revert back from a time machine back up because the ability to fill out forms in browser is an everyday necessity for me.
    Does anyone know how to fix this issue?? Please help...

    Ok.. I still cannot get this figured out. I'm baffled and frustrated!!
    I did a deep cache cleaning using Snow Leopard Cash Cleaner, all of your reccomendations, and about an hours worth of reading. I had the schubert-it plug in uninstalled and have gone back to reinstalling it with no luck. I was thinking after all the cache cleaning it might work. Nope..
    I can't beleive this is an issue after an update.. Apple is normally so great with this stuff.
    The com.adobe.reader folder does not exist on my computer.
    This problem occurs with any online form, not just the ones I need to access and submit, and it occurs with the native PDF support in Safari as well as the schubert app.
    Any other ideas? I read on one post where someone fixed it with quicktime, but the video he put up to show how he fixed it was no longer available.
    Carolyn, or anyone else, .. any ideas??

  • How can i mention a java class in the form's action=" ...."  in jsp

    if i am not using struts frame work, how can i call?
    i am not using any of the frame work.
    for example.
    i am searching for a customer name from a database
    i have coded the form fields in jsp
    as
    <%@page session="true"%>
    <%@page errorPage="ErrorPage.jsp"%>
    <%@page import="com.krysl.model.*"%>
    <jsp:useBean id="model" scope="session" class="com.krysl.model.webmodel"/>
    <html>
    <head>
    <title>Customer Seach</title>
    <jsp:include page="SetBaseURL.jsp" flush="false"/>
    <link rel="stylesheet" href="http://forums.sureshkumar.net/style.css">
    </head>
    <body>
    <jsp:include page="Banner.jsp" flush="false"/>
    <h1>Customer Search</h1
    <form method="POST" action=".......................">
    <b>Customer Name</b>
    <input type="TEXT" name="customerSearchArgument" size="20">
    <input type="submit" value="search">
    </form>
    </body>
    </html>
    this "customerSearchArgument" will receive a class method
    package com.krysl.controller;
    import java.io.*;
    import java.sql.SQLException;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import com.krysl.model.*;
    * @author dsdc
    public class customersearchaction extends Action
    public void run() throws ServletException, IOException
    String arg = request.getParameter("customerSearchArgument");
    if(arg != null)
    arg = arg.trim();
    if(!arg.equals(""))
    try
    model.customerSearch(arg);
    catch(SQLException e)
    throw new ServletException(e.getMessage());
    final String next = "/CustomersList.jsp";
    RequestDispatcher rd = application.getRequestDispatcher(next);
    if(rd == null)
    throw new ServletException("Could not find" + next);
    rd.forward(request, response);
    All other database connections and related things i coded in
    some other classes webmodel, model, controller servlets etc....
    in the above class the model.customerseach(arg);
    will do all the searching.
    my doubt is how to call this method in that action="" of jsp
    i tried as action="com.krysl.model.customersearch"
    action="com/krysl/model/customersearch"
    its not working
    please letme kno
    urget
    thank you

    Hi.
    go to otn.oracle.com/products/forms and get infromation about PJC and JavaBeans in Forms. The keyfilter example is available as sample as well. However, the link temporarily doesn't work
    All Forms demos and code sources: http://download.oracle.com/otndocs/demos/Forms_Demos_10gr2.zip
    Frank

  • How can read BOM component date before save the production order??

    Hi Experts,
    In our company, we need to develop a program to read the BOM component data of the production order
    before we save the production order.
    That for example ,when we create and release a production order , before we save the production
    order,we want a porgram to read the BOM component data. If some component data can meet our
    requriement (may be if there is material requirement quantity>100 EA),then the system will pop up a
    small dialog box to remind us.
    There is user exit PPCO0007 and PPCO0007.But it seems they only can read the head data of the
    production order before we save the production order. And the BOM component data of the production
    order are saved in the RESB(Reservation Table).So if we do not save the production order,all the BOM
    component data are not saved in the RESB table.
    So how can slove the problem??
    How can read component date before save the production order??
    Are there any other user exit we can use???

    Hi Just wanted to check am I right that you are trying to check if you have enough Materials Available before you release or Save the order right ? if this is your business objective then when you create order you have material availability tab which checks and gives error if shortage is there. Please let me know if is this wht you asking for ?

  • How can I add check boxes without using the form widget?

    I would like to use check boxes for our facets for our search engine.  You can see an example below.  Is there anyway to do this without using the form widget?
    PJM - Site Updates

    It is not possible to accomplish this with the Muse's Form Widgets. You may need to look for other online solutions and fetch the source code and add to the Muse page using the Insert HTML feature.
    Cheers,
    Vikas

  • How can I get my photos to save the GPS location for iPhoto?

    I noticed that the info on my photos uploaded from my iphone 3G is not marking their location on the map. How can I activate this feature so the GPS location of the photos taken is saved to each photo's info in iPhoto after I upload it? Thanks!

    Im not exactly sure what you mean by color profile..can you specify? So i have a dslr canon and take great portraits and tune them to exactly how I want them to look, they dont print at all like the colors presented on my screen. If i antique them then they print yellowish. Ive even tried printing them at walgreens because i thought it was my new printer. Hp hasnt let me doown til now. Is ot a printer setting? Ive never had this kind of printing issue.

  • How can I delete multiple copies (600 ) of the same contact that ended up on my iPhone after backing it up on iTunes?

    In syncing my iPhone 3GS on iTunes, I now have many copies of the same contact -over 1,000 in one case-on my iPhone.  How can I delete these multiple copies without doing it one by one on my iPhone and how can I prevent it from happening again?  I have Outlook Contacts and MSN contacts -- iTunes is supposed to be syncing to my Outlook contacts, but I don't have multiple copies of any of my contacts there.  HELP!  Thanks!

    The cause was probably a USB glitch during a sync or when copying. The music resides on the phone in separate files. A master file contains a database with an index to the music, an entry for each track and a "pointer" to the file containing the track. Somehow the index got corrupted with duplicate entries. It's likely that the music itself wasn't duplicated, but some tracks had more than one entry in the database. I've seen this happen when syncing (rather than manually managing) also. In my case deleting the track from the Music tab in iTunes, syncing, then adding it back fixed it.
    A related problem I've seen is an album may be split, with some tracks in each of 2 or more album entries in the listing. Fixed the same way.

  • How can you reset your security questions for the life of me I cannot recall my answers

    how can i reset my security questions

    Click here and search the article for '2 out of 3'. Follow the instructions.
    (74147)

  • How can I get rid of 'Ask' in the list of search engines, which always comes back (and at the top of the list) even though I check the 'Remove' box in 'Manage Search Engines'?

    I don't think I can add anything relevant to the question

    You can open the <b>about:config</b> page via the location bar and do a search for <i>ask.com</i> via the Filter at the top of that page.<br />
    You can reset all <i>ask.com</i> related prefs via the right-click context menu to their default values.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • How can i let firefox not to remember the last page that i've closed?

    At the beginning, Firefox asked me wither to remember the last page that i've closed or not. i accidently chose yes, but i dont know how to change it back.

    The [[passwords]] article shows how to delete individual usernames/passwords.

  • How can I get firefox to not save pdf files (such as bank statements I have looked at) to my documents and settings/temp folder?

    I just realized that some (but not all pdf files that I have opened) pdf files of bank statements as well as other pdf files that I have opened when browsing with firefox have been saved to my documents and settings/temp folder. I am concerned about this for security of my data, but also confused as to why all of these documents (as well as some word documents and other types of non .tmp files) are being stored here. Please tell me how to stop this from happening.
    Thank you,
    Wimajeanne

    I can understand that they would appear there if I have the document open, or have recently viewed it. These documents are over a month old, some are over a year old.
    Also, it is not just PDF files, I also see word docs and java.exe files in this folder. None of these files have the %temp% in the title as they do when I have a particular document open, rather they are a copy of the file or document that I have saved to my data file.
    My main concern is the security of information when random PDF and doc files are stored here without my knowledge.
    Thank you.

  • How can i connect my gmail account to the browser so that it would show in the gmail tab the status of new incoming mail

    i established a tab for my gmail account in the toolbar, can this tab indicate the status of new incoming gmail emails?

    The ATV does not have a browser and therefore cannot connect to any Wi-Fi network that requires logging in via a web browser.
    Posting your email to a public, world-wide forums is not smart.

Maybe you are looking for