User confirmation message display

Hi,
When the user selects a menu item, I want to display a confirmation message and after the user confirms, I want to proceed forward else I want to close the application.
Is it possible to display a message to user asking for his confirmation.
Thanks in advance.
Venu.

I could able to achieve it by the display text itself. I am reading the response of the display text message and then according to the key press by the user I am proceeding. I am checking whether user has clicked USER_ABORT or BACKWARD_MOVE or TIME_OUT. Can you tell me whether this is supported by all the handsets??

Similar Messages

  • How to display confirmation message in SPItemEventReceivers

    Is there a way to display confirmation message in ItemAdding event?
    I would like to display confirmation message and based on user input proceed with the other steps.
    public override void ItemAdding(SPItemEventProperties properties)
      // Display confirmation message
      if(OKClicked)
     // Do something
      else
      // Cancel Operation
    Thanks in advance,
    dhijit

    http://sharepoint.stackexchange.com/questions/32055/creating-event-handler-feature-ondeleting
    http://social.technet.microsoft.com/Forums/lync/en-US/39115b48-873b-462e-aa16-a7f7ce5c91d8/sharepoint-2013-online-office-365-list-item-added-event-receiver-how-to-sow-confirmation-message?forum=sharepointdevelopment
    http://social.msdn.microsoft.com/forums/sharepoint/en-US/2941f80e-37c9-4b83-a41c-a9cc712d2e18/display-message-from-itemadded-event-receiver
    http://sharepoint.stackexchange.com/questions/65858/confirmation-message-as-a-popup-for-itemupdating-in-event-receivers
    http://stackoverflow.com/questions/11999312/popup-alert-message-using-event-receiver-in-sharepoint-2010

  • User-exit  for displaying message in LT15

    Hi,
    I am looking for a user-exit (or another way?) for displaying a warning message when the user tries to cancel a TO via LT15 (under certain conditions). But the only user-exit that I found that would do the thing here is ZXLTOU02, but it's performed only in Update task - no message display possible.
    Any ideas?
    Cheers!

    Thanks for your input Chidanand,
    But I've already tried by setting a breakpoint in all available exits concerning TO confirmation/cancellation - none of them is reached when LT15 is executed. The only one is the one I mentionned, and it is being performed in update task - so no message issuing possible.....
    Any other ideas?

  • How to display a confirmation message before deletion

    Hi,
    I have an application and I want to display a confirmation message before people delete a record.
    The button on page 42 is number 90     "Supprimer cette fiche". It is a Submit as "DELETE_ALL". I have seen that the delete buttons are redirections to the url javascript:confirmDelete(htmldb_delete_message,'DELETE');, but I cannot use this as my button is not a redirection, but a submit.
    http://apex.oracle.com/pls/otn/f?p=4550
    Workaspace : ESPACE2008
    User : guest
    password : acdc2009
    Name of application is Activites
    Thank you for your kind answers.
    Christian

    Hi Christian.
    You can use the same logic for your own processing logic.
    the syntax is...
    javascript:confirmDelete(htmldb_delete_message,'YOUR_PROCESS_NAME');Replace 'YOUR_PROCESS_NAME' with the name of your page process that handles the bulk delete. Don't for get the single-quotes either side of your process name.
    Hope this helps.
    Simon

  • How to get the User input of Dynamic Action confirmation message ?

    Hi Guys,
    I'm using apex 4.1,
    I have added a confirmation message box as page Dynamic Action. How can i get the user input of that confirmation pop up ?
    Thanks

    Hi,
    you don't directly get the user input. But you should still be able to get what you want. Let's assume you have a dynamic action which fires for a "Change" (or any other) event and which has two or more actions
    1) Confirm
    2) Execute PL/SQL Code
    If the user clicks Cancel/No in the confirm dialog, APEX will stop the execution of this dynamic action and not run "Execute PL/SQL Code".
    Hope that helps
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How to display a confirmation message to the second stage approver.

    Hi,
    I am working on an application which involves 2 stages of serial approvals. After the first stage approval, the request is forwarded to the second stage. When the second stage approver approves the request, the workflow proceeds with the user creation. I would like to let the second stage approver know about the status of user creation after he clicks the approve button. It can be just a simple message saying that the user creation has been successful or unsuccessful.
    My question is how is it possible to show this confirmation message to the second stage approver after the user creation process?
    I tried to use manual action. But it is not working(probably because the owner of the workflow is different from the second stage approver). Is there any other way to implement this?
    thanks,
    manoj.

    It is really simple to implement, you have to just write another manual action to second supervisor after user creation and pass the result to manual action.
    Hoping you are tried to create simple user with out assigning so many resources otherwise it will take time to load.
    Please let me know if you face any issue to implement.

  • Confirm message to be displayed on the button click of the page

    Hi all
    I have a page with a button and some conditions on the button , now I want to display a pop-up message like a "Confirm message " , "Would you like to perform this action ?" , before that conditions are satisfied .. I am new to javascript and not sure of how to go about this .... can anyone has any ideas please !
    Would appreciate your response.
    thanks
    r

    Hi,
    In Apex 4 there is documented JavaScript function apex.confirm.
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21676/javascript_api.htm#CHDGHCBE
    Change your button action to be "Redirect to URL" and enter to URL Target
    javascript:apex.confirm('Submit data ?', 'SUBMIT');Change text and request according your needs
    Regards,
    Jari

  • Identify OK or cancel is clicked by user in Delete Confirmation message

    Hello,
    I am using oracle APEX 3.2 ;
    Can anyone please help me out with this issue. I want to identify whether OK or cancel button is clicked for the delete confirmation message when the delete button is clicked by the user. I am using the javascript
    confirmDelete(htmldb_delete_message,'DELETE'); message for deleting a record. I have an alert message popped out after delete confirmation appears. Below is the javascript function which does alerts the user.
    function deleteProcess()
    alert('Successfully deleted the record. Please click OK to close popup window and \n refresh the parent window.');
    window.close();//close the popup window
    window.opener.doSubmit('REFRESH');
    //call doSubmit function on the parent window to cause the page to refresh.
    For the delete button; I have set the target: URL and
    URL target: javascript:confirmDelete(htmldb_delete_message,'DELETE');deleteProcess();
    By my problem is deleteProcess() function is executing even if I click cancel button on the delete confirmation message.
    So, can anyone please help me like how to make the function deleteProcess() conditional ; I mean alert message should be popped out only when user clicks OK on the delete confirmation message.
    Thanks,
    Orton

    Hi Orton,
    Unfortunately confirmDelete() returns no value to test on (shame - that value can be very useful). As a work-around, replace your URL target with this:
    javascript:if (confirm(htmldb_delete_message)) {doSubmit('DELETE'); deleteProcess();}Hope this helps,
    John
    If you find this information useful, please remember to mark the post "helpful" or "correct" so that others may benefit as well.

  • Problem in Displaying  Confirmation message when (retain am=false)

    i have a scenario wherein after committing the records,i need to redirect to a new page,with the confirmation messages.but ,to avoid stale data erorr,i have to make "retain am" parametere as "false".
    now the messages are not thrown on the next page if the reatinam is false.
    any workaround

    In PFR:
    pagecontext.putParameter("SuccessMsg", "ALV_QA_NCR_CREATE_CONFIRM");
    pagecontext.putParameter("NcrNumber",Param_NcrNumber );
    pageContext.forwardImmediately("OA.jsp?page=/alv/oracle/apps/qa/ncr/webui/XXALVACTIONS_PG&OAHP=XXALV_QA_HOME&OASF=XXALV_QA_UPDATE_ACTIONS",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    false, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO
    in PR of the new Page:
    String vMsg= pageContext.getParameter("SuccessMsg");
    if(vMsg!=null)
    Number ncrNum = (Number) pageContext.getParameter("NcrNumber");
    MessageToken[] tokens = { new MessageToken("NCRNO", Param_NcrNumber)};
    OAException confirmMessage = new OAException("QA", vMsg, tokens,
    OAException.CONFIRMATION, null);
    throw confirmMessage;
    Regards
    Sumit

  • Messages displayed in the Approval and message tab in SRM approval is same

    Hi,
    We are having an issue with the message displayed in the approval step.When we click on the approval option in SRM, we get two tabs displayed Approval and Messages. The content displayed in both the tab is same for one user. Generally the content displayed in approval tab is "Here you can approve/reject shopping carts, confirmations of goods receipts, and so on.Select 'Edit' to display details" and the details in Messages tab is "Here you can see e-mails on the purchase transaction." But for this particular user the content displayed is "Here you can see e-mails on the purchase transaction." in both the approval and message tab.
    We checked the roles and profiles and its same as the other users. Can some one please suggest what would be the reason for this functionality with this user.
    Regards
    GGL

    OK, so you only have this problem in PROD, all other systems (DEV, QA) are fine... I assume you checked your BAdI transports in PROD as well... If all OK, that leads me to think there's nothing wrong with your custom code or transports.
    SRM 5.0 is notorious for these kinds of issues where workflow templates work in one environment, but are erroneous in another (most times this is due to inactive status). That is why I asked you to check the workflow for consistency in SWUD.
    From your answer, I did not understand whether you'd checked all the subworkflows separately in SWUD (not as part of the main workflow check). If you didn't do that, find all the subworkflows (and the subworkflows of the subworkflows where applicable) in SWDD by stepping through the main workflow, and then run the SWUD check on each of them separately.
    Also, please check the Review workflow WS10000265. This particular workflow may not show in SWDD as a subworkflow, but actually is part of the process. If it's broken, you may encounter issues like you're describing.
    Cheers,
    Serguei

  • Add confirmation message

    Hi-
    I've created a simple form and after the user clicks the submit button, I would like to display a brief confirmation message (e.g., "Record submitted").
    I searched the discussion forums but didn't have any luck. I've attached the html and php code below. Thanks!
    ---HTML CODE--
    <body>
    <h3>Add a Record</h3>
    <form action="add_record.php" method="post" name="Add Record">
        <p>Title:
          <input name="book_title" type="text" value="" size="125" />
        </p>
        <p>Author: <input name="author" type="text" /></p>
        <p>Year: <input name="year" type="text" /></p>
        <p>Publisher: <input name="publisher" type="text" /></p>
        <p>Available as ebook?: <select name="ebook">
            <option value="Yes">Yes</option>
            <option value="No">No</option>
            </select></p>
        <p>Amazon Rank: <input name="amazon_rank" type="text" /></p>
      <p><input name="Submit" type="submit" value="Submit" /></p>
    </form>
    </body>
    --PHP CODE--
    <?php
    include("includes/connect_info.php");
    $connection = mysql_connect($hostname, $mysql_login, $mysql_password);
    $dbs = mysql_select_db($database, $connection);
    $book_title = mysql_real_escape_string($_POST["book_title"]);
    $author = mysql_real_escape_string($_POST["author"]);
    $year = mysql_real_escape_string($_POST["year"]);
    $publisher = mysql_real_escape_string($_POST["publisher"]);
    $ebook = mysql_real_escape_string($_POST["ebook"]);
    $amazon_rank = mysql_real_escape_string($_POST["amazon_rank"]);
    $insert=mysql_query("INSERT INTO mydatabase.mytable (book_title, author, year, publisher, ebook, amazon_rank) VALUES ('$book_title', '$author', '$year', '$publisher', '$ebook', '$amazon_rank')");
    mysql_close();
    ?>

    SuperSonic65 wrote:
    Where should I put the header function? I tried putting it right after
    <?php
    but it didn't work. Do I need to delete the exit; since there are functions that follow the header function? Thanks.
    -------PHP CODE BELOW----
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Update Record</title>
    </head>
    <body>
    <?php
    include("includes/connect_info.php");
    $connection= mysql_connect($hostname, $mysql_login , $mysql_password);
    $dbs = mysql_select_db($database, $connection);
    //Assign the data passed from website to a variable
    $book_id = mysql_real_escape_string($_POST["book_id"]);
    $year = mysql_real_escape_string($_POST["year"]);
    $insert=mysql_query("UPDATE mydatabase.mytable SET year='$year' WHERE book_id='$book_id';");
    mysql_close();
    ?>
    </body>
    </html>
    If that page is your PHP page, get rid of everything that comes before <?php and after ?>.  PHP pages do not need HTML in them.  In fact, if you run the header code on a page in that fashion you will typically generate the error saying that the header was already sent, because the HTML <head> was already processed so the PHP thinks its a duplicate. 

  • Delete Confirm Message

    Hi All,
    How to create delete confirm message in Webdynpro ABAP.
    Regards,
    Arun

    Hi Arun,
    If you want to create the confimrmation message for deletion option follow the code here to create a window which will display a popup to the user for confirmation with 'YES' and 'NO' buttons.
    DATA:
        api_component TYPE REF TO if_wd_component,
        window_manager TYPE REF TO if_wd_window_manager,
        window TYPE REF TO if_wd_window.
        api_component = wd_comp_controller->wd_get_api( ).
        window_manager = api_component->get_window_manager( ).
        DATA : msg_tbl TYPE string_table,
               wa_msg LIKE LINE OF msg_tbl.
        MESSAGE w120(mmw_adm_mon) INTO wa_msg. "get the message you want to display in the *popup from a message class
       APPEND wa_msg TO msg_tbl. " append that to msg_tbl
        window = window_manager->create_popup_to_confirm(
                       text            = msg_tbl
                       button_kind     = if_wd_window=>co_buttons_yesno "4
                       message_type    = if_wd_window=>co_msg_type_warning "5
                       window_title    = 'Confirmation'
                       window_position = if_wd_window=>co_center )."#EC *
        DATA: view_controller TYPE REF TO if_wd_view_controller.
        view_controller = wd_this->wd_get_api( ).
        DATA: button_text TYPE string,
              tooltip TYPE string.
        button_text = wd_assist->if_wd_component_assistance~get_text(
      '026' ).
        tooltip = wd_assist->if_wd_component_assistance~get_text( '111'
        CALL METHOD window->subscribe_to_button_event
          EXPORTING
            button            = if_wd_window=>co_button_yes "6
            button_text       = button_text
            tooltip           = tooltip
            action_name       = 'ON_YES'
            action_view       = view_controller
            is_default_button = abap_true.
        button_text = wd_assist->if_wd_component_assistance~get_text(
      '027' ).
      tooltip = space.
    *          tooltip = wd_assist->if_wd_component_assistance~get_text( '040'
        CALL METHOD window->subscribe_to_button_event
          EXPORTING
            button            = if_wd_window=>co_button_no "7
            button_text       = button_text
            tooltip           = tooltip
            action_name       = 'ON_NO'
            action_view       = view_controller
            is_default_button = abap_false.
        window->open( ).
    and create the action methods ON_YES and ON_NO to handle the events.
    Regards,
    Anil kumar G

  • Alert Message displayed according to WebService response

    I've created and used a Web Service in my VC application which simply send a mail. This Web Service returns a boolean response which indicates if the mail has been correctly sent. I want to inform the user accordingly with an alert message.
    If the response is correct, I want the user to be processed to confirmation page;
    If the response is uncorrect, I want to inform th user accordingly.
    Which operator should I use?
    Do I have to use the output point of my Web Service object?
    Thanks

    Hi,
    Thanks Fabien for your answer ... but it hasn't solved completely my problem.
    My webservice effectively returns a boolean, and I use this boolean to show wether a confirmation message or a error alert. But the alert form (which is normally displayed only if WSReturn == "false") is by default always displayed. The response sent by my webservice seems to be by default set to false... very strange, isn't it?
    Has anybody encountered such a situation? I just would like to display one form or the other depending of the result of my WS call.

  • Prob.. confirm message

    hey...
    its the updation query.In this page when i click the update button it updates the values in the row..and this query is working...
    I want to do that..when i click a update button it gives me a confirms message whether did u want to update the row and also displaying the particular gl_code no in that confirms message.when i click on yes it updates the row..otherwise it doesnot.
    after updation it shows message that this particular gl_code no is has been updated.
    <%
    String action = request.getParameter("action");
    if (action != null && action.equals("update")) {
    conn.setAutoCommit(false);
    PreparedStatement pstatement = conn.prepareStatement(
    "UPDATE gl_mast SET gl_descr = ?, db_amt = ?, " +
    "cr_amt = ?, gl_type = ? , gl_pct = ? WHERE gl_code=?");
    pstatement.setString(1, request.getParameter("gl_descr"));
    pstatement.setFloat(2,Float.parseFloat(request.getParameter("db_amt")));
    pstatement.setFloat(3,Float.parseFloat(request.getParameter("cr_amt")));
    pstatement.setString(4, request.getParameter("gl_type"));
    pstatement.setFloat(5,Float.parseFloat(request.getParameter("gl_pct")));
    pstatement.setInt(6,Integer.parseInt(request.getParameter("gl_code")));
    int rowCount = pstatement.executeUpdate();
    conn.setAutoCommit(false);
    conn.setAutoCommit(true);
    %>
    <%
    Statement statement = conn.createStatement();
    ResultSet rs = statement.executeQuery
    ("SELECT * FROM gl_mast ");
    %>
    <form action="gl_update.jsp" method="get">
    <input type="hidden" value="update" name="action">
    <tr>
    <td><input value="<%= rs.getInt("gl_code") %>" size="5" name="gl_code"></td>
    <td><input value="<%= rs.getString("gl_descr") %>" size="55" name="gl_descr"></td>
    <td><input value="<%= rs.getFloat("db_amt") %>" size="12" name="db_amt"></td>
    <td><input value="<%= rs.getFloat("cr_amt") %>" size="12" name="cr_amt"></td>
    <td><input value="<%= rs.getString("gl_type") %>" size="3" name="gl_type"></td>
    <td><input value="<%= rs.getFloat("gl_pct") %>"size="5" name="gl_pct"></td>
    <td><input type="submit" value="Update"></td>
    </tr>
    </form>

    int rowCount = pstatement.executeUpdate();
    conn.setAutoCommit(false);
    conn.setAutoCommit(true);
    Just a doubt... could you tell me why you are doing this?
    ***Annie***

  • Huey Pro calibrator- error message  display measurement Error

    i am using this huey pro calibration.. it had been a year without problem... but now i am trying to calibrate my apple cinema display LCD 30 inch it keep saying error message- display measurement error.. and huey support never answer my e-mail. any idea? how can i fix it.. i did re install software many times but same thing happen.. so right now i can;t calibrate my monitor.. any help please

    >a nice NVidia card... Please help Adobe!
    1a - what is the model nVidia card, and what is your driver version?
    1b - for instance, I have a GTX 285 and driver 296.10
    2a - aside from the occassional Adobe employee, this is a user to user forum, not Adobe suport
    2b - how to contact Adobe...
    Adobe contact information
    http://www.adobe.com/support/contact
    In the US - Adobe General support 800-833-6687 M-F 5am-7pm Pacific
    In the US - Adobe Install Problems 800-642-3623
    In the US - Adobe Activation 866-772-3623 Open 24/7

Maybe you are looking for