How to create editable forms to create yearbook?

We are compiling a 200+ page yearbook and wanted to use an online form that we woudl mail out to classmembers to fill in and submit back. Ideally we woudl be creating teh template and they would enter short answers, text and images into teh pdf and send it back to us to assemble into a final 200+ page pdf that we would give to a printer. Any suggestions on best way to do this with Adobe?

hammm, i do it this:
drop the VO on the page, select Table->ADF Table....
so, drop the botton create, from de VO->operations->create (the firts), and right botton (mouse) Edit binding....
in Data collection select the VO, in Select an action select CreateInsert
luck

Similar Messages

  • How can I edit forms I created in LiveCycle Designer?

    I have several forms that I created in LC Designer. I do not see a way in FormsCentral to edit and update these forms.
    A question from 2013 or 2012 asked the same question, but there was no response.
    Please advise how to work with the forms created in LiveCycle Designer.
    Cindy

    Hi Cindy;
    You will need to edit the forms in LiveCycle Designer.  Even if it had not been created in LiveCycle PDFs are not editable in FormsCentral.
    The FormsCentral Import PDF feature does not enable you to edit a PDF form, your can import many PDF forms and then download a new copy of the PDF that has a "Submit" button that submits the responses back to FormsCentral so you can view and analyze them there, but does not enable a web version of that form or provide any capability to edit the form. 
    LiveCycle forms are different than Acrobat PDF forms and do require LiveCycle designer, this write up on the difference from the LiveCycle team may be helpful.
    Thanks,
    Josh

  • Quick Tip: How to create editable form fields | Acrobat X Tips & Tricks | Adobe TV

    A short tip that details how to create editable form fields using Acrobat X Std. or Pro.
    http://adobe.ly/wzXkmL

    I have created a form which will be filled out by customers and sent back to me via 'submit' button. What I am trying to figure out is when we receive the filled out form, is there any way to have it as a pdf. To clarify, when the form is filled out and sent, the receiver opens the email and attached is a non-editable pdf. This way the customers information is no longer editable.

  • Can you create editable forms in Acrobat X Standard?

    Hi everyone,
    Hopefully an easy question although I cannot find a definitive answer on the product page.
    I need to be able to create editable forms that others can fill in and print or save using Reader 8, 9 or X. Can these forms be created using Adobe Acrobat X Standard? The forms have been created in Word 2007 but we want to disribute them as PDF's and allow certain fields to be filled in on the PDF. The form will be downloaded from a website, filled in and emailed back.
    Any clarification on this is greatly received.
    Thanks...

    I know you can create forms with Standard but I don't think you can enable them so that Reader users can save them without the Pro version.
    dasnowball87 wrote:
    The form will be downloaded from a website, filled in and emailed back.
    Even if you could do this, you would want to carefully consider whether you want a form out there for everyone to fill out and send in. There is a restriction to the amount of times you can receive data from an enabled form. After 500 times, you would be violating the license agreement.

  • How to create editable form with non-updatable vo

    Hi,
    i need to create a new form on non-updatable VO.
    My requirement is: i have Data base View, based on that view i have created VO, based on this VO i need to create new form, when ever i submit a request, web service will invoke and that validate the data and sends to the data base.
    when ever i drag drop the vo i couldn't able to enter any data bcoz all the data are coming in the form of output boxes.
    can any one help how can i create this.

    Check the setting of your viewobject attributes settings, most probably they are 'updatable never', set them to "updatable always".
    This way you can drag the view as an editable form.
    About sendind data to the database, i guess you have an idea how to do it afterwards :)

  • Create/Edit form in a Popup

    Hi,
    I have a master/detail table displayed on a page and I have two button for create and edit. Clicking on the buttons, I must create/edit master table in a popup page. Also in the popup, I must display the details as a tabular form and allow to create and edit the details tables(add row, delete row features).
    Do anybody have any samples or any links?
    Thanks

    Hi,
    Assuming you are using 11g the built in popup features are covered here:
    http://download.oracle.com/docs/cd/E12839_01/web.1111/b31973/af_dialog.htm#ADFUI268
    You need to call the setCurrentRowWithKey method for an edit or the create/createInsert methof if creating a new record in the popup.
    To edit the popup select it in the structure pane and it will be focused on the editor page.
    Brenden

  • Create edit form based on view with multiple column key

    Hi
    I have a requirement to create a form to update some tables columns based on a view.
    The problem is that the view has a primary key of 4 columns.
    I have tried to create a rowid key based on one underlying table but this does not work.
    I am calling the form from an interactive report but can only pass 3 keys to the form, so only get 3 fields populated.
    Is there some way i can create the form manually as the wizards cannot cope with this requirement?
    My view is here:
    CREATE OR REPLACE FORCE VIEW "DMOADMIN"."MO_STATUS_LOG_VIEW" ("MONEY_ORD_NO", "STATUS_CODE", "DESCRIP", "STATUS_DATE_TIME", "TXN_DATE_TIME", "LLOG_ID", "LINE_SEQ_NO", "CANCEL_IND", "PROCESS_ID", "PBU_ID", "TXN_SEQ_NO", "CANCEL_REASON", "CONDITION_ID", "ADMIN_DATE_TIME", "ADMIN_LLOG_ID") AS
    SELECT a.money_ord_no,
    b.status_code,
    b.descrip,
    a.status_date_time,
    c.txn_date_time,
    c.llog_id,
    c.line_seq_no,
    c.cancel_ind,
    c.process_id,
    c.pbu_id,
    c.txn_seq_no,
    c.cancel_reason,
    c.condition_id,
    d.txn_date_time admin_date_time,
    d.llog_id admin_llog_id
    FROM mo_status a,
    mo_status_desc b,
    host_txn_log c,
    host_admin_log d
    WHERE a.status_desc_id = b.id
    AND a.money_ord_no = c.money_ord_no(+)
    AND a.status_date_time = c.txn_date_time(+)
    AND a.money_ord_no = d.money_ord_no(+)
    AND a.status_date_time = d.txn_date_time(+)
    WITH CHECK OPTION;
    I have tried to populate the data using with an on load process using a plsql query but it is not working. I get no data found error message. Help!

    Hi Erwin,
    I have a similar situation.
    Tabular form based on a view. The view contains a table in a another instance via dblink and everything works fine.
    The only one difference between my and your view is that my "instead of" view is only for UPDATE. You must to have "intead of" trigger only for UPDATE. Insert and delete works fine withoust "instead of" trigger.
    So, try to delete INSERT and DELETE words from your "INSTEADOFBUBA" trigger.
    hope it helps,
    Mzz

  • How-to synchronize edit forms for a single View Object tree node entrie

    Hi all,
    I created a tree from a single View Object,
    follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/32-tree-table-from-single-vo-169174.pdf]
    then i want to create and synchronize edit forms for tree node entries,
    follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/50-synchromize-form-treeselection-169192.pdf]
    but it not working when i click child node!!
    i found the latter tree from many View Object ,but the former tree from single View Object.
    what should i do?
    Thanks in advance

    Hi,
    say the tree is built from ViewObject1. In the AM model, create a second View Object instance for this. Say ViewObject2. Create the form from ViewObject2 and the tree from ViewObject1. When creating the tree, use the"Target Data Source" option at the bottom to reference the iterator of ViewObject2. Then create a PartialTrigger on the paneFormLayout that holds the synch form. In the partial trigger property, reference the tree so that when the tree selection changes, the form is updated. Then create a PartialTrigger property on the tree and point it to the submit button of the form so you can show updated values in the tree.
    Frank

  • How can I create editable forms on an iPad?

    I would like to be able to have a form on my iPad (do not care what format it is in) that I can fill in fields and then print out or email. I do not need to save the data entered into the data fields on the form.

    Tab? Not really a function native to iOS except maybe in some browsers using a web form. Its possible you  might find an app supporting that, but i have my doubts. As for completing a form, there are several apps available that support that at a variety of price points, but you may have difficulty finding one that will write protect the file from anyone with a full version of Acrobat. Not impossible, but obviously a search through the app store and some close reading of descriptions and reviews is in your future.

  • Does anyone know how I can edit a site created by another user on my imac?

    Hi,
    We are a family new to our imac. One of us created a site with iweb. Now I want to get to the site and edit it? I don't see the site when I start iweb...Can someone provide an answer and any recommendations on how to set up multiple sites so that we can share editing privileges?
    Thanks!
    imac   Mac OS X (10.4.10)  

    elegantKB,
    Welcome to Apple's Discussions area, and congratulations on your new iMac!
    Here's what you need to know about creating/sharing websites with the iWeb application; iWeb stores everything you create with the app in a single file, called Domain.sites. It lives on the hard drive of the computer that created it here. If you duplicate/copy this file and move it to another Mac using the same version of iWeb, that machine will open it and you will be able to edit the site. If you configure the second machine to publish to the same .Mac account (assuming you are using .Mac), you can not only edit the site, but you can also publish the same from two separate machines.
    You will need to keep track of the latest version of this Domain file if you share it.
    Be careful with this file and back it up often. It contains every single page and/or Site that you create with iWeb.
    See these notes for more details on how to edit and publish the same iWeb site from two separate machines.
    Mark

  • How to make a form not create a second entry

    I'm using the PDF entry for a form. Very cool. But if a user submits it, then adds more data and submits again it creates two entries. How can I 'key' the form so it only updates the same entry?

    Sorry, we do not support this feature at this time.
    If your form as a unique idenfier fields like an Email field or a First Name and a Last Name fields then sort by that column and look at the latest submission by a same user and delete other row manually. Each submission has a "Time Submitted" column in the response table (View Responses Tab).
    Gen

  • How do I edit the "Content Created" date?

    I've been storing all of my DSLR video in Aperture 3, and would like to import that video (as referenced Events) into Final Cut Pro X.  So far, I've noticed that some of my video is showing a very inaccurate "Content Created" date; is there any way to edit this and set the correct date?

    I'm looking for the same thing.  I would hope that creation date, and EXIF data could be manually edited inside this "Pro" software, but so far I can't figure out how to do it.  I would like to fix a couple dates that for some reason are off.

  • How do I edit a newly created pdf file? (RE matching a format for a create space output)

    I need help with editing and formatting a newly created pdf file

    You posted this in the Captivate forum, I think you need the Acrobat one

  • How do i edit a site created with iweb

    I created a site last year with iweb, but now when I try to open it, it only lets me create a new site.  I can see the thumbnail in my finder view, but cannot edit it. Help.
    Thanks in advance

    Try this:
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • How do I edit the file created by code generator?

    hi all,
    I want to modify a java file that is generated when you create the webdynpro, but I can not change.
    // This file has been generated partially by the Web Dynpro Code Generator.
    // MODIFY CODE ONLY IN SECTIONS ENCLOSED BY @@begin AND @@end.
    // ALL OTHER CHANGES WILL BE LOST IF THE FILE IS REGENERATED.
    how can I disable the file to modify
    thanks!

    Hi Pablo.
    There's no way to modify it, NW2004s and its IDE has a code compilation based in some internal scripts based on eclipse plugin architecture.
    In your code you must consider this.
    1 - Try to find in your declared methods, importing directives, packages declarations  some like this:
    // This file has been generated partially by the Web Dynpro Code Generator.
    // MODIFY CODE ONLY IN SECTIONS ENCLOSED BY @@begin AND @@end.
    // ALL OTHER CHANGES WILL BE LOST IF THE FILE IS REGENERATED.
    package com.sap.teste;
    // IMPORTANT NOTE:
    // ALL IMPORT STATEMENTS MUST BE PLACED IN THE FOLLOWING SECTION ENCLOSED
    // BY @@begin imports AND @@end. FURTHERMORE, THIS SECTION MUST ALWAYS CONTAIN
    // AT LEAST ONE IMPORT STATEMENT (E.G. THAT FOR IPrivateTesteApp).
    // OTHERWISE, USING THE ECLIPSE FUNCTION "Organize Imports" FOLLOWED BY
    // A WEB DYNPRO CODE GENERATION (E.G. PROJECT BUILD) WILL RESULT IN THE LOSS
    // OF IMPORT STATEMENTS.
    //@@begin imports
    import com.sap.teste.wdp.IPrivateTesteApp;
    import com.sap.myimport.MyClass;
    //@@end
    //@@begin
    //@@end
    it means that between begin and end...you can add what you want..and the code will not be removed after class compilation....
      //@@begin javadoc:wdDoExit()
      /** Hook method called to clean up controller. */
      //@@end
      public void wdDoExit()
        //@@begin wdDoExit()
        //@@end
    int this case too....if you implement something between //@@begin and //@@end in the method scope...all part of your code will be surely safe.

