Merging multiple forms and having shared fields

I am designing multiple forms for a client for application purposes.  There are about 40 forms in all. Client is designing a online helper that will help users download only the forms they need for their application.  So once that is decided, then we are giving them a download link for required forms only. In the end client will print the forms and submit them manually. (I know it could be done better, but not yet) There will be about 16-17 different combinations of forms.
Thing is, many of these forms have repetitive fields (name, address, phone, email, etc), so we would REALLY like to have it so that once filled out, those fields could quickly populate all the rest of the remaining forms. (does that make sense?)
I have had a couple ideas on how to accomplish this
1) Magic
2) Combined all required forms into one large PDF.  Make the 16-17 possible combinations and then just set them all up manually.
     Problem is that if Form 6 changes, it may change in 10 different packages.  I don't want to do that manually every time there is a change
3) Somehow use Adobe Livecycle to piar the fields up in the different docs, and have them all linked. (think that is impossible, hense #1)
4) Your suggestion?
Thanks in advanced.
Ask any questions you may need.

The templates/PDFs designed in LC are primarily can not talk to each other. But we can make them pull and save the information stored in Database through LC workflow. Which will give them ability to transfer data between using SOAP (we can activate these SOAP transfers on certain events or on user actions). But that involves User acknowledging each time the data transfer activated (of-course there is an option to remember the user action and never ask the user but it is controlled by user). Things get complicated once you start in this direction. However we use this technique in our internal environment.

