Open a Copy of a form

Hey All,
Is there a way to force Acrobat to open a copy of a form when the user opens it up?  I am asking because I have some signature fields on a form and I don't want the user to open up the original and place a signature and then we have to send them a new form everytime they need it (the form will be on laptops that are mobile and very rarely in the office).  Any and all help would be greatly appreciated.
Thanks,
Paul

Hi Paul,
I don't think you can open a copy. Acrobat opens the file that the user has selected.
However you could script so that the user is prompted to save the form if the file name matches the template. Say the form is named "My Template.pdf". The following script in the docReady event of the form1 node should work:
if (event.target.documentFileName == "My Template.pdf")
     app.execMenuItem("SaveAs");
This means that when the user renames it, they will not be prompted to save as again.
Hope that helps,
Niall
PS: This won't work in LC Designer Preview, as the file name when previewed is generic, for example "c4BN23ms78.pdf". You would need to open the form in Acrobat/Reader.

Similar Messages

  • Error message: You cannot save a completed copy of this form to your computer.

    Hello,
    I created a PDF form in Acrobat Pro X and i am trying to distribute it by placing it on our shared drive so employees can take it from there and save it to their own computer.
    I tested the form with some employees that have Reader. Some can open it, save it, fill it in and submit it and others get this message when opening it:
    You cannot save a completed copy of this form to your computer. If you would like a copy for your records please fill it in and print it.
    I read some discussions that said to convert it to a binder, that didnt work either. i tried going to the advanced tab and extending the features to reader...nothing works.
    Please help.
    Thank you!

    Thank you for your help George. I placed a ticket with our IT department to have them check the system time on her machine. I'll let you know if it worked.
    Ioana

  • Cannot save a completed copy of adobe forms

    Hi experts,
    i was developing a simple Adobe form with a drop down list. When saving that form on local system ad then opening it , I tried changing the valve in drop down list it gives me a pop-up as
    "You cannot save the completed copy of this form on your computer."
    is there any setting to be donw to the form.
    thanks in advance,
    Govind.

    I guess you have already found the problem: you cannot save the file if your reader rights are down == your form has not been generated as interactive and no licence has been attached. Otto

  • If i try to copy standard Adobe form to Custom developed

    Hi Guys,
    If I try to copy Standard Adobe form to Custome developed ' iam gettng the 'internal error occured SAP FP API '.
    please let me know what to do ..
    Thanks
    Prabhu

    Hey,
    Instead of copying the Adobe Form,
    First try to save the form on your desktop.
    Open the form with Adobe Live Cycle Designer.
    Click on XML Source tab.
    Copy the XML Source.
    Now create a new empty form in Adobe Live Cycle Designer.
    Click on XML Source tab.
    Select the XML Source.
    delete the XML Source.
    And now paste the XML Source what you have copied previously.
    Hope this is better instead of copy.

  • Acrobat XI Windows 7 - unable to (copy and) paste form fields to a different pdf.

    To maintain a consistent appearance and function in the forms I create for various departments, I copy a few form fields  (text, checkboxes) from an unrelated Acrobat PDF. Then I paste those fields into a different PDF document that I am making fillable.
    I do this because Acrobat does not allow setting a default for certain attributes when creating form fields, i.e. an unchecked scroll option, a default font other than Helvetica (in Acrobat 8, 9, and X). Plus it is time-saving to copy and paste fields that are the same in another PDF, like name, address, phone. etc.
    We just updated to Acrobat XI and Windows 7 and now I cannot paste copied fields onto a different PDF.
    Using "replace pages" is not applicable as I am pasting to an entirely different form and copying form fields with the settings I use. 
    Is this a glitch or is something new that was not in Acrobat 8, 9, and X?
    Also, question regarding this forum entry -  http://forums.adobe.com/message/5638333#5638333 - which is somewhat different from my current question.
    The PDF creator could not paste copied fields on other pages of the same PDF. Was this ever resolved so that copy and paste worked as it has for the last 3 versions of Acrobat?
    Thanks!
    Joanie

    Gilad:  You're right: when the fields are different, such as a checkbox and a text field, and you try to title them the same, Acrobat gives you a message. I received no messages, the field names are not the same or I missed one and Acrobat is no longer messaging about it.
    My question is different. Acrobat XI will not let me paste any field copied from a different PDF.  I've been doing that for 5 years in three different versions.  Maybe Acrobat XI has a new process for that, which I could not find in Acrobat help. Maybe it's because all forms now have extended rights automatically in Acrobat XI and there is another method to copy common fields to other PDFs.
    Any thoughts about the new Acrobat XI? It's different in many good ways, but different.
    Thanks for your ideas.

  • How to open a page from a Form and pass parameters to the form on that page

    I found a similar example on this forum, but it did not work for me:
    declare
    l_names owa.vc_arr;
    l_values owa.vc_arr;
    i number;
    begin
    PORTAL.wwpro_api_parameters.retrieve(l_names, l_values);
    FOR i in 1..l_names.count
    LOOP
    htp.p(l_names(i) || ' ' || l_values(i));
    END LOOP;
    end;
    By using this method i get the parameters for the Form, like the session ID, but not the parameters for the Page that the form is displayed in.
    Another method I tried:
    To open a Form from a Form and pass parameters works fine like this:
    --In the After processing page PL/SQL event.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    if v_id > 0 then
    htp.formOpen('PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=2649500412&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=ID&p_arg_values='||to_char(v_id),'post');
    htp.formSubmit(NULL,'Upload Files');
    htp.formClose;
    end if;
    End;
    But I want to open a Page containing the Form instead of just opening the Form. Is this possible to open a Page and pass paramters to the page, and then let the form inside the Page access the passed paramters. The reason for this is that a Form cannot be based on a page template, or can it? When opening the form i want to keep the left menu, which I can if it is a page based on my template with the left menu.
    Best regards
    Halvor

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • I renamed a power point a file and now when I try to open it it keeps giving me the error code -108. If I try to open or copy it say: The operation can't be completed because one or more required items can't be found. (Error code -43). What do I do?

    I renamed a power point a file and now when I try to open it it keeps giving me the error code -108. If I try to open or copy it say: The operation can’t be completed because one or more required items can’t be found. (Error code -43). What do I do?

    Post in Microsoft's Powerpoint (Mac) message boards.

  • !0.5.8 How do I copy the 'system' form one internal Hard drive to an other (BY CD Packed up) Thank you

    !0.5.8 How do I copy the 'system' form one internal Hard drive to an other (BY CD Packed up)  I have tried but it will no show 'live' system folder - do and how can I bless it ? Thank you

    Carbon Copy Cloner will allow you to de-select directory trees, so you could use it to copy over everything EXCEPT the /Users directory tree.
    Mac OS X is NOT just the System Folder.  If you do not copy over the rest of Mac OS X, it will not boot.  So better to exclude Users and take everything else, then it is to try and pick and choose.
    The other approach is to install a New Mac OS X, and then copy over the stuff you want from the home folder(s) and reinstall any apps you want.

  • How do i open a PDF document in forms?

    How do i open a PDF document in forms runtime?
    acrobat reader would already be installed on the pc's.
    any help would appreciated.
    Thanks
    Hussein Saiger

    Hello,
    I'm not a specialist, but I think that you could configure these information in the /Apache/Apache/conf/httpd.conf file
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    <IfModule mod_alias.c>
        # Note that if you include a trailing / on fakename then the server will
        # require it to be present in the URL.  So "/icons" isn't aliased in this
        # example, only "/icons/"..
        Alias /icons/ "/appli/9IAS/Apache/Apache/icons/"
        Alias /jservdocs/ "/appli/9IAS/Apache/Jserv/docs/"
        Alias /javacachedocs/ "/appli/9IAS/javacache/javadoc/"
    ...Francois

  • HT201302 when i connect my iphone with computer i don't see any folder in my computer so that i could open and copy my pictures .

    when i connect my iphone with computer i don't see any folder in my computer so that i could open and copy my pictures . how do  i fix this problem?? P.S i have been using iphone since 3 years and this is the first time i face this issue.
    This is my 3rd iphone 4S while this issue wasn't pressent when i bought it but yesterday while i was watching my pctures suddnly the pictures automatically showed an error! but the folder of iphone with the icon of camera was still there but today i can't see that folder moreover i have synced my phone using itunes on my computer and charged as well so that means its not the connectivity problem.
    Another thing i am facing right now is that i made photo stream on in my phone but couldnt find any of picture on my pc i installed icloud panl but still in photo stream there are 0 photos and it never happend in iphone 4 while i am using the same apple id and it shows that it have uploaded my images on i cloud how do i get that??? 
    please help me so i could have my images into my pc
    i am using windows 8 and phone is iphone 4S with IOS 6.0.1

    iCloud: Troubleshooting iCloud Contacts
    Yahoo won't sync with iCloud and isn't supposed to.

  • I have a user on Adobe Reader X.  whenever they open a .pdf file, the form fields do not auto-fill u

    I have a user on Adobe Reader X.  whenever they open a .pdf file, the form fields do not auto-fill until you click in the box.  Is there a setting that can be changed to make the form open properly?

    Sounds like the form fields were filled in on a Mac using Mac Preview. This cannot be fixed in Reader only Acrobat. Ask the person who filled in the form to redo their work in Adobe Reader.

  • Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Once the user has entered the URL they want to add to the form. You can use the loadXML function to implement some special text in a label...
    var linkValue = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><exData contentType=\"text/html\" xmlns=\"http://www.xfa.org/schema/xfa-template/2.8/\"><body xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:xfa=\"http://www.xfa.org/schema/xfa-data/1.0/\" xfa:APIVersion=\"Acroform:2.7.0.0\" xfa:spec=\"2.1\"><p style=\"font-weight:bold;text-decoration:none;letter-spacing:0in\">The new link the user have entered is:<a href=\"" + textfield.rawValue + "\">textfield.rawValue</a></p></body></exData>";
      this.resolveNode("lblURL").value.exData.loadXML(linkValue, 1, 1);

  • Cannot open/view/access interactive pdf form on iMac after updating Adobe Reader to 11.0.06.70

    Cannot open/view/access interactive pdf form on iMac after updating Adobe Reader to 11.0.06.70. Please help!

    Here is what it says:
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.

  • Imported PDF won't open because it has no forms to fill but it does

    imported PDF won't open because it has no forms to fill but it does

    Can you send the PDF form you are trying to import to [email protected] so we can take a look at it.
    Thanks,
    Randy

  • I am trying to open a file in pdf form and I keep getting "there was

    I am trying to open a file in pdf form and I keep getting ...there was a problem reading this document....any suggestions???

    Hi,
    Thanks for reporting the issue; we would like to reproduce it at our end. Please give in the below information to investigate on this,
    1. The Linux distribution (Version of Linux) you are using.
    2. Are you opening the pdf from shared location? If yes, then how is the shared location mounted.
    It would help if you can send in the pdf you are trying to open. Please email the same to vaibhavp at adobe dot com or attach it on the forum.
    Thanks,
    Vaibhav

Maybe you are looking for

  • Automate flat IDOC to XML IDOC using one interface

    Hello all, We are currently going through a migration process where XI will be replacing a legacy system.  As part of our testing procedure, we are using historical data pairings from the legacy system and using an automated tool to compare if the in

  • Using JavaScript / Custom function in ACTION_BEFORE_RENDERING

    Hi I need to include some of my own text in the print output of a template. On the template, I can include a text item, and include that text item in the print output. The problem, however, is that when printed, the text item's initial value is in th

  • Can an AIR application pop in front of all other application ?

    There is a lot of method to bring an AIR window ahead of the other AIR windows but what about bringing an AIR window in front of the desktop ? My application need a fast response from the user when it received some network events. The users do not fi

  • ATV keeps re-syncing

    Alright, so I bought an Apple TV a few months ago, and I love it, but I'm having a problem with the syncing. I set the Apple TV to a custom sync, syncing all movies, TV shows, and podcasts. The ATV will star to sync, and it will start syncing fine, a

  • Planning in COPA

    Hello Everyone, I would like to know, for what purpose we use planning in COPA?  We have separate planning for CCA, PCA and PC. Thanks Sneha