Prompt "Thank you" message after submit

Hi folks,
I would like to prompt the user with the "Thank you for submitting your information to us" message after the form has been submitted appropriately to the server.
1. I don't have PostSubmit event, how can I do it without
2. I also want to make sure that the form processing in the server-side was OK, how can I send back to the form some flag that say it that the server did it's job good or not.
Actually I want to do it as a transaction.
Any idea?
Thank you,
Yair Nevet

You can return a reply from the server after it recieves the submission (no different than a web page). Typically you will send it back as soon as the data is recieved on the server, that way the user can move on if there are any problems with processing. You can wait until after the transaction runs but if there are any issues with the transaction (think hanging or system not  responding) then the user gets no feedback at all. Most people will send back a message indicating that the server recieved the transmission and will use a different means of communication for exception handling (think email).
Just my 2 cents worth.
Paul

Similar Messages

  • Thank you script after submit button is clicked

    Hi,
    Thank you for everybody's help. I was able to figure this one
    out. Another question I do have is how do I create a Thank you form
    after somebody clicks a submit button.
    So, visitor clicks a submit button and then he gets a Thank
    you script.
    Can anybody point me into the right direction?
    Again thanks for everybody's help.

    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well.
    Method 2 is the preferred method, since it eliminates the
    problems of method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2, then start by asking your host what
    they provide for
    form
    processing.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "dreamweavernewbieny" <[email protected]>
    wrote in message
    news:e5ttnv$4pd$[email protected]..
    > Hi,
    >
    > Thank you for everybody's help. I was able to figure
    this one out. Another
    > question I do have is how do I create a Thank you form
    after somebody
    > clicks a
    > submit button.
    >
    > So, visitor clicks a submit button and then he gets a
    Thank you script.
    >
    > Can anybody point me into the right direction?
    >
    > Again thanks for everybody's help.
    >

  • TS5376 I did all of the above because the update wouldn't install now I am unable to re install iTunes  it gives me a thank you message for installing ITunes  but nothing is there. Can you help

    I am unable to reinstall ITunes after following all directions about the update program.  I keep getting a thank you message as if it downloaded and nothing is there
    Any suggestions ?

    Try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • Appraisal: Thank you message

    Hi All,
    Requirement is to display Thank you message to employees just after submitting the appraisal at the appraisal template. Can you pls suggest how to incorporate of edit message?
    Regards,
    Umesh Sharma

    Hello,
    If it is on ESS like once after submitting for manager review you have a standard workflow where you can give thanks messages and any other comment.
    if this is on the template itselft try with text box placing with default value in that.
    try this good luck
    rafi

  • CUE: disable prompt "Record your message after the tone."

    I would like to disable the prompt: "Record your message after the tone. When you are finished, hang up or press # for more options."
    I found the „no voicemail conversation caller recording-prompt“ command, but it doesen’t seem to work.
    Is this command supported on an UC540?
    Regards
    Stefan...

    From exec mode, use the command
    Router# Service-module i0/0 session
    You will be connected to the Cue console
    Enter your username and password (same as the credentials you used to access the CLI)
    Once logged in, press enter to display the cue console (it's waiting for input, so pressing enter re-displays the command line)
    Enter configuration mode (conf t), type the command, issue a copy run start to save, then type exit to return to the IOS CLI

  • Redirecting survey users to thank you page after finish

    Hi All,
         I'm trying to redirect users to a custom page from ma survey using the code below:
    var inputcCtrls = document.getElementsByTagName("input");for(var m=0; m<inputcCtrls.length; m++) {       if(inputcCtrls[m].type=='button'&&inputcCtrls[m].value=='Finish') {    console.log(inputcCtrls[m].value, inputcCtrls[m].type)       inputcCtrls[m].onclick = function () { window.location = "/sites/surveys/Pages/ThankYou.aspx" };   }}
    But my survey never gets completed.
    What would be the best way to do it?
    Cheers

    Hi,
    According to your post, my understanding is that you wanted to redirect the users to a thank you page after finishing.
    You can use the SharePoint Designer to achieve it.
    Create a new page named as “Thankyou.aspx” page under the Site Pages.
    Open the site in SharePoint Designer 2013, click Lists and Libraries, go to "Forms" section. Create a New Form by clicking on "New Item Form"
    Give it a Name,  choose form type as "New Item Form" and enable "Set as default form for the selected type" and click on "Ok" to create the new form.
    Edit the New form we've just created. Open the "New.aspx" page with
    Advanced Mode in SharePoint Designer.
    Search for the savebutton1,savebutton2, delete all two “Finish” buttons.
    Insert SharePoint Form Action button from "Insert Menu >> SharePoint >> Form Action Button"
    Select the Form Actions "Commit" and "Navigate to Page" .
    Select the “Navigate to page” action, click “settings” to set the target page ,and click "OK".
    Rename the Form Action as Finish.
    Save and close the page.
    You can also refer to the following article, although it is for SharePoint 2010, it also fits for SharePoint 2013.
    http://www.verious.com/tutorial/share-point-survey-redirect-to-thank-you-page-on-finish/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Sharepoint form - Thank you Message

    Hello,
    I dont have alot of experience with Sharepoint, so as much informtion and instructions that you can provide would be great!  I have a form that I cam using to collect data from employees.  When the submit button is clicked I would like for a thankyou
    message to appear with some information for the user. 
    What would be the best way to se this up?
    Thanks in advance!!!

    Hi,
    here you are
    http://blogs.technet.com/b/sharepointwarrior/archive/2012/03/16/sp-2010-how-to-redirect-infopath-form-to-a-custom-thank-you-page.aspx
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • Thank you message

    Hello,
    I've completed my Java Project and i fortunately have greatly been helped in this forum. I wanna take a minute to say thank you to all those who's help me throughout my project by explanations, advices and even codes... Thanks
    Bernard

    thats great that someone appreciated our help, that makes us help more :)
    asrar

  • Thank you message for user (ganeshmb)

    Thank you so much!.....upon reading the log trace I found the bean was not being loaded due to the fact that struts-2.1.2..jar was copied in both Tomcat's main lib folder and also in the lib folder of my struts app....so when Tomcat tried to load something that has already been loaded and it threw an exception leading to the app not being load...Thanks once again:)

    Try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • How to change action message after submit

    Please advise.
    I'm new to APEX and Oracle for that matter. I've got a form that is being displayed with no data after pressing a <CREATE> button from interactive report(Page 1).
    I fill in the data and when I press <Save Changes> button from Page 2, internally the data is processed on insert and a trigger assigns a new Serial Number. When the screen branches back to same page, all data keyed goes away and is ready for my next add. However, what I would like is to be able to show the new serial number in the action message which defaults to "Action Processed". I'd like to be able to post the serial number followed by "added successfully".
    The item on the screen is P2_SERIALNUMBER and the database column is SERIALNUMBER. The serial number is created by a trigger, therefore the P2_SERIALNUMBER is just a disabled text fiield saving state.
    in the submit process, I tried setting an alert script where the current default message("Action processed") is, referencing the P2_SERIALNUMBER item but I don't think the new serial number generated from the trigger is populating the item.

    Thanks for the expeditious reply Matt.
    Apparently, did not work. I have a dozen or so fields for update on this page(2). There is an autonumber PK called PROBLEMID(hidden on form as item P2_PROBLEMID). The field I want displayed in the action message is P2_SERIALNUMBER. I tried returning the value to a secondary key on the ARP screen and tried using the message you gave me, but upon pressing <Submit Changes> button it just echoed back the message you gave me literally with no data substitution for the argument &P2_SERIALNUMBER. I also tried an alert statement in the message field using <script>alert(html_getElement('P2_SERIALNUMBER').value + " added successfully")</script>. What I got back after pressing the <Submit Changes> button is an alert message that said "false added successfully". So I don't know if the code is wrong or that nothing is getting sent back to item P2_SERIALNUMBER(defined as text field with state) and therefore returned it "false". Any more ideas would be gladly appreciated.

  • Passing Messages after Submit in Input Schedules

    All,
    I have a scenario where I would like to send messages to the user after they submit data from Input Schedule. This is very similiar to how we receive error messages when we submit entries to a parent node. My scenario is this: When users submit data, I always write data to a particular version and run thru from BADI logic for validations. If it passes the validation, I move the data to a final version or else, I would like to display the messages due to which the data is not posted to final version. Currently, I have a BADI written in default logic. Whenever I write messages to ET_MESSAGES, it appends it to the log and I do not see it on the screen. I tried raise exception using CX_UJR_EXCEPTION, but the text id is 32 characters so it displays only the first error message. In my case, if I reject 10 entries, I would like to provide info on all these 10 entries.
    Ideally, I would like to write entries similiar to ET_ERROR_RECORDS (table) in UJR_WRITE_BACK but I do not see a similiar logic for UJ_CUSTOM_LOGIC. Has anyone done this before? Any input is appreciated.
    Thanks in advance.

    This is because excel still stores the values internally in the original format. It just formats the data for the display. So you need to enter the data value correctly in the cells.
    The other alternate would be to have the numbers sent from another evdre where number are multiplied by 1000 from the input cells.
    Hope this helps.
    Badrish

  • Message after submit report

    Hello all,
    I have a program that submits a report. This report sends the output to the spool. When the process executes the submit command I get the following message:
    Spool request (number &) created without immediate output.
    I need the spool request number for further processing. Does anybody know how to get the message and the spool request number at runtime? Kind of like the messages we get with a call transaction into the message table. By the way, the message is NOT available in the system structure SY(SYST).

    Here is what I've done in the past. 
    1) in the submitted program,  export the sy-spono to a memory id.  This should be the very last statement of the program.
    2) in the calling program,  after the SUBMIT statment, import the spool number into memory id.
    3) do what ever you need to do with the sy-spono.
    Regards,
    Rich Heilman

  • Capture message after SUBMIT report

    I have called submit report like below in  RFC function module .
    submit rfitemap
                  with kd_lifnr in r_it_lifnr
                  with x_apar   eq abap_true
                  with x_merk   eq abap_true
                  with x_norm   eq abap_true
                  with x_opsel  eq abap_true
                  with x_park   eq abap_true
                  with x_shbv   eq abap_true
                  exporting list to memory and return.
    how to capture  or skip  error or information populated by submit program ?
    As the function module is a RFC function module, the FM is called from some SMDL program  .  Once the program executes  submit statement
    is giving system failure exception and giving message like 'No connection with development system'.
    Instead of giving messages populated in return table ,the SMDL program returns "NO connection"  message.
    How to display the message from return table ?

    Hello Kachana,
    You can try like mentioned in the below thread with JOB OPEN, submit your program, JOB CLOSE and read the job log to get the messages raised during the submit program.
    How do I capture error/information messages and Output of a report using SUMBIT statement, when called in a function mod…
    Regards,
    TP

  • Getting the messages after SUBMIT report

    Hi,
    I have a requirement, wherein I'll SUBMIT a report(Report A) through a background job. I also have a custom table, which will have the job information (JOBNAME, JOBCOUNT).
    Now, I want to have a separate control report(Report B) which will read the custom table for the job information and will output the results of the report A submitted through the job. How can this be achieved?
    Also Is there any way, through which I can get the messages raised by the report A using the job information in report B?
    Thanks in advance.
    Sujit.

    Hi,
    I have a requirement, wherein I'll SUBMIT a report(Report A) through a background job. I also have a custom table, which will have the job information (JOBNAME, JOBCOUNT).
    Now, I want to have a separate control report(Report B) which will read the custom table for the job information and will output the results of the report A submitted through the job. How can this be achieved?
    Also Is there any way, through which I can get the messages raised by the report A using the job information in report B?
    Thanks in advance.
    Sujit.

  • Never ending "unknown time remaining"  message after submit

    Has anyone reached a satisfactory resolution on this issue w/ compressor. What do apple's techs have to say about it? It's not like apple to force their users to deal with major bugs and not chime in on the situation. This is more like the sort of garbage that I always here windows users complaining about.

    Ok, no resolution from within Compressor exists as far as I can see. Here is what I suggest you do...
    Compressor is the biggest pain in the but on the Suite, I don't see it as a conflict that can be solved with FCP Suite, it exists between OS and Program, so having said that I will say this, every time I have an issue with compressor (Which is quite often). I throw my hands up, grab my OS disk, do an Archive and Install. This resets the OS AND FCP Suite. Of course you have to every freaking update again. But it resets everything from the ground up and badaboom, new install of FCP Suite like new. You will have to put your user license back on too. You will have to tell your OS disk to custom install, meaning, you only need essential programs installed not language, etc. etc. The whole process will take about and hour and half, depending on your net speed to update...
    But sometimes "I got no fight as long as any man does what he's told...."

Maybe you are looking for

  • Why can't I open a pdf from a web-site

    Windows 7 Home is my operating system.  Internet Explorer 10 is my browser.  I cannot open a pdf file off my VISA account web-site.  I have downloaded and agreed to the latest Adobe Reader XI (I also have Adobe X, should I uninstall it?)    When I tr

  • RT Shared Variable Engine stops publishing

    I have an RT system (PXI-8106) that hosts quite a few network published shared variables (NPSVs) for communicating to a Host PC. My Host and RT executables have been functioning fine on their respective systems for weeks, but just recently, I started

  • Problems with the Z1

    Hi Everyone, Ive had my z1 since around it launched but there are still a bunch of problems with it i wondered if anyone had the same issues susch, . Lock screen flickering, . volume buttons on headphones/earphones not working,. . music sometimes pau

  • I am unable to download apps to my I phone.

    I am unable to download apps to my Iphone 4s? Is there a setting in my settings that needs to change?

  • Renaming files in blobs storage

    Hi, I want to rename files in blobs storage which are inside the container. I can't find any demo code. Please help Regards, Nitin