Submitting pdf version of forms central form multiple times

I have a form I created in Adobe Forms Central and it is great.  It is our critique form that reviewers fill out after they have seen a high school musical.  I send three reviewers to each musical and because the questions for each musical are the same, there will be 3 reviewers filling out the form for 50+ musicals this year.  The critique is long and requires some time for them to fill out, so I downloaded a pdf version of the form.  The problem I am now having is that the submit button on the pdf form is NOT working.  Which defeats the purpose of creating the form and having a forms central account in the first place.  Do I need to download a pdf for EACH reviewer for EACH musical?  Having to manually enter the information into the forms central responses tab is very frustrating when I don't see where the problem is.  Please help.  Thank you! 

This should work. You don't need to download multiple PDF files. You should read this FAQ: http://forums.adobe.com/docs/DOC-2653
Make sure everyone is using Adobe Reader and not some other viewer.
If you are using Adobe Reader and its not working plesae send the PDF to [email protected]
Randy

Similar Messages

  • How to stop someone from filling out pdf form multiple times?

    My customers order my service by down loading a .pdf form. They then fill out the form and submit the form to my email. How do I stop a customer from submitting the form multiple times. I would like for the customer to submit the form only once filled out. If I need more info I could follow up to their order manually via email. Thanks for your help!

    One of the main reasons why you have a customer posting multiple submits would be because for some reason he/she doesn't know the first one was successful.
    Add a property your form to record whether or not a valid submit has already happened. Use script to set that property on submit. Check each time the submit operation is fired to see if the property is set. If it is display an error dialog and stop the submit from occurring.
    If someone wants to open multiple copies of your form and fill it out and send it to you, well there's nothing you can do about that.

  • How to stop someone from submitting a form multiple times?

    My customers order my service by down loading a .pdf form. They then fill out the form and submit the form by my email as a pdf form. How do I stop a customer from submitting the form multiple times. I would like for the customer to submit the form only once filled out. If I need more info I could follow up to their order manually via email. Thanks for your help!
    Sorry if a newbie question,
    Looking for a way to disable the form after the form is filled out then submitted through their email

    One of the main reasons why you have a customer posting multiple submits would be because for some reason he/she doesn't know the first one was successful.
    Add a property your form to record whether or not a valid submit has already happened. Use script to set that property on submit. Check each time the submit operation is fired to see if the property is set. If it is display an error dialog and stop the submit from occurring.
    If someone wants to open multiple copies of your form and fill it out and send it to you, well there's nothing you can do about that.

  • Printing form multiple times

    Hi Experts,
    how to print the form multiple times? . i have multiple shipto entries....for every new shipto entry form should be printed..can you please provide me with sample code..

    Hi,
    I cannot see if you are using sapscript or smartforms. I expect sapscript.
    You need an ABAP change. The program must as first determine the SHIP TO Addresses.
    Then a loop over these adresses and making the several forms (also using open and close form).
    If you use a smartform you have still a loop over the adresses. But  know you have also to change the smartform. You must give the addressnumber as parameter to the smartform. And the smartform must print that adressnumber,'
    If you need more info. Let me know
    Gr., Frank

  • Avoid opening same Form Multiple times

    hi
    Can anyone help me , how to put restruction not to open the same form multiple times .
    regds/sanjay

    I'm not suggesting that the following is great idea but..
    You could start a timer and keep updating the row in the table with a timestamp and then have a job which checks if there are rows in the table that have timestamps older than the timer interval.
    I actually think that that is really bad idea.
    I think its more important to ask why this is a requirement? I currently write sytems for police officers and even they can grasp the concept that someone else might be updating the same data at the same time as them and can work multiple sessions. Its hard for them, and sometimes I think they may just be hitting their keyboards with a truncheon, but they do get it.

  • Entered Verbiage not appearing in exported PDF version of form

    Hello,
    I have created an online application in Forms Central.  It works great, but if the end-user enters too much verbiage in any of the sections, it is often cut-off in the exported PDF version.  Is there a way to ensure all entered verbiage appears in the exported PDF version of the completed form?
    Thank you.
    -Mark

    Hi,
    And  now you can make the field taller in the design tab, so that you can print all the text.
    Or you can print the Detail view.
    Please refer http://forums.adobe.com/message/5515704#5515704
    Hope it will help you.
    Thanks,
    Ying

  • Calling same form multiple times

    Hi, i need to call a single form with different table names as parameters depending on conditions.
    for eg here is the approach
    if flag1_is_set
      call form1 multiple times with table1, table2....... as parameters
    "and i can avoid this
    "  form 1 using table 1
    "  form 1 using table 2
    "  form 1 using table 3
    "  form 1 using table 4
    "  form 1 using table 5
    elseif
      flag2_is_set
        form 1 using table 2
    elseif
      flag3_is_set
       form 1 using table 3.
    but i cannot call forms like this. can someone suggest
    an equivalent implementation on how to do this.
    if i dont implement in the above mentioned approach i have to code the same thing with minor changes multiple times
    thanks.
    your help would be appreciated.
    kranthi.

    You might try passing a field symbol (itab) in the tables.
    And assign the filed symbol with your itab as per the condition.
    Check if the program below gives you any idea.
    REPORT  Z_RAM_DYN_TAB_IN_FORM.
    PARAMETERS : P_TAB1 TYPE C.
    DATA: lt_users2 type standard table of usr02.
    DATA: lt_users1 type standard table of usr01.
    FIELD-SYMBOLS: <fs_itab> type standard table.
    SELECT * into table lt_users1 FROM usr01.
    SELECT * into table lt_users2 FROM usr02.
    IF P_TAB1 eq 'X'.
       ASSIGN lt_users1 to <fs_itab>.
    ELSE.
       ASSIGN lt_users2 to <fs_itab>.
    ENDIF.
    PERFORM test_form TABLES <fs_itab>.
    FORM test_form TABLES x_itab .
    FIELD-SYMBOLS: <fs_wa> type any.
    FIELD-SYMBOLS: <fs_field> type any.
      LOOP AT x_itab ASSIGNING <fs_wa>.
        DO 5 times.     "Write first 5 fields of itabs.
          ASSIGN COMPONENT sy-index OF STRUCTURE <fs_wa> to <fs_field>.
          WRITE :  <fs_field>.
        ENDDO.
        WRITE :/.
      ENDLOOP.
    Thanks,
    Ram
    Message was edited by: Ram Manohar Tiwari

  • How to control the opening form multiple times

    Greetings to all,
    I used Open_Form to open the form in my 'Menu.mmb'.
    My Question is:
    How we control the opening of a form from multiple times?
    Ex:
    In my menu.mmb I used OPEN_FORM.If we open the form,which was already opened ,I want to stop the form to open. How to do this?
    Thanks,
    Bhujendra

    pls try with
    FIND_FORM('EMPDETAILS1');
    OPEN_FORM('C:\INH\EMPDETAILS1');
    jeneesh                                                                                                                                                                                           

  • Reprinting A form multiple times

    Hi,
         I have to reprint a form multiple number of times and each time a print is given
        a text COPY # is added in my layout
    For example: if it is printing first time then nothing is added
    If 2nd time then Copy 1
    IF 3 rd time then COPY 2 and so on...
    I have got this logic but not sure if it will work:
    •     Scan table NAST for any other occurrences of the same output using the NAST Key fields except the Date (NAST-ERDAT) and Time (NAST-ERUHR).
    o     If this is the first instance then it is not a reprint
    o     If one entry exists this is the 1st reprint i.e. COPY 1
    o     If two entries exist then this is the 2nd reprint i.e. COPY 2etc…
    Thanks
    Ricky

    Hi ,
    This could also be solution , but I am not sure Please check with your Functional Guy .
    1) create different output types for Ex: Requestor , Copy  etc ,
    2) when you need print out for both , both messages have to created in that Tcode ,
    3) regarding the Format change You can handle the output type in in the script or  Smart form and accordingly you can print the text .
    *Hope this Helps

  • How to open a form multiple times

    pl tell me how to open a form multiple times

    HI Sagar,
    Before adding the form to SBO
    try to get the existing count of the form
    as shown below
    For int = 0 To objApplication.Forms.Count - 1
                If objApplication.Forms.Item(int).TypeEx = FormType Then FormTypeCount += 1
    Next
    THEN append that with your form type as shown below
    objFormCreationParams.FormType=FormType & "_" & FormTypeCount.ToString
    Then add the form to SBO
    SO every time your form is opened the unique id will like URFORMTYPE_1,URFORMTYPE_2 and so on
    Hope this helps
    regards
    vishnu

  • Whatwhere is the plug-incontainer? happened to the plug-in container? it disappeared with the latest version and now firefox freezes multiple times each day.

    I don't see the plug-in container in the Windows Task manager since the last update of Firefox and now FF is freezing multiple times a day (since the previous update, before yesterday's). It takes several minutes after I see this until it unfreezes, and it's quicker to "end task" and re-start Firefox than wait. This most often seems to happen when the computer's been idle for awhile, rather than when I'm using it.

    Make sure that you allow the plugin-container process in the firewall.
    *http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • How can we use a pdf form multiple times for different people (students)?

    Our school created a pdf form of our report card but we are not able to "save as" the forms for use by multiple teachers for multiple students. Please advise.

    Just use Adobe Reader XI.  Adobe Reader XI allows for forms data saving but it does NOT allow for locking down that data.

  • Too much spacing on PDF version of form

    When I try to distribute as a PDF, there is nearly a whole page of space between my header and the form fields. In the web version, it looks fine though. What is going on? It looks fine in the preview as well. Very frustrating.

    To see what the PDF will look like in FormsCentral you need to switch to the Page View
    Look under the View menu at the top or use the button in the bottom right corner to switch between the Web View and the Page View.
    I think what could be happening is
    1) you have a page break on the Page View that you don't need (removing/adding page break in one view doesn't affect the other view) so go ahead and remove the page break you don't need
    2) you have a element that is too big and can't be split up therefore it is moved to the next page
    When you switch to Page View you might see explicit page break (that you can remove) and implicit page break (you can't remove them and the depend on how much content you have on your form).
    Let me know if switching to the page view helped you to fix your issue.
    Gen

  • How do I print the same PDF/PSD on the same page multiple times?

    I made a handbill and I need to print six of them on one page in order to save paper. How do I format the file so that I can print my handbill and have six come out on one page?

    If you want to use Photoshop, you will need to create a new document at the size if the page, place your original file, scale it down, duplicate it, align all the images.
    When you are satisfied save the new document, then convert each image (or convert before duplication as above) to a smart object. Save this with a different filename, you will then have a template if you ever need to do this again.
    The advantage of converting before making duplicates, is you can replace a single image and all images will be changed.
    The advantage not converting first is you can have different images aligned on the page. For example a multi page document on a single page.
    Now for a easier way under the file menu you will find contact sheet II. This can create all the duplicate images on a single page for you. You may want to try this first to see if it fits your requirements.
    Depending on what version of Photoshop you have, it may be necessary to install it.

  • ADOBE FORM-static-called multiple times - data on different pages

    Hi Experts,
    I am calling an adobe form multiple times for each employee inside a loop.
    The layout is less than half the page.
    For each employee inside the loop when calling the ADOBE form it is triggering a new page.
    I want to continue the printing in the same page.
    Is this possible? Please advice.

    That is bc ADF life cicle... Is always executing 2 times...

Maybe you are looking for

  • MDM 7.1 on HP-UX Archiving on a daily basis

    Hi all, We are migrating a MDM landscape from Windows to HP-UX. We used to run CLIX .bat files scheduled on the Windows Server to perform daily archive of our repositories. As CLIX is only available for Windows Plataform (you can check the MDMCX7100*

  • Skype crashes when calling

    Hi! I have a problem, when using skype and calling skype is either crashing or haning. I have surfed through this forum and trying everything i can, no luck. So i have reinstalled skype Deleted skype database db... something. Updated all my drivers,

  • When I go to the options and try to open "content" nothing happens.

    I need to change my pop-up settings, and the content tab will not open.

  • Go back gesture on Mac OS X Lion

    Hi everyone, I just installed new Mac OS X Lion and the only thing which I am missing is "go back" gesture. In previous version of OS I was able to slide with three fingers to the left (go back) or to the right (go forward). I have used those gesture

  • Client Proxy creation

    Hi, I am trying to consume a webservice available on the net, http://www.webservicex.net/globalweather.asmx I am creating it Via SE80 - Create service wizard. I give the URL of the WSDL, but when I click on complete , which ideally should generate th