Once a form has been submitted, can it be "unsubmitted" to allow the submitter to make changes?

Once a form has been submitted, can it be "unsubmitted" to allow the submitter to make changes?

Hi,
Unfortunately, it is not possible to un-submit a response. However, user can submit a new response and incorrect/old response can be deleted by the moderator.
Regards,
Nakul

Similar Messages

  • Maintain Spry Sliding Panel Focus once a Form has been submitted - DW CS5

    I have a web page with 6 sliding panels.
    The last panel has an email form.
    Everything functions fine except for one item:
    Once a user hits the Submit button on the form in the last panel the panels slide back to the first (0-default) panel.
    How would I go about maintaining focus on that last panel (the one with the form on it) once the submit button is hit so that I can display the confirmation text? 
    Thanks in advance for any help or tips.

    The scripting of a CGI or PHP mail form server side stuff is designed to:
    a. open another page with a confirmation of the send     or
    b. refresh the page where the form is located so it appears as it did before the send.
    When you refresh the page outside of a submit function (F5), the page defaults to the first panel because that's the way the script is written. It is neither abrupt nor awkward. It is the correct functioning of the javascript that controls the accordion, or in this case a slider. 
    You can maybe rewrite that script to prevent it from doing so, but I personally don't know how to.
    As was pointed out by Nancy, keeping the form open in the panel, will more likely than not lead to viewers thinking that it didn't go, and they will submit the form multiple times, (thinkiing each time that it didn't work)  before getting frustrated and leaving the page and site altogether.
    If this is for simply aesthetic reasons, remember that "form follows function".  In a choice between what works and what looks good, what works should always take priority. It doesn't matter how nice it looks if it defeats its purpose with the design being flawed.

  • How do I change template designs once a form has been created using another template design?

    How do I change template designs once a form has been created using another template design?

    I talked to a service Representative and he told me there isn't a function to change a form using one template to a different template. For example, I used template for "Accommodation registration" and wanted to change it to "admissions application." I was hoping I could just select a "Change template" rather than having to copy/paste everything to the new template. But that's what i had to do. Maybe the next version of this software will make it easier to change design templates.

  • Once a note has been deleted, can it be restored?

    Once a note has been deleted, can it be restored?

    Only if you have a backup.
    Device Backup:
    http://support.apple.com/kb/ht4946
    http://support.apple.com/kb/PH2584

  • "Error has occurred... You do not have the privilege to make changes."

    When I try to import anything into my library, I get this error message-
    "Error occurred while converting the file "song name here". You do not have the privilege to make changes."
    My i Tunes library is located in an external hard drive, but this has caused no problems before, nothing has changed in my system.
    Any ideas?

    Found someone else replying to a similar problem and this is what they said...Not sure if this will help but I am trying!
    (Thanks to JollyGiant)
    Check if you have read & write permissions on your iTunes folder.
    in finder, right-click on it and get info. unlock the little padlock (you may have to enter your admin password) and change the permission settings. next, click on the little gear-shaped icon and apply to enclosed items like so
    http://www.renewedvision.com/ProPresenterHelp/pgs/images/faqpppermissions.jpg
    you may also give everyone read & write access. if this doesn't help, try the same on your iTunes folder (not just the iTunes music folder).
    Message was edited by: R94N

  • Once a form has been signed with a digital signature, why can't you insert a bookmark?

    We are using Adobe 9 on Windows XP, I'm not sure what the forms are created in.
    I understand why you wouldn't allow a form to be changed once it's been signed digitally (because the person is attesting to the contents as they are when the person signed the form). I don't understand why we can't add bookmarks to pages in the form? The bookmark technically is a change but not a substantive change to the form. Is there a way to add links to places in the form after a digital signature has been created?

    Hi Christic3,
    This is a bit geeky, but here goes. Think of the PDF file in two layers (there are really more, but we'll keep it at two for simplicity). The bottom layer is the PDF content such as fonts, structure tags, and pages. The top layer is form data and comments (aka annotations). When you sign the PDF you sign everything (both layers), but the only allowable changes to the file are additions to the top layer. You can add form data and comments, but you cannot modify anything in the bottom layer without breaking existing signatures. In fact, you can't change (by change I mean modify or delete) anything on the top layer either, but you can add new (unsigned) items.
    Bookmarks are part of the underlying PDF structure. Because they are as integral to the underlying structure as anything else, the ability to modify the bookmarks is locked after signing, otherwise it would be too easy to break the signature.
    Steve

  • How do I get a different URL to show up after an email form has been submitted?

    I have created a Form in DW CS5 and have some PHP server side code to mail it out.
    However, once the Submit button is pressed it refreshes back to the Form - How do I get a different page to show up after the Form is submitted? 
    I tried using a behavior - onSubmit - go to URL  -  that gets me to the page I want to go to but I guess it overrides the PHP Form Action because the email will not send.
    Any suggestions would be appreciated.

    Thank you for the response.
    In my form - I have tried inserting a hidden field with the Value set to the redirected page I want to go to
         <input type="hidden" name="MM_insert" value="http://www.website.com/page" />
    In my form Action PHP Include - I have inserted a header function with the redirected page I want to go to
         mail($to, $subject, $body, $headers);
         header('http://www.website.com/page');
    I have also checked for empty/extra spaces at the start and end of my php tags
    None of the above has got me to the redirected page I want to go to after the submit button is selected - the Form page continues to refresh.
    Any other suggestions on where I am missing the point would be greatly appreciated - thanks.

  • Using a formselectoption value before form has been submitted

    Hello experts,
    I have written a web application, generating HTML via PL/SQL.
    Is there a way to check the value that was selected in a formselectopen statement? If the person filling out the form selects ‘Yes’, the formsubmit button should say “Submit”. If they select ‘No’, the formsubmit button should say “Next”.
    I’ve tried the code below, and my package won't compile. I get this error message: PLS-00201: identifier 'P_HOME_SCHOOLED' must be declared. Here's the code. Thanks in advance for your help.
    Jeanne
    HTP.formopen ('mypackage.p_create_detail', cattributes => 'name=p_detl');
    HTP.tableopen;
    HTP.tablerowopen;
    HTP.tabledata ('<b>Home-schooled?</b>');
    HTP.PRINT ('<td>');
    HTP.formselectopen ('p_home_schooled');
    twbkwbis.p_formselectoption ('Please Select', NULL, 'SELECTED');
    twbkwbis.p_formselectoption ('Yes', 'Y');
    twbkwbis.p_formselectoption ('No', 'N');
    HTP.formselectclose;
    HTP.PRINT ('</td>');
    HTP.tablerowclose;
    HTP.tableclose;
    IF p_home_schooled = ‘Y’ THEN
    HTP.formsubmit (cvalue => 'Submit');
    ELSE
    HTP.formsubmit (cvalue => 'Next');
    END IF;
    HTP.formclose;
    Here's the version information:
    PL/SQL Release 11.1.0.7.0 – Production
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    CORE     11.1.0.7.0     Production
    TNS for IBM/AIX RISC System/6000: Version 11.1.0.7.0 – Production
    NLSRTL Version 11.1.0.7.0 - Production

    Thanks for your reply, Shankar.
    I don't think that I need to define p_home_schooled as a variable, since it's defined in the formselectopen statement, and the value that the user selects is successfully being passed to mypackage.p_create_detail. The program compiles if I replace the if statement with just this line:
    HTP.formsubmit (cvalue => 'Submit');
    What I need to do is to somehow get the value that the user selected (Y or N) and based on that value, display either a Submit or a Next button.
    Thankis for your help.
    Jeanne

  • Once my book has been published can I make some small change?

    HI Guys. I have recently published mu book on ibooks. however I have just noticed two small mistakes that I would like to rectify. Dose anyone know ifthere some sort of editing tool I can use.

    Hello Peter Writer,
    Thanks for the question. After reviewing your post, it sounds like you want to update a book you already published. I would recommend that you read this article, it may be able to help the issue.
    iBooks Author: How to update your published book in the iBooks Store - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Update Production Order Form if Sales Order Form has been updated

    Hi Experts, how can you update the "Due Date" in the Production Order form if the "Delivery Date" in the Sales Order form has been updated?  I am having problem catching the actual event if the Date was modified.  I'm not sure if I'm coding this correctly, but this is what I have so far:
                If ((pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE) And (pVal.Before_Action = True)) Then
                    strSQL = "SELECT DueDate FROM OWOR WHERE DueDate = '" & strDueDate & "'"
                    orecordset = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    orecordset.DoQuery(strSQL)
                End If
    Please share your examples.

    All, thank you for your help.  I understand why it is not working now.  I was able to accomplish what I was lookin for with the following code (for anyone who was having the same problem as me:
                If pVal.FormTypeEx = "139" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_VALIDATE Then                     
                    If pVal.ItemUID = "12" And pVal.BeforeAction = False And pVal.ActionSuccess = True Then  
                        oEditText = oForm.Items.Item("12").Specific
                        myNewDate = ConvertDateString(oEditText.Value, "test")                              
                        SODocEntry = oForm.Items.Item("8").Specific.Value                                     
                        oPdo = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oProductionOrders)          '
                        oRecordSet = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                        oRecordSet.DoQuery("SELECT DocEntry from OWOR where OriginABS = '" & SODocEntry & "'")
                        If Not oRecordSet.EoF Then
                            oPdo.GetByKey(oRecordSet.Fields.Item(0).Value)
                            oPdo.DueDate = myNewDate
                            intResult = oPdo.Update                                    
                            If intResult <> 0 Then                                                                               
    oCompany.GetLastError(errInt, errString)
                                oApplication.MessageBox("oApplication_ItemEvent: " & errString)
                            End If
                            oRecordSet.MoveNext()                                                                               
    End If
                    End If
                End If

  • Can a form that has been submitted by an applicant be returned to request further completion?

    Can a form that has been submitted be returned to person who submitted it to request further information or maybe to request completeion of additional sections that may have been overlooked?

    No,  a response record will be created for each submission. If you need them to complete more fields, you may have to ask them to fill out the form and submit again. The new submission is a new record.
    Thanks,
    Wenlan

  • I am trying to transfer the licence of a Dreamweaver CS3 Macintosh product. A transfer of licence form has been signed by the person that gave it to me. Can anyone help me complete the process?

    I am trying to transfer the licence of a Dreamweaver CS3 Macintosh product. A transfer of licence form has been signed by the person that gave it to me. Can anyone help me to complete the process as Adobe chat say they cannot to help? They told me the forum is looked at by an expert team. Anyone there? Thanks

    Did you complete your form as well?  A form needs to be completed and signed by both parties and submitted to Adobe support via a support ticket. Chat support cannot help, but should have pointed you to the KB article with the instructions.
    Transfer an Adobe product license

  • Can we change customer account name once a quote has been created ?

    Can we change customer account name once a quote has been created ? Currently the customer account number becomes read only when the quote header has been created. This is true for both Forms Quoting and HTML Quoting.

    Presently the feature of changing customer name for Quote is not supported.

  • Once an iBook has been exported to the iPad, how can that book be moved to a different iPad or back to iBooks Author?

    Once an iBook has been exported to the iPad, how can that book be moved to a different iPad or back to iBooks Author?

    You can't simply move it directly between iPads.
    In your example, you'd find that .ibook file in your iTunes account on your computer and then email or sync it to the school's iPad. Similar to how you did with yours....maybe you got it off a server and can repeat that process.
    Then delete it off your iPad and either delete or flag your copy in iTunes to not be put back when you sync in the future.

  • Can you programatically detect that a form has been called by another form?

    Can you programatically detect that a form has been called by another form using Open_Form?
    When closing a form I want to do one thing if it was opened stand-alone and another thing if it was called using Open_Form by another form.
    Thanks in advance.

    Maybe, Tony, also
    GET_APPLICATION_PROPERTY built-in ; it can
    be used to retrieve information about the calling (parent) and called
    form (child).
    The following example describes a way to perform a query on the child form
    using a value from the parent form; if the form is a child form, it first
    executes a query, otherwise the form goes into insert mode automatically.
              WHEN-NEW-FORM-INSTANCE
              ======================
              BEGIN
                   :GLOBAL.APP_NAME := GET_APPLICATION_PROPERTY(CALLING_FORM);
                   IF :GLOBAL.APP_NAME IS NOT NULL THEN
                        EXECUTE_QUERY;
                   END IF;
              END;Regards

Maybe you are looking for