Similar Messages

  • Merge multiple cells and rows

    Hello,
    I am trying to merge multiple cells and have found that I can do thi easily by selecting the adjancent row cells and using the TABLE - MERGE CELLS command.  However, If I want to apply the same merge to multiple rows, I can find noquick way to do this other than selecting each set of cells and using the TABLE - MERGE CELLS command each time.  Here is an example of what I want to do:
    Here is the Numbers spreadsheet as normal:
    Here is cell B2 and C2 merged:
    Now what I want to do is the same process for rows 3 to 10.  However, when I try to select the section and use the TABLE - MERGE CELLS command, I get on large cell rather than split rows of merged cells as seen below:
    Any idea how I can or if I can accomplish this task?
    Thanks in advance,
    OriginalGumshoe

    You may also use this script :
    --{code}
    --[SCRIPT merge_row_by_row]
    Enregistrer le script en tant que Script : merge_row_by_row.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Bibliothèque:Scripts:Applications :Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner le bloc de cellules à traiter.
    Aller au menu Scripts , choisir Numbers puis choisir “merge_row_by_row”
    Le script fusionne les cellules de chaque ligne appartenant à la sélection.
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: merge_row_by_row.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select the range of cells to treat
    Go to the Scripts Menu, choose Numbers, then choose “merge_row_by_row”
    The script merge the cells of every row included in the selection.
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/12/18
    --=====
    on run
              local dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2, r
              my activateGUIscripting()
              set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
                        repeat with r from rowNum1 to rowNum2
                                  set selection range to range (name of cell colNum1 of row r & " : " & name of cell colNum2 of row r)
                                  my selectmenu("Numbers", 6, 23) -- Merge cells
                        end repeat
              end tell
    end run
    --=====
    set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    on get_SelParams()
              local d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2
              tell application "Numbers" to tell document 1
                        set d_Name to its name
                        set s_Name to ""
                        repeat with i from 1 to the count of sheets
                                  tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                  if maybe is not 0 then
                                            set s_Name to name of sheet i
                                            exit repeat
                                  end if -- maybe is not 0
                        end repeat
                        if s_Name is "" then
                                  if my parleAnglais() then
                                            error "No sheet has a selected table embedding at least one selected cell !"
                                  else
                                            error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                                  end if
                        end if
                        tell sheet s_Name to tell (first table where selection range is not missing value)
                                  tell selection range
                                            set {top_left, bottom_right} to {name of first cell, name of last cell}
                                  end tell
                                  set t_Name to its name
                                  tell cell top_left to set {row_Num1, col_Num1} to {address of its row, address of its column}
                                  if top_left is bottom_right then
                                            set {row_Num2, col_Num2} to {row_Num1, col_Num1}
                                  else
                                            tell cell bottom_right to set {row_Num2, col_Num2} to {address of its row, address of its column}
                                  end if
                        end tell -- sheet…
                        return {d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2}
              end tell -- Numbers
    end get_SelParams
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Numbers" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    on decoupe(t, d)
              local oTIDs, l
              set oTIDs to AppleScript's text item delimiters
              set AppleScript's text item delimiters to d
              set l to text items of t
              set AppleScript's text item delimiters to oTIDs
              return l
    end decoupe
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
              tell application "System Events"
                        if not (UI elements enabled) then set (UI elements enabled) to true
              end tell
    end activateGUIscripting
    --=====
    my selectMenu("Pages",5, 12)
    ==== Uses GUIscripting ====
    on selectmenu(theApp, mt, mi)
      activate application theApp
              tell application "System Events" to tell application process theApp to tell menu bar 1 to ¬
                        tell menu bar item mt to tell menu 1 to click menu item mi
    end selectmenu
    --=====
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) dimanche 18 décembre 2011 22:21:24
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Export multiple forms to xml/excel - field headings are missing

    I have created a dynamic flow multiple page form in Livecycle.  When I first tested the form I would export -> multiple forms to a spreadsheet -> an xml file that I would then open in excel.  This worked great and the field headings showed at the top.
    I did some edits to my form and now when I run the export to xml and then open in excel, the field headings are gone.  What controls this variable, does anyone know how I can correct this?
    Thank you in advance!

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • Multiple forms and af:panelPage

    I need several forms inside one af:panelPage component. I want the forms to submit when the Enter key is pressed. The form submission gets very confused when I have nested forms, but if I don't have a form around the af:panelPage, then none of the global buttons are rendered properly.
    I'm using ADF Faces EA11.
    Any suggestions?
    Thanks.

    I know you can't nest forms, but I was trying various things to get the buttons to work. Your suggestion of putting a form around just the global buttons worked - thanks.
    As for why I need multiple forms, it really has to do with wanting the forms to submit when you press enter and with validation control. It seems that most browsers will properly do this when the form has a single entry box on it.
    On my page, I have a display of items (in a table) and above the table I have two areas for quick access to "items." There is a field to enter an item Id with a "show item" button and a field to enter search text and "quick search" button. Since the user already has their hands on the keyboard to enter the ID or search text, I wanted to enable the form submit when they press enter.
    The fields need to be on separate forms so the field validations aren't performed improperly. For example, each field (ID and search text) is marked as required. However, the field is only required for its specific function. Thus, if the user enters some search text and presses Search, I don't want them to see an error message saying that the "item ID is required." since it's only required for the "show item" function.
    As long as the new "subform" feature properly supports validation only on elements of the subform that was submitted, it might do the job.
    Thanks for the quick response on this.

  • Problem with multiple forms and subview

    I have a problem when using NetBean Web Pack (JDK6, Net Beans 5.5, JSF 1.2).
    1) I created a JSF page (hello.jsp) and a page fragment (header.jspf) inside Web Pack, and let the JSF page (hello.jsp) includes the page fragment.
    2) The include instruction is outside of the "form" element id=main_form() of the first JSF page.
    3) Inside the page fragment (header.jspf), I put a form (id=header_form) with some input fields inside the "subview" element.
    4) When running the web application, the form and its children (id=header_form) inside the subview are not rendered.
    It seems to be a problem with multiple forms on a page and the subview.
    Do I use these JSF components incorrectly? Any advice?
    Thanks

    The forms are not nested.
    hello.jsp
    <webuijsf:body ...>
    <!-- BEGIN: include header -->
    <div style="margin: 0px 0px 10px 0px; left: 0px; top: 0px">
    <jsp:directive.include file="Header.jspf"/>
    </div>
    <!-- END: include header -->
    <webuijsf:form ...>
    From above fragment, you can see the header.jspf is outside of the form element.

  • How to merge multiple PDFs and display in a new window

    Hi,
    I'm trying to merge multiple PDFs into one PDF and display the output in a new window using PeopleCode. I have a button on a page, which when clicked should open a new window with the merged PDFs. I am able to succussfully merge the PDFs using the PDFmerger class (mergePDFs) but unable to display the result in a new window.
    Please help.

    Thanks.
    I also found this piece of code very helpful.
    Local PSXP_RPTDEFNMANAGER:Utility &oUtil;
    Local boolean &bRtn;
    /* send the output to client */
    /* &sFileName = the file path /file_name.extension */
    &oUtil = create PSXP_RPTDEFNMANAGER:Utility();
    &bRtn = &oUtil.zipAndViewAttachment(&sFileName);
    Edited by: user8260115 on Sep 9, 2009 4:57 PM

  • Merge multiple Aperture and iPhoto libraries into Photos?

    I have around 80GB of material in multiple Aperture libraries, and around 12GB of old material in iPhoto. Is it even sensible to think about holding all this data in Photos, and if so, how is it possible to import multiple libraries? The option to convert an existing library only seems available at first start-up, and is then limited to only one library.

    Yes it is practical - but you have to merge the libraries before converting libraries to Photos - Aperture can do that
    LN

  • Help using multiple computers and one shared external drive

    I just "bought" the new LR / PS combo special.  I have 3 computers, 2 PC's in seperate cities and a laptop that I use on the road. I would like to use an external hard drive as the main drive.  This way I could take the drive with me.
    2 Questions....First I tried to learn the basics using the internal hard drive on PC#2.  I then set up a external drive with multiple folders but within one main folder. I then started importing to the external drive using PC#2 (which is at my vacation property). Everything went smooth until I tried to import from that external drive,  It does not open that catalog. I am saving them as digital negatives.
    Question #2 which I have not tried yet is PC#1 which is my main home computer does not have LR.  I have years of photos in hundreds of files sorted in bridge that have to be renamed and put on the hard drive.  It does not have the latest version of PS and I have lots of money invested in plug ins. How can I get lightroom on that computer and will it talk to what I believe is the prior version of photoshop. I don't even want to think about all the plug ins.
    It's pretty clear that I am lost.  I was going to continue using bridge and PS but there is no bridge on the new version, at least not on the $9.99 special.  From what I've seen, LR is the way to go.
    HELP

    Mantis wrote:
    I was going to continue using bridge and PS but there is no bridge on the new version, at least not on the $9.99 special.  From what I've seen, LR is the way to go.
    Bridge should be included in the $9.99 bundle http://www.adobe.com/products/creativecloud/faq.html#pslr-bundle

  • Help with multiple accounts and email sharing

    I am trying to setup a computer for a non-profit and all users need to have access to the same Entourage email account. Is there a way to set this up so each user still has their own OS X account but access the same Entourage email account?
    Message was edited by: widowmaker

    1.  Is it possible to maintain more than one account on a single iPad?
    Not at the same time.

  • What is the Text Book correct way to do a spot uv merging multiple applications and exporting from 1

    I am unsuccesssfully finishing a project using Spot UV and about to start another.  I want to start this one out the Text Book correct way.  Here are the details.
    I have logo's coming from Illustrator that I want to have a spot UV on
    I have photos coming from photoshop that I want a spot UV on
    I have a design element in In Design that I want a spot UV on
    What is the Correct way to get everything into In Design have it output to a PDF that a printer could use and a second one that I could use for the Web that does not show the spot uv
    A note is that the last project I followed all the tutorials on the web that say to use channels in photoshop to make my spot UV that in the end I think is causing me a lot of headaces right now. 
    Thanks in advance

    Put the spot UV on its own layer in InDesign. Turn it off for the web version of the PDF.
    Bob

  • Data Merge: Multiple records in a Multiple Page Document

    I looked in the InDesign help and under Limitations for merging multiple records it reads:
    You cannot merge multiple records if the data fields appear on a document page in a document with multiple pages, or if data fields appear on multiple master pages.
    I'm using InDesign CS 5.5. I produce a 4-page newsletter printed on both sides as a booklet, folded and stapled and each folded page size is 8.5 x 11 (a four page booklet on 11×17 paper) I want to print our 250-name mailing list on the outer cover but have discovered that it only prints the whole thing then staples it or I need to manually print each issue per name.
    Is there a way around this? If we have to use a third party software, would you let me know what to look for? Any suggestions are appreciated.
    Thanks for your help.
    Amy

    How many names are you trying to put on each newsletter? I suspect only one, and that you've misiniterpreted the Help file. That warning applies to putting multiple records from the data file on the SAME page, like a sheet of labels.
    Just so you know, using Data Merge to do a mailing where you are addressing multiple copies of a static document is potentially VERY inefficent. Data Merge needs to make a page for every page that will be printed, so if you have a 4-page newsletter with 1,000 subscribers you will wind up with a 4,000 page document just to get the name and address on one page, and your printer will be re-processing all those duplicate pages for each newsletter. If you have a commercial grade copier/printer there may be a variable data printing module availble for it that will merge your list at print time so you need only send a 4-page file and print 1000 copies (or you can send the job out to a printer who can handle this kind of work), or if you want to print in-house anddon't have VDP capabilities, I recommend doing two files.
    The first file should be the side of the sheet that doesn't change. Print that first as a single page doing x plus a few extra copies (in case of jams in the printer when doing the second half) where x is the number of newsletters you need.  The second file is the other side of the sheet with the addresses, which you do as the Data Merge, and will end up as x pages. After printing the first side, flip the stack and reload so you are printing on the blank side, then send the merge document, asking for one copy.

  • How top open multiple forms at the same time in HRMS menu

    Hi,
    When enabling "Close Other forms" in HRMS menu by excluding the function ‘Navigator: Disable Multiform’ Function in the Responsibility Definition (System Administrator -> Security -> Responsibility -> Define), mutliple forms works fine but I'am facing another error.
    My problem is: when this option is enabled, I tried to run Payroll run request but it turned out that payroll list of values is returning empty values and I'am unable to select any payroll from list of values. the only way to do so is to remove back ‘Navigator: Disable Multiform’ Function from exclusion section in responsibility.
    My requirment is: to have multiple form and payroll run list of values working at the same time
    Thanks

    Reason for this , if ur request is attached to more than 1 responsibility , i think this issue will come , we got same issue
    we remove it from responsibility list , then it is working fine

  • How do I assign a numeric value to an alpha character within a form and still run a total?

    I am trying to build an attendance sheet where P=Present, A=Absent and so on.  I've created the summary field correctly however the individual fields will only take numeric characters.  I would like for the user to be able to enter P, the P stay there visually but have a "real value" of 1 and then have a numerical total at the end.  In other words, P=1, A=0, etc...
    Thanks in advance for your help!
    Lucy

    Hi Lucy
    Create a text field called "Total" and make the following its custom calculation script:
         var presentDays = [];
         for (var i=0; i<this.numFields; i++) {
             var f= this.getField(this.getNthFieldName(i));
             if (f.value=="P" || f.value=="p")
             presentDays.push(1);
         var p = presentDays.length;
         this.getField("Total").value = p;
    The above will search through your form and find all fields with "P" or "p" in them, in which case it adds 1 to the total and displays it in the "Total" field.
    I hope this helps.
    Michael

  • Pre-populated PDF forms and form submission

    Ok, I must be blind or something, I've searched for answers to this question, and see unanswered posts around the web, and if there are answers, they don't help. Perhaps if someone can answer this, it will help many others as well:
    I've read about how FDF/XFDF (the older method) can be sent to the client side, which will open the specified PDF file (as specified using the "/F" flag in the FDF) and load the fields values also specified in the FDF (using the /FIELDS and /T flags, etc.). I was recently told that XFA is the new format, but reading the docs is not clear to me.
    QUESTION: What is the proper method to pre-populate the FIELDS of a PDF form (created using LiveCycle Designer, or Acrobat, or whatever) that gets sent to a client browser? Changes to this pre-populated data gets re-submited via an HTTP post button (or whatever) back to the server.
    Note: At the server backend, say using C# in Visual Studio 2005, I can simply read the posted HTML form and store the fields values into a database; However, I need to be able to pre-populate these PDF forms with selected patient names, etc., so that healthcare officials can complete them more easily BEFORE they get posted back to the server. These pre-populated fields (some of them anyhow) must STILL be editable (not flatten to static text or something).
    Thanks.

    From your description, is doesn't sound like it has anything to do with the virtual enviroment. It does sound like the forms simply need to be Reader-enabled. This allows Reader to save filled-in forms, which is necessary when you want to email them. If all of your users can use Reader 11, the forms do not need to be Reader-enabled since it is capable of saving non-enabled form. To enable a form in Acrobat 10, select: File > Save As > Reader Extended PDF > Enable Additional Features

  • Can you copy multiple fields in a pdf form and paste them elsewhere?

    I have created forms in Adobe Standard 9 and have posted them on our company intranet for users to access. All the forms work well, but one group would like to be able to copy and paste the form data into our call tracking software for future reference. It can be achieved now by copying and pasting each field one at a time. My question is there a way to copy more than one field at a time and paste the data elsewhere as even simple text, no font recognition required.
    Kerry N

    Thanx graffiti, you're right that Adobe 9 Standard had that option and it saves it as a seperate .txt file. and you can cut and paste from there. What I was hoping for was a Reader 7, 8 or 9 copy and paste solution, like the Adode version of "shift + c" to choose and add individual cells in Excel.
    Any tricks of shortcuts would be appreciated.
    Kerry N

Maybe you are looking for

  • How to attach document from webdynpro TO workflow

    Dear friend, For one requirement i want to attach documents(.doc or .pdf) from webdynpro form. I want to display it with user decision step along with description. I am confused that which container element would contain it? and how can i display it

  • How to set the timeout to execute sql by jdbc?

    Connection con = getConnection(); Statement stmt = con.createStatement(); stmt.execute("update table1 set colum1='abc' where key = '1' ");before run this java class I exectue the sql(update table1 set colum1='abc' where key = '1' ) in sqlplus but not

  • Is there a fine tip stylus that works on the iPad/iPhone?

    I am wanting to use the note pad and my finger does not have that fine of point and most of the stylus I have seen have the 5mm rubber head and that is not optimal for note taking / drawing items.  I am looking for something with a finer point.

  • SQL Server 2008 R2 Backup jobs are failing

    I have a problem with SQL Server 2008 R2. First the management studio package is failing to load. backup jobs on that server are failing to run. The server won't accept any installation. The Installation of .Net Framework failed, the Installation of

  • Netbeans and Beans

    This is sort of a Bean question. I'm using Netbeans form designer to visually create some forms. I want to throw in some customized combo boxes, but still be able to visually place them. There would be no bean-specific events or methods needed, just