Multi person form filling

I want to create a form where information is filled in by three department, each department can only access a certain part to fill or change.
I have tried creating  a saveable document, with no luck

HI Chris,
I have seen split Pic in Pic video like like and solved it the same way Rj does Restart iChat.
10:51 PM Monday; July 3, 2006

Similar Messages

  • Secure, multi-section form with administrative rights

    I want to create a form that has sections we'll call "yes", "no", and "maybe". Only one section is visible at any time, and only someone with administrative rights can choose which section is visible. Once the section is chosen and the form saved, that section cannot be changed by anyone without admin rights. Can this be done in Acrobat?
    The proposed use process would go something like this:
    1. Admin receives order and pulls the form.
    2. Admin clicks "yes", "no", or "maybe" (tab? radio button?) to reveal the applicable section.
    3. Admin fills in some portions, saves the form, and passes it down the line.
    4. Down the line, the form is opened and the rest of the form is filled. If "yes", "no" or "maybe" is clicked, nothing happens because this user has no admin rights.
    5. The completed form is saved.
    I know it would save a lot of effort to make three separate forms. The reason for the single, multi-section form is so the other two sections can be filled on a later date. This saves the effort of refilling the other parts of the form with same data, or changing same data on three separate forms. In addition, admin can open a filled form and click among the different sections to review each section off the one form.
    Did that make sense? If so, can it be done in Acrobat?

    Please also tell me if what I have in mind can't be done so I can stop chasing this idea.

  • Multi-stage form completion

    Hi,
    I have been searching for an answer to this for a few hours and hopefully someone can answer it for me.
    In head office, we have created a form using Adobe LiveCycle Designer ES 8.2. (We also have a license for Adobe Acrobat 9 Pro)
    Currently the form is submitted using an email submit button which sends a copy of the PDF back to our head office - this works fine.
    However, what we need to do is this:
    1. Someone fills out the first part of the form which is an application for a position within the organisation.
    2. This then needs to be submitted to the next person in the chain of command, where they will write their comments regarding the application and tick either "Supported" or "Not Supported"
    3. There can be as many as 6 levels that the form needs to pass through, each time collecting more information until is finally received at head office for processing.
    The problem we have is that most of the people in the chain only have Adobe Reader - which is fine for just the basic filling out of the form and submitting, but it doesn't allow the next person to fill in the next part of the form.
    My question is this:
    - Is there any way to do this with the software we currently have?
         - if not, what would we need to purchase to allow this process to happen
              - if there is inexpensive non-Adobe solution that anyone is aware of, I would also be interested in the details. (Remembering that we are not-for-profit and do not have money to purchase expensive licenses for the many people that are involved).
    Thank you very much for any assistance you may be able to provide.
    Regards,
    Mandy Corke
    New Apostolic Church

    You will need to Reader Extend the file to allow Reader to do a local save.This can be done in Acrobat and is a one time operation.
    Open the form in Acrobat and under the Advanced menu choose Extend Reatures in Adobe Reader. Just follow teh wizard and distribute te saved form from that wizard.
    Paul

  • Creating a cfhttp multi part form post for google docs upload

    Hey all,
    If you saw my last thread, you know I am working with google docs and uploading documents to it. Well I got basic document uploading working, but now I am trying to include meta data. Google requires you to include the metadata with the actual file data and seperate them by using a multi part form upload. I don't know exactly the process for doing so, but they have a handy code snippet of the desired results at
    http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#UploadingDoc s
    So I am basically trying to mimic that payload, however I am continually getting an error stating that there are no parts in a multi part form upload.
    <errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>InvalidEntryException</code><internalReason>No parts detected in multipart message</internalReason></error></errors>
    to be exact. I am not really sure what I am doing wrong here. I figure it is one of two things, either I am not including the actual data in the payload properly (I am currently using a body type param for the payload, but I have also tried a formfield named content to deliver it. Neither worked). So maybe I need to do something else tricky there? The other thing which I am not reallly sure about is the content-length attribute. I don't know exactly how to calculate that, and I read in another forum that a content length attribute was messing that guy up. Right now I am just taking the lenght of the payload string and multiplying by 8 (to get the number of bytes for the entire payload) but hell if I know if that is right. It could be I just don't know how to set up the parts for the message, it seems pretty straight forward though. Just define a boundary in the content-type, then put two dashes before it wherever you define a new part, and two dashes trailing the last part.
    Anyway, here is my code, any help is much appreciate. I'm a bit beyond my expertise here (not really used to trying to have to roll my own http requests, nevermind multipart post form data) so I'm kinda flailing around. Thanks again.
    <cffunction name="upload" access="public" returnType="any" hint="I upload the document." output="false">
        <cfargument name="filePath" type="string" required="false" hint="file to upload.">
        <cfargument name="docType" type="string" required="yes" hint="The document type to identify this document see google list api supported documents">
        <cfargument name="parentCollectionId" type="string" required="no" hint="the name of the collection/collection to create (include collection%3A)">
        <cfargument name="metaData" type="struct" required="no" hint="structure containing meta data. Keyname is attribute name, value is the value">
        <cfset var result = structnew()>
        <cfset result.success = true>
        <cftry>
            <cfif structkeyexists(arguments,"parentCollectionId")>
                      <cfset arguments.parentCollectionId = urlencodedformat(parentCollectionId)>             
                      <cfset result.theUrl = "https://docs.google.com/feeds/default/private/full/#arguments.parentCollectionId#/contents">
                <cfelse>
                        <cfset result.theUrl = "https://docs.google.com/feeds/default/private/full/">
            </cfif>
             <cfoutput>
                  <cffile action="read" file="#arguments.filePath#" variable="theFile">
                <cfsavecontent variable="atomXML">
                     Content-Type: application/atom+xml
                    <?xml version='1.0' encoding='UTF-8'?>
                    <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007">
                      <category scheme="http://schemas.google.com/g/2005##kind"
                          term="http://schemas.google.com/docs/2007###arguments.docType#"/>
                        <cfloop collection="#arguments.metaData#" item="key">
                            <#key#>#arguments.metadata[key]#</#key#>
                        </cfloop>
                    </entry>
                    --END_OF_PART
                    Content-Type: text/plain
                    #theFile#
                    --END_OF_PART--
                </cfsavecontent>       
            </cfoutput>      
            <cfset result.postData = atomXML>
            <cfhttp url="#result.theUrl#" method="post" result="httpRequest" charset="utf-8" multipart="yes">
                <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth()#">
                <cfhttpparam type="header" name="GData-Version" value="3">
                <cfhttpparam type="header" name="Content-Length" value="#len(trim(atomXML))*8#">           
                <cfhttpparam type="header" name="Content-Type" value="multipart/related; boundary=END_OF_PART">
                <cfhttpparam type="header" name="Slug" value="test file --END_OF_PART">
                <cfhttpparam type="body" name="content" value="#trim(atomXML)#">
            </cfhttp>
            <cftry>
                   <cfset packet = xmlParse(httpRequest.fileContent)>
                <cfif httpRequest.statusCode neq "201 created">
                    <cfthrow message="HTTP Error" detail="#httpRequest.fileContent#" type="HTTP CODE #httpRequest.statusCode#">
                </cfif>
                <cfset result.data.resourceId = packet.entry['gd:resourceId'].xmlText>
                <cfset result.data.feedLink = packet.entry['gd:feedLink'].xmlText>
                <cfset result.data.title = packet.entry.title.xmlText>  
                <cfset result.data.link = packet.entry.title.xmlText>    
                <cfcatch>
                     <cfset result.data = httpRequest>
                </cfcatch>
            </cftry>       
            <cfcatch type="any">
                 <cfset result.error = cfcatch>
                <cfset result.success = false>
            </cfcatch>
        </cftry>   
        <cfreturn result>
    </cffunction>
    Also, this is what my atomXML data ended up looking like when it got sent to google. This isn't the WHOLE request (it doesn't include the headers, just the body).
    Content-Type: application/atom+xml
    <?xml version='1.0' encoding='UTF-8'?>
    <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007">
    <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/docs/2007#document"/>
    <TITLE>Woot Test</TITLE> </entry>
    --END_OF_PART
    Content-Type: text/plain
    I'm a test document lol!
    --END_OF_PART--

    Woot, I got it. I had to send the gData version number, and change the URL.
    Here is the working function.
    <cffunction name="upload" access="public" returnType="any" hint="I upload the document." output="false">
        <cfargument name="myFile" type="string" required="false" hint="file to upload.">
        <cfset var result = "">
        <cfset theUrl = "https://docs.google.com/feeds/default/private/full">
        <cffile action="read" file="C:\website\xerointeractive\testing\test.txt" variable="theFile">
        <cfset fileSize = createObject("java","java.io.File").init("C:\website\xerointeractive\testing\test.txt").length()>
        <cfhttp url="#theURL#" method="post" result="result" charset="utf-8" >
            <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth()#">
            <cfhttpparam type="header" name="Content-Type" value="text/plain">
            <cfhttpparam type="header" name="Slug" value="test file">
            <cfhttpparam type="header" name="GData-Version" value="3">
            <cfhttpparam type="header" name="Content-Length" value="#fileSize#">
            <cfhttpparam type="body" value="#theFile#">
        </cfhttp>
        <cfreturn result>
    </cffunction>

  • Multiple form fill-ed's open at one time - crashing

    I have many form fill-ed documents created using Live Cycle.   Issues have been reported regarding adobe shutting down in the middle of filling out a form.  Tow of our employees have this crashing issue.  They both have Windows 7; Adobe Reader XI, and IE X.  I have trouble shooted several different options.  I have used the acrobat_ittools_cleaner to remove old acrobat (recommended by acrobat). 
    I had the Two employees use one form fill at a time to determine the cause of the crashing.  If they use only ONE form at a time, there is not crashing.  The minute they open two forms, and start to fill in the form, it crashes. 
    These forms are not new,  They worked fine with mulitple forms open in the past.  I created these forms in Live Cycle (which came with Acrobat Pro 9).  I figured with the added security in Acrobat XI, I needed to update the forms using Live Cycle Designer ES4.  That did not help either.
    What else can I do to correct this problem?    

    Maggie,
    There are some things you need to consider:
    &lt;script language="JavaScript" type="text/javascript">
    function f_mass_update()
    var counter = 0;
    for (var i = 0; i &lt; document.wwv_flow.f03.length; i++)
    {var curr_id = document.wwv_flow.f03.id;
    if ($x(curr_id).value == 'COMPLETE')
    {$x(curr_id).value = 'CANCELED';
    $x(curr_id).style.color = "darkred";
    $x(curr_id).style.fontWeight = "bold";
    $x(curr_id).style.background = "yellow";
    $x(curr_id).style.width = "103px";
    counter = counter + 1;}}
    if (counter == 0)
    {alert ('There are no more statuses to change!');}
    else {alert(counter + ' Records updated!');}
    &lt;/script>is the correct script if you escape COMPLETE as 'COMPLETE' and CANCELED as 'CANCELED'. The same rules apply for javascript as for the most other programming languagas - numbers do not need to be escaped but character strings do.
    The second thing is the question of your tabular form id. In my case it was f03 but in your case it is probably different. If you created a wizard tabular form and didn't touch it, you could count the columns.
    If your column is the first editable column than it will be f03. The second will be f04 and so on. My recomendation is to use Firefox and download the extension Firebug. With firebug you can do HTML > Inspect and go with the mouse over any element on your page. Click on the actual tabular form cell and it will show you some code like this:
    &lt;input type="text" id="f03_0001" value="10" maxlength="2000" size="16" name="f03"/>so, the name of the element is f03.
    See the same page, now with an image attached of what I just explained:
    http://apex.oracle.com/pls/otn/f?p=31517:213
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Last pass password manager and auto form filler have disappeared from my tool bar. How do I get them back or do I have to start all over again.

    I am using Windows Vista. Both LastPass and the auto form filler have disappeared from my toolbar. Is there a way to retrieve this information or do I need to start again?

    Do those extensions still show as installed in Tools > Add-ons > Extensions?
    If not then it is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to check if there is a compatibility update available.
    You can also check for problems with the localstore.rdf file if toolbar buttons are missing.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • How to enable a field on the person form?

    Hello,
    I am working in UK Legislation and I need to enable a greyed out field on the person screen. It's the "Disabled" field (to capture the disability of an employee).
    This might sound an easy thing to do but I couldn't find any function or profile option that controls this. I couldn't find any metalink note on this. Could any one tell me how to do this or let me know of any metalink note on this?
    Many Thanks,
    Baloo

    Both answers were helpful. Thanks a lot.
    In the interest of other users I am pasting the answer below:
    The Disability Discrimination Act 1995 (DDA) is the main piece of legislation which makes it unlawful to discriminate against a disabled person in their terms of employment, promotion opportunities, by dismissing them or by subjecting them to any other detriment. This act had been further amended, cumulating in the Disability Discrimination Act 2005 which is related to disability generally and extends outside the area of employment although some provisions will relate to employees.
    Parts of the Act came into force in December 2005, other parts relating for example to transportation are applicable from December 2006. The above provisions replaced the concept of Registered Disabled Persons and
    employment quotas which had been in existence since after the second world war.
    In releasing the enhanced Disabilities functionality, it was intended to facilitate the maintenance of disability records through the Disability form and not the Disabled field on the person form.

  • I installed Firefox 4.0 and now my LastPass form filler doesn't work. How do I reinstall the old version of firefox?

    I want to go back to the old versions of Firefox where everything worked. I fill in a lot of online forms and need my LastPass form filler to work. I regret that I downloaded the new version today.

    Download the latest version of LastPass here: https://lastpass.com/misc_download.php It works with Firefox 4...

  • Trying to save a Form filled out that came in Adobe Reader format, each time I try and save it says it can only save a blank copy

    trying to save a form filled out that came in Adobe reader format, each I try and save it, it says that it can only save a blank format and I lose the data

    Is there anything in the document properties that would make it behave that way?

  • Signing Not Allowed after Enable Forms Fill-In & Save in Adobe Reader

    When using Adobe Acrobat X Standard and creating a fillable form that uses digital signature, selecting
    File / Save As / Reader Extended PDF /
    Enable Forms Fill-In & Save in Adobe Reader
    changes the security for Signing to Not Allowed.
    When using Adobe Acrobat X Pro and creating a fillable form that uses digital signature, selecting
    File / Save As / Reader Extended PDF /
    Enable Additional Features
    does not change the security for Signing to Not Allowed.
    Is there a way I can use Standard so users can use digital signatures in Adobe Reader?

    Read this:
    http://forums.adobe.com/message/2421282#2421282

  • PDF form fill

    Hi
    I would like to edit a PDF and to fill in the form fields of a PDF.
    i have google extensively and wasnt able to find a PDF form filler compaitable with CVI.
    Can anyone advise please?
    Help share your knowlegde

    Thanks for the reply keaneSenses.
    I am actually looking for a c API that is preferably free but willing to pay for one if need be. I found a lot of API's searching on google but the ether java , c# or C++ and trying to port them is proving difficult.
    I have used Haru PDF to create PDF files in the past but i can not use it to modify an existing PDF and  or to fill in forms.
    If anyone knows of or has used another API please let me know?
    I really need to find a one that is compatible with CVI
    Help share your knowlegde

  • How to commit primary key in a multi level form

    Hi ,
    I am using Jdeveloper 10.1.2.3. ADF - Struts jsp application.
    I have an application that has multiple levels before it finally commits, say:
    Level 1 - enter name , address, etc details -- Master Table Employee
    Level 2 - Add Education details -- Detail Table Education
    Level 3 - Experience -- Detail Table Experience.
    Level 4 - adding a Approver -- Detail Table ApplicationApproval
    In all this from Level 1 I generate a document number which is the primary key that links all these tables.
    Now if User A starts Level 1 and moves to level 2,he gets document no = 100 and then User B starts Level 1 and also gets document no = 100 because no commit is executed.
    Now I have noticed that system crashes if User B calls a vo.validate().
    How can I handle this case as Doc no is the only primary key.

    Hi,
    This is what my department has been doing even before I joined and its been working for our multi user environment for these many years.
    We have a table called DOC_SRNO which will hold a row for our start docno , next number in running sequence. the final number. We have this procedure that returns next num to calling application and increments the next num by 1 in the table. and final commit on the application commits all this.
    I am not sure how this was working so far but each of those applications were for different employees. I am assuming this is how it worked.
    Now in the application that I am working on, has no distinct value. So two users could generate the same docno and proceed.
    I will try the DB sequence but here is what I tried. I call the next num from DOC_SRNO and I commit this table update and then proceed with this docno so at a time both gets different docno's.
    But my running session crashes when I go to next level to insert into the detail table of my multi level form. Here when I try to get the current row from the vo which is in context, it crashes.
    Here's the steps.
    Three tables : voMainTable1 and voDetailTable1 and voDetailTable2.
    voMainTable1 on create row1- I generate new docno - post changes
    voMainTable1 on create row2- I genrate another docno - post changes
    set voMainTable1 in context
    Now I call voDetailTable1 and to get the docno to join master detail, I try to get voMainTable1.getCurrentRow. Here it crashes.
    How can I avoid this

  • How do I create a form that enables the user to save the form filled in?

    When I create the form, save it and open it later, I get the message that the form can only be saved empty - without whatever the user filled into the text fields. Why is this and how can I enable the form to be saved including the content of the fields?

    It should only say that when used with Reader versions prior to version 11. If you have Acrobat, you can Reader-enable the form, allowing it to be saved in versions prior to 11, and 11 as well. Exactly how you do this depends on what version of Acrobat you're using:
    A9: Advanced > Extend Features in Adobe Reader
    A10: File > Save As > Reader Extended PDF > Enable Additional Features
    A11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)

  • Form Filler Yellow Task Bar Link Does Not Open task or do anything SharePoint 2010 InfoPath 2010

    Form Filler Yellow Task Bar Link Does Not Open task or do anything (SharePoint 2010 InfoPath 2010)
    Using a SPD workflow to run a approval process. This is a non-browser form. User receives task notification, opens form in IP Form Filler and sees yellow task bar notification. User Clicks on open task, nothing happens... OS = XP, On Win7
    = We get a never ending download box, and several logon security windows
    Attempted Fixes
    Clear
    InfoPath Cache
    Workflow History Looks good

    Hi,
    I understand that when you click on Edit this task in the message bar in InfoPath 2010, nothing happens. Does this happen when you open the email which contains the ‘Edit this task’ link?
    If so, you can try to check whether this key is in your regedit. If so, you can delete this key and have a test.:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}
    Back up the regedit keys before making any changes. For more information about backup and restore the regedit, please refer to these sites:
    Fix “Edit this task” In Outlook 2007:
    http://vettekerry.wordpress.com/2008/06/11/edit-this-task-in-outlook-2007-doesnt-work/
    How to back up and restore the registry in Windows XP:
    http://support.microsoft.com/kb/322756?wa=wsignin1.0#method1
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • MS Word 2007 form fill in

    I have a document in MS Word 2007 that is a fillable form.  I want to save it to Adobe Pro and retain the form fill in capabilities.  I just downloaded ADOBE Premier Pro.  I would like instructions on how to do this.  Thanks.

    I moved this thread to the Creating, Editing & Exporting PDFs forum.
    Depending on how the word document is formated I believe Adobe Acrobat Professional maybe able to detect it as a form.  You can try the trial at https://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=en.  For more information on Adobe Acrobat Professional please see https://www.adobe.com/products/acrobat.html?promoid=JOLIR.

