How do I lock some form fields, but not all?

How do I create a form with interactive form fields where certain fields can be locked after being filled in, and others remain unlocked so the customer can interact with it?
My workflow looks like this:
I created a PDF with open form fields for my client to distribute to their salesmen.
Salesmen receive a call, fill in the information gathered. (name, address, services, price quotes, etc)
Salesmen email the pdf form to the customer. All fields that they filled in now need to be non-editable, EXCEPT an "I agree" checkbox and a signature line.
Help is greatly appreciated!
Michael

Hi Michael,
Before I go too deep into a suggestion, I need to know if you are using electronic digital signatures for signing the document? Or, are you expecting the customer to print the document, sign it with a pen and fax it back? The reason I ask is you could use digital signatures to lock specific parts of the document, but if you're not using them I won't bore you with the details.
Thanks,
Steve

Similar Messages

  • On 3G we cannot send emails from either our iPhones or iPad and this also happens with some WiFi connections but not all.  Yet we can always send emails from our Hotmail Email account.  What is causing this and what do we need to do to resolve it?

    On 3G we cannot send  Business emails from either our iPhones or Ipad and this also happens with some WiFi connections but not all.  Yet we can always send emails from our Hotmail Account using both 3G and WiFi.
    We bought the iPhones and Ipad so that we could send emails while we are out of the Office, but we are not able to do this unless we can find a WiFi connection. Incoming emails are fine.  We use IMAP, for Business emails just incase this is relevant and I know that Hotmail is POP3.
    Our technical IT knowledge is not great, so we look forward to your suggestions as to how to resolve this. 

    Contact whomever supports the email account and get the correct Outgoing email server settings from them.

  • I need to upload a pdf with more than 500 fields, but not all need to be registered.

    We are working on a pdf to send to our customers. The form has more than 500 fields but we only need to register some of them, the other fields will be filled in the pdf, saved and sent bak to us. Is there any way to do that?
    Thanks in advance.

    I am sorry but there is no way to designate some fields for online collection and others not.
    Andrew

  • PDF Software causing problems in sending some PDF files but not all?

    I have been having problems sending some emails with PDF attatchments, they are being returned more and more frequently.  I've spoken to our server host and his answer is as follows saying that the problem is we are using "cheap PDF software" which is why I can send PDF's via Gmail or Yahoo but not through our server.  He suggest we buy a more expensive software or using Gmail for our important bids and invoices that are sent daily.
    My question is:  Is this even close to what could be causing the problem.  We are using Adobe to create our PDF's using our HP CM1410 or the Neat Scanner.  The Neat is a new device but the problem was ongoing before the Neat Scanner was added.
    Our IT person who set our network, hardware and software says it's the server and he's never heard of this being an Adobe problem.  So we're stuck not knowing who to believe

    There are several potential problems. It could be that your e-mail client is not encoding the PDF properly, but looking at it as an ASCII file (7-bit characters). The encoding is not as much of a problem anymore, but still a potential issue. The structure of the PDF that you are getting from the scanner may be corrupt. You can use some of the preflight scripts to check the integrity of the PDF. You might even try saving as a new PDF to see if the 2 versions work differently.
    It might be better to print the proposals you mentioned to the Adobe PDF printer and get better quality proposals than you would get with a scan. That would also probably avoid the problem you are having.

  • Why do i get a colourful circle mouse pointer on some web sites but not all sites

    Hello
    I seem to get a cirlce as mouse pointer on some web pages but cannot fiure out why ??? it has only just started to happen some web pages are fine

    See:
    * http://kb.mozillazine.org/Error_loading_websites

  • Source Reformat menu item disabled for some XML files, but not all

    For some reason, the 'Reformat' option isn't available for some of my XML files (in Source menu it's disabled, in the right-click pop up menu it's not even there). For example in my META-INF folder it's enabled for .wsdl files but not .xml files. In the same project, it's enabled for all .xml files in the WEB-INF folder.
    Any idea what's going on?
    TIA

    Thanks to everyone for their response. But - it is NOT a copyright issue , it is NOT a DRM issue, it is not a Faber College double secret probation encoding issue.
    This is a simple .wmv file, that I have copied, burned, created a disk image, made a copy of and sent to the UK, Germany, Ireland and even New Jersey. It has been played on a MacBook Pro, a MacBook, a Dell whatever, a Sony stand alone DVD player, an LG DVD player. At least three nieces or nephews, and at least 2 canines have put it through ISO 9XXX rigors.
    The problem is that Apple Quick Time 7 Pro with Flip4Mac Pro "can't handle it"
    It opens fine, it plays fine --- but when I try to "output" it via the FILE menu - all of the options
    Share ...
    Export ...
    Export to Web ...
    are greyed out.
    I know nothing abour codecs and wrappers but I tihnk that this is the problem.
    What should I know about the file?
    Ffor example, years ago, all you needed to know about a Mac file was the "Creator" and the "Type" - both were 4 character codes. something like ADOB for Adobe and PMK2 for Pagemaker 2.0.
    Any help identifying the file and what I can use to get it onto my iPhone will be appreciated.
    Thank you.

  • My iPhone 4 just suddenly deleted all my contacts ? I turned my phone on off and some came back but not all of them ??

    I was using my iPhone got a text opened in and all my contact names had gone went into my contact and it had deleted them all . I turned my phone on and off and 100 came back but not most off them what do I do ?

    I suggest you immediately make a backup of your data. You don't know if or when the computer will show some symptoms from the drop. You may want to, for piece of mind, take the computer to an authorised service center for assessment. No one here can assess any internal damage you may have done.

  • Need to write a formula in ICM to strip some PV data, but not all...

    In previous steps of the ICM call flow, we are setting PV6 with some call data.  For example, Parts^(DateTime)^N^N.  The carrot is just for a separator.
    In a later step, we want to change the Parts to be Sales, but we don't want to delete the datetime and ^N^N.  How can I write a formula to strip the first part of the call variable, but leave the remaining and insert the new portion "sales?"
    ICM 7.5
    CVP 7.0
    I'm racking my brain on this one here.
    Thanks all!
    Cheri

    Try setting PV6 to:
    concatenate("Sales",right(Call.PeripheralVariable6,(len(Call.PeripheralVariable6) - find("^",Call.PeripheralVariable6))))
    The find function will give you the character number of the first occurrance of whatever you specify, so combining "Sales" with the rightmost number of characters of the PV should do the trick. To determine the rightmost (if the Parts part is variable length) you want the total length minus the first x characters before your "^".
    I haven't tested it out, so you may need a +1 or a -1 in there somewhere before the last two parentheses to get the exact right length.
    Update: I just tried it out in Excel. As posted, it will not include the first "^", so you'll either need to have:
    concatenate("Sales^",.....
    or
    concatenate("Sales",...))+1))

  • How do I delete more than one but not all emails at once?

    I don't want to have to click on or check mark 6K emails individually to erase them all. This seem like a most basic feature element.
    Can it be done efficiently? or at all?

    One way to do it: Right-click on the folder and select "Search Messages" from the menu. Enter your search criteria for the messages you want to delete. After the search completed, click into the list in the lower part of the search window and use the Ctrl+A keyboard shortcut to highlight all results. Now you can delete them all at once (or move them somewhere else, which I would recommend as an intermediate step if your deleted message aren't moved to Trash but deleted right away, in case your search caught some messages you ''didn't'' want to lose).

  • How to print PDF few pages duplex but not all from one PDF Doc?

    Hi,
    We have a desktop application that we use and it gives instructions to printer which document to duplex and which to not. For easy understanding, in a PDF if there are 10 pages, i want to take first two pages whenever they are  printed they go  on duplex rest of 8 pages should print without duplex. I have a PDF of these 10 pages document and want to send via email to one, so that if he has duplex printer, he just send that PDF doc to printer and it automatically send first two pages duplexed then rest of 8 pages per paper. So finally he get 9 printed hard copies. My question is, is there any capability in PDF document we can apply per page that when go on printer it instructs to printer to duplex me or not. Like we have PDF properties associated with doc. Can we setup such property for each page? I know this is not a good question, but our business requies to send PDF to customers and we do save this to do ourself, How customer know which page to duplex then?
    If there is any automated solution we can give to customers? The PDF each page take decision by its own when going on printer it says i have to go on back of the paper and the other  says i won't have to be duplexed?
    Shamshad Ali
    [email protected]

    I see you are using Dietmar Aust's JasperReportsIntegration kit. Check out following tutorials on how to call your report from APEX:
    http://www.opal-consulting.de/downloads/free_tools/JasperReportsIntegration/Opal-Consulting-JasperReportsIntegration.pdf (page 32 - 33)
    https://www.opal-consulting.de/apex/f?p=20090928:9:::NO:9::
    These sources should be sufficient to successfully call reports from an APEX application.
    Feel free to ask more information in case you're experiencing difficulties...

  • QT plays sound on some avi videos but not all

    i can play an avi video perfectly with sound and everything, but then i download another and the video play without sound. anyone know what is up and how to fix it?

    [Perian codecs for Quicktime|http://www.perian.org] - plugins to add functionality to Quicktime for playing additional audio and video formats
    [Quicktime audio problems, Perian, VLC|http://discussions.apple.com/message.jspa?messageID=9013669] - read note about uninstalling prior DIVX support before installing Perian.

  • IMessage works on some WiFi networks but not all

    I am having issues using iMessage on my iPad 2 while on my home network.  I cannot send or receive messages while connect to my home wifi but when I went over my firends house and connected to their wifi everything was working fine.  Now I am back home and it will not work again.  Unfortunately after endlessly searching the web I have not been able to find any details about this and I even attempted at trying to open ports on my router but I have absolutely no I idea what I was doing there.  Any help any one has would be greatly appreciated!
    JP

    Ok, right after submitting this question I may have found the solution.  After referencing another post I came across some information about changing the DNS information under the wifi settings. I Changed it to 8.8.8.8 and was finally able to send a message (I think, still waiting for a reply).
    JP

  • When I was on iTunes, letting my iPod sync and back up everything, all of my songs disappeared, then some came back, but not all and iTunes won't let me download the songs that didn't come back!!!! Please help me!!!!

    Can someone please help me on this!!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
      - Restore to factory settings/new iOS device.

  • How do I limit access to certain (but not all) applications on my laptop?

    Hello,
    Is it possible to reduce access to certain applications (eg Email) while allowing other applications to remain "open" to all users?
    I only have one account on my powerbook, and would like to simply prevent access to certain applications.
    Any help will be greatly appreciated,
    thank you,
    nihal

    Korelice
    you would need , in following Matt's advice to ensure that the restricted users were not created as admin users. That is, on creation do not click the 'allow this user to administer computer' box. If you tried parental controls on them, you would be told by the OS that you can't restrict an admin.
    The better advice would be to restrict the actual use of the single user you have now, who is presumably an admin, to just admin (installations, re configs, set up new users etc) tasks. Change his password so those real people you don't trust (?) couldn't get to him. You could have a 'restricted' user who is not restricted in respect of apps (email, browser etc) but can't admin. Use him yourself for browsing etc and general use. Add another restricted user for(the kids, irresponsible friends and such) who are not admins and can only use certain apps. I am aware that is not precisely what you asked.

  • My DVD drive reads some DVD's but not all.  Help

    I am trying to install all of my graphics programs (Adobe, Quark, Suitcase). It will only read one of my dvd's and not any of the others. The disks show up when I put them in my drive on my other mac. What is going on?
    Thanks.

    Welcome ot Apple Discussions!
    Since a Powermac G5 can't run 10.6, we are kind of mystified what your computer consists of. But I will say this much. If these are commercial DVDs, chances are the drive has gotten dirty, and needs a proper head cleaning. Ask a local authorized service technician to recommend one for you.

Maybe you are looking for

  • How to recover all items at once from RecoverableItems?

    We have a user who left the company and made it a habit to delete and purge all of his emails.  We now need to recover the the emails.  The server is Exchange 2010 SP2 (running on SBS2011).  Single item recovery is turned on and we are well within th

  • How to create Cross Tab type report?

    Hey all, I am in the process of converting an application. The current application uses Crystal Reports to generate a Cross Tab report. I want to use Oracle to generate this type of report. Can anyone tell me how this is accomplished?

  • IPad APN setting not being permanently saved

    Have new iPad and the APN setting keeps changing back to default, any clues?

  • Video card driver

    Hi,i just bought a new hp 15-020sq and i have problems with finding a good video driver,i  installed the one that is for this version,but for my youcam and 1 other driver it says that the video driver isnt good.Any ideas where i can find good drivers

  • Caractères ASCII non imprimable dans un XebService

    Bonjour,  Je tente de réaliser un WebService simple implementant une requete GET. A chaque tentative de construction une erreur apparait me disant qu' "un caractère ASCII non imprimable a été détecté."  J'ai tenté plusieurs modifications, d'abord une