Editing a form after it has been protected

I'm creating forms using acrobat and I distribute them manually to reader user's by activating reader extended features.  Before doing that, I'm asked to protect the document with a password.  Where do I input that password to turn my form back to editing mode supposed the user finds a bug I need to correct?

It is better to always retain unsecured and non-enabled versions. So when you apply security restrictions and Reader-enable, do not overwrite the original.
If you haven't done this and need to create a non-secured version of a form that also Reader-enabled, for save a non-enabled version by opening the document in Acrobat and select: File > Save a Copy
This will create a non-enabled but secured version. Next, open the copy you just saved (it doesn't happen automatically) and select: File > Properties > Security > Security Method > No Security
and you will be prompted to enter the password.. Save this unsecured version to a new file so you don't overwrite any others.

Similar Messages

  • Can I edit a form after it has been submitted?

    For example:
    I have a Purchase Request form that is filled out by the person requesting the purchase and after submission, our financial advisor has to fill in additional data in the same form.

    The form is created in Acrobat X Pro.  I uploaded it to FormsCentral and distributed it that way. 
    When you click "submit" it goes back to FormsCentral.
    What I'm hoping to accomplish is that someone can fill out the form with the appropriate information, submit it,  and then after approval a second individual can go in and add additional information to the form.

  • Removing the ability to edit a form once it has been submitted

    Good Day All;
    I am not sure if this has been asked before......
    Is there a way to turn off the ability to edit a form once it has been completed and submitted?
    Thanks all
    Chomp

    Thanks Malcolm... That is what I thought... I guess there is no way to do it unless LiveCycle Designer is installed....
    Chomp

  • How do I insert additional text into a form after it has been created? - Acrobat Pro XI

    I am trying to add additional text and fields into the middle of a form I have previously created.  I can copy and paste the information in there but it does not shift the lines below it down.  Is there any easy way to accomplish this without having to recreate the entire form?
    I appreciate any help I can get.
    ~Shannon

    If you need to make such changes to the layout of the form, you should go back to the source document, edit it, and generate a new PDF. You can then replace the pages of the old document with the new pages. Any fields that you've already added will be retained and can be move to their new positions and you can add any new ones you need.

  • Is is possible to edit a form once it has been submitted?

    I really like forms but would like respondents to be be able to refer back to what they answered and possibily add to it but I cannot see an option that would let them do that. It seems that once the form is submitted, the respondent lose access to it?

    Hi,
    The respondant cannot refer back to their response and/or add to it once submitted.  This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Thanks,
    Josh

  • Set Cursor.vi fails after it has been called for 30 different panel refs in LV 7.1.1

    Make sure both attached files (Run LabVIEW_Cursor_TestCase.vi, SimpleVI.vi) are in the same folder. Run LabVIEW_Cursor_TestCase.vi notice that the -3 error code is returned from "Set Cursor.vi" after it has been called with 30 different panel refs. If "Set Cursor.vi" is replaced with "Set Busy.vi" the same error occurs.Is there a workaround for this problem other that setting the cursor image manually in user32.dll? I must be able to open more than 30 panels and set them all to busy. In the test case I used a single VI, simply to demonstrate the error.
    Message Edited by Jerred on 05-04-2007 10:06 AM
    Attachments:
    LabVIEW_Cursor_TestCase.vi ‏68 KB
    SimpleVI.vi ‏13 KB

    This bug is fixed in LabVIEW 8.0 and later.  Unfortunately, I know of no workaround in LabVIEW 7.x.  When I encountered this bug in one of my UIs in LabVIEW 7.x, my "fix" was simply to ignore the error outputs from the cursor VIs, and to live with the fact that I had no custom cursors after 30 windows had been opened.
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • How to settle the expenses after AUC has been capitalised.

    Hi All,
    I have a understanding that after AUC has been settled, we can edit the settlement rule in WBS element and settle directly to the capitalised assets.
    I can not see the settlement rule but investment profile since the project being a Capital comes from Investment measure and automatically created.
    Can you tell me how to create a new settlement rule in this case. It is Urgent
    Regards
    VK

    Hi Vijay,
    This requires a change in the settlement rule since the AUC is no more and it must be the settlement reveiver earlier which should be changed to the main asset after capitalisation.
    Please go to Transaction code CJ20N, select the WBS and go to settlement rule via edit > Cost and set the receiver as the fixed assets itself instead of AUCV since AUC has been transferred to main assets.
    You can then settle using CJ8G or CJ88 but CJ88 is a better option.
    I think, I have answered the same query.
    Regards
    Bharat

  • Tiles- Cannot forward after response has been committed Error

    I am trying to use following approach for my tiles implementation but i am getting error like
    java.lang.IllegalStateException: Cannot forward after response has been committed.
    I have gone thorugh the other posts regarding the same error but not helping me.
    Any clues greatly appreciated.
    Thanks,
    Sachin
    "I haven't found a way to directly dispatch to a tiles definition, but you can eliminate the need for multiple "wrapper" JSPs by creating a single "tilesDispatch" JSP that is able to dispatch to different tiles definitions, and establishing a convention for mapping URLs to that JSP, and identifying the tiles definition you want to load.
    For example, you could use the following convention to identify a tiles definition:
    /tiles/defName
    where "defName" is the name of the tiles definition (from tiles.xml) that you want to use. The code for the tilesDispatch.jsp would be as follows:
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ taglib prefix="t" uri="http://jakarta.apache.org/struts/tags-tiles" %>
    <%
    String tilePath = request.getRequestURI();
    int slashIndex = tilePath.lastIndexOf('/');
    if (slashIndex >= 0) {
    tilePath = tilePath.substring(slashIndex+1);
    %>
    <t:insert definition="<%=tilePath%>" flush="false"/>
    The scriptlet code takes the request URL (e.g. /tiles/defName), strips off everything up to and including the final slash (e.g. defName), then the tiles "t:insert" tag is used to look up and insert the corresponding tiles definition.
    In order to map all URLs of the form /tiles/* to the tilesDispatch.jsp, you would need to add the following to your web.xml:
    <servlet>
    <servlet-name>tilesDispatch</servlet-name>
    <jsp-file>tilesDispatch.jsp</jsp-file>
    </servlet>
    <servlet-mapping>
    <servlet-name>tilesDispatch</servlet-name>
    <url-pattern>/tiles/*</url-pattern>
    </servlet-mapping>
    Note: You may need to insert a slash before tilesDispatch.jsp in the <jsp-file> element. I am using pre-compiled JSPs, so my configuration is a little different. So if <jsp-file>tilesDispatch.jsp</jsp-file> doesn't work, try <jsp-file>/tilesDispatch.jsp</jsp-file>.
    Once you have this set up, you can refer to tiles definitions using the /tiles/defName convention in your faces-config.xml. For example, if you have two tiles definitions in your tiles.xml file: tile1 and tile2, you could have something like the following in faces-config.xml:
    <navigation-rule>
    <from-view-id>/tiles/tile1</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/tiles/tile2</to-view-id>
    </navigation-case>
    </navigation-rule>
    Note that when I have used this convention, I also have used the prefix mapping for JSF. That is, when linking to a JSF page, based on a tiles definition, from a non-JSF page, the URL would be as follows:
    /faces/tiles/defName
    In this case, the Faces servlet is initially invoked, which sets up the JSF environment. Then the /faces prefix is stripped off, and the remaining URL (/tiles/defName) is routed to the tilesDispatch.jsp, which strips off the /tiles/ prefix, and inserts the "defName" definition.
    We are currently using this approach in a number of web apps, and it is working very reliably. I hope this helps.

    Hi gimbal2,
    I hope to better explain.
    In my JSF code I have the next:
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:fn="http://java.sun.com/jsp/jstl/functions">
         <h:body>
              <ui:composition template="/template.xhtml">
                   <ui:define name="page">
                        <h:head>
                             <h:outputStylesheet ...
                        </h:head>
                        <h:form id="form1">
                             <rich:dataTable      id="table"
                                            value="#{listBeanRequest.elements}"
                                            var="element">
         </h:body>
    </html>
    In the listBeanRequest class, the method getElements() has a line, Integer h = Integer.valueOf("a");, which efforts the java.lang.NumberFormatException
    An in my web.xml I have:
    <filter>
         <filter-name>SecurityFilter</filter-name>
         <filter-class>my.filter.SecurityFilter</filter-class>
    </filter>
    I'm using JSF 1.2 running on Apache Tomcat 6

  • My computer does not eject the disc after it has been burned.

    I understand that my computer is supposed to automatically eject a disc after it has been burned. Mine doesn't. Instead, I hear a "Plonk," which I assume is announcing that the burning process has been completed.
    First of all, is it true that the disc is supposed to be ejected after the burn has been completed? Secondly, how can I restore that function?

    Diane Wordsmith wrote:
    To clarify...are you importing songs from a CD into iTunes, or are you burning songs from iTunes onto a blank CD? If it's the former, iTunes won't eject it...you'll just hear a chime or noise when it's done. If it's the latter it should eject.
    For the second poster, it sounds you are importing. In which case, you will just hear the sound when importing is finished and you eject the CD yourself.
    Just to make sure that I understand you correctly, here's what I did: Imported songs from website. They were in RealPlayer format. I then converted the song files into MP3 format, and put them into my iTunes music library. Finally, I put the songs in a New Smart Playlist, and burned them into a blank disc.
    Given this situation, should I expect the disc to automatically eject when the burning is competed? If so, what do I have to do to get it to work properly?

  • After password has been reset how do I reset keychain?

    After password has been reset how do I reset keychain?

    That article is a great help if you remember your OLD login password.
    If not, the bad news is in this article:
    OS X: Keychain Access asks for keychain "login" after changing login password
    read it carefully, It explains how to change your keychain by using the OLD password.
    If you don't remember your original (former) account password
    If you don't remember your original password, you'll need to delete the keychain. Deleting a keychain also deletes all the password data saved in that keychain.
    If this applies, it means is that your old saved passwords are lost.
    You will have to start collecting them anew and adding them to the new keychain. Use Web mail and log in to your email with a Browser. Get them to send you your old password or reset it, then record the new one in Mail Preferences, and it will be saved in the current login keychain.
    You will have to do a similar exercise with your other saved passwords.

  • How to add DNS server to CER after Server has been Built

    How to add DNS server to CER after Server has been Built?
    The reason why, the CER 1.3.1 that I upgrade to 7.1, had the switch list by hostname,
    The install of 1.3.1 had the LMHOST file editted with all the switch names.
    Is there such thing as a host file on 7.1 CER? If not, that is where I need to add the DNS server now. As they will have to add the switch hostnames to the DNS server.
    Thanks
    Kallol

    I found where to set the DNS via CLI...
    admin:set network dns
          set network dns options
          set network dns primary
          set network dns secondary
    Also it requires me to configure the domain name.
    set network domain name

  • How to forbid any further changes for PO (QTY and price ) after it has been

    Hi,
    How to forbid any further changes for PO (QTY and price ) after it has been done GR and LIV? Thanks.

    Hi,
    Price anyway cannot be changed once GR is posted on the PO item, it can be changed only by cancelling the GR, the same applies to IR too.
    But quantity can be changed at any time.
    So if you are looking at blocking qty too, then a customized message through save exit is the option, I am not aware of any standard SAP messages that can be configured to achieve this..
    Ramesh

  • How do i get back my stateful session bean after it has been passivated

    hi ,
    How do i get back my stateful session bean after it has been passivated by container.
    i'm confused that is it possible or not .......give me answer
    i've one stateful sessionbean which i'm accessing throgh my normal java client . now what i'm doing is when i first time call a method it is running ......then i'm shutting down the server jboss .......it is calling my ejbPassivate() method ... at this particular time client program doesn't do anything.....
    now after i restart my server i'm again calling back that business method with that last object reference.......it gives me the exception given below.....
    java.rmi.NoSuchObjectException: no such object in table
    java.rmi.NoSuchObjectException: no such object in table
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source)
         at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:118)
         at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:227)
         at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:167)
         at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
         at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
         at org.jboss.proxy.ejb.StatefulSessionInterceptor.invoke(StatefulSessionInterceptor.java:106)
         at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
         at $Proxy1.makeNewAcc(Unknown Source)
         at client.GanJavaClient.main(GanJavaClient.java:46)so pls tell me that is it possible to get back that session besn or not

    Stateful session beans are not persisted across restart of the EJB server instance(s) hosting them. You can't treat a Session bean as one would an entity bean.
    Chuck

  • After Firefox has been running a while, every link opens a new window

    After Firefox has been running for a while, every link starts opening in a new window. Until today, if I closed Firefox and restarted it, it would stop happening ... until it started happening again. Then today, I closed it down and restarted it, and it was STILL happening. So either I find a solution, or I stop using Firefox on my Mac.
    This is a vanilla installation - both for the Mac and Firefox. I don't use the Mac as my main computer. The Mac is running OS X 10.5 8. The problem has existed through many upgrades of Firefox. I always upgrade as requested. This last time, however may have been the killer. A new upgrade was installed right before the problem became unfixable by shutting down and restarting. I'm running Firefox 15.0. I just rebooted, however, and now (for now), it's working properly.
    I have no add-ons installed in Firefox.
    My only plug-ins are iPhotoPhotocast, QuickTime, SharePoint, and Shockwave Flash.
    I've seen multiple reports of this problem on this Web site, but no solutions. Just a generic recommendation to disable add-ons to see which one is conflicting. But I'm running no add-ons. I think there's a bug in Firefox.

    If it were an extension or theme or a Mac driver, wouldn't it cause the problem consistently? This only happens after Firefox has been running for a while. I'm using Firefox to type this reply right now, and the problem is not happening.
    And it's not because I suddenly start using some offending software. As I said, I don't use the Mac as my main computer. Usually I'll have been using my PC, I'll go back to the Mac to check my email on Firefox, and suddenly the link problem is happening. I only use the Mac to check email on the server before I download it with Outlook (on the PC) so I can delete spam on the server first.

  • Workflow Shows as 'In Progress' after Workflow has been completed.

    Hello All,
    I have created a custom workflow using SharePoint Designer. Within this workflow I have multiple 'approval process' tasks. In theory this was so that once the first user had approved the item then the next would be prompted to approve the item, and
    so on. The users that the item must be approved by are set when the item is submitted initially.
    Just so anyone reading this knows I have no formal experience/education in SharePoint workflow design, but I would like to think I know my way around SharePoint(in general) at this point.
    My problem is, the company I work for is just starting out using SharePoint workflows, and from what I understand workflows that are 'In Progress' are related to server performance. I noticed today that there are 5 items in the list which
    under the 'workflow status' column display that they are 'In Progress' which is entirely correct. However, when I go to -> 'List Settings' -> 'Workflow Settings' this workflow is showing 8 workflows 'In Progress'.
    Thank you to anyone who is able to help me with this,
    James

    Hi,
    According to your post, my understanding is that workflow shows as 'In Progress' after Workflow has been completed.
    To send the task one by one, you can select one at a time(serial) when you select Task Process Participants.
    Per my knowleadge, when you go to -> 'List Settings' -> 'Workflow Settings', it show all the workflows you associated to the list.
    To see the running workflow, you need to select an item, right click the title, and then select the workflow.
    However, each workflow enstance can only start once on an item.  In other word, you can not start the same workflow again untill the previous one is completed.
    As you said, workflow shows as 'In Progress'.
    Please make sure all the users have approved the tasks.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Problem with Flash player in Ubuntu 11.04 for Firefox

    I am running Ubuntu 11.04 on my laptop and use firefox as my main browser. I have a very strange experience when browsing video sites like Youtube.com or Bumperhit.com Some videos are playing all right. But some others, show an error message "Please

  • Change an image from drop down menu

    I am trying to build a mobile contact form for my company.  I want to add a selection for "Car", "SUV", and "Truck" to later do image mapping to make it easier for my customer to indicate the damaged area.  I want to do this for my regular site also,

  • Image Location - Unavailable

    Recently I tried to consolidate a project into one location that did not quite have enough memory to do so. Also recently, Aperture crashed while trying to erase a media card. Since one of these two events, it's suddenly decided that about 160 images

  • No sound in iTunes; sound everywhere else

    Hello, I recently updated my iTunes (not this most recent update, but the previous one) and when I did, it ceased to play audio. I can watch things in Quicktime, I can download music, I can sync my phone, but I have no audio coming out of it. I check

  • Lion up to date program for JAPAN

    I'm trying to fill up the Lion uptodate program for Japan. I only manage to get US and ASIA uptodate program but not JAPAN. Anyone can hellp me ? Kind regards Ray