Maybe you are looking for

  • Modifying Infocube 0FIAR_C03

    Hi All, I'm trying to modify A/R Line Item Infocube 0FIAR_C03 in BW 3.5 to add some more characteristics.  But every time, I go into change mode on the cube, I get the message that certain key figure infoobjects will be deleted due to NOP aggregation

  • ERROR 1074724867.3 - PDF

    When I try to open a statement in Quicken (PDF format) I receive the error 1074724867.3 - "If Adobe is already running, please exit & try again."  System (Quicken) uses Adobe Reader to create PDF. I have checked Adobe support and have found only a fe

  • Can i delete standard Adobe's Script from editor?

    Hello I put a around 60 drop down fields in my_subform in my_form, well. Now, the requirements got changed, hence i need to change all of them into a TEXT FIELDs, so instead of deleting all drop downs and placing again 60 new text fields, my idea is

  • Encrypting data in database

    Is there any tools in an Oracle database or by Oracle to encrypt data in the database in 8.05 database or earlier? In versions above 8.05 - 8i and above, is the PL/SQL Encryption Toolkit free with the database or is it an add on package. Thanks

  • App installation stuck on "Waiting..."

    I tried installing an app on my iPad (with OS 4.2.1) over our WiFi network, and it was taking an extremely long time without the progress bar even starting to fill up. Now there is a greyed-out icon for the app with the word "Waiting..." and an unfil