Maybe you are looking for

  • XML SQL Utility error - SQLException Data size bigger than max size for this type

    I am trying to insert an XML document the contains the text of new articles into the database and I am receiving this error on large documents. The process flow is as follows: From a servlet: 1. Query the news server and retrieve an XML document cont

  • [solved]Conky moving...

    Here's my code background yes alignment top_right cpu_avg_samples 4 use_xft no font 7x13 update_interval 0.5 total_run_times 0 update_interval_on_battery 20 double_buffer yes own_window yes own_window_type override own_window_transparent yes #default

  • Flash CS5 preloading before frame 1

    Hi all Im having a nightmare with a preloader in as3 and cs5. No matter what happens, flash displays its own preloader (ie 5 little circles at centre stage) and loads the whole flash file before it gets to frame 1. does anyone know how to stop flash

  • Spelling Check Does Not Seem to Work in Buzzword

    Hi, everyone, I've enjoyed the changes made to acrobat.com. Bravo! But tonight (Nov. 21, 2009) I was creating a new Buzzword document and noticed that the spelling check was grayed out in the menu. I clicked on Account, made sure the language was US

  • IMac 27 shuts down at intro

    hello my iMac 27 shuts down at intro or when i trying to set it up ,i  think its Fan or HDD but not sure , maybe anyone knows where is a problem ?