POPUP Confirmation Message in WEB BPS

Hi experts,
We need to do a confirmation popup Y/N message in BPS sequence before executing a FOX Formula.
We follow the indications that we found in an old thread and it worked perfectly. But we need to do this in a WEB interface from de Web Interface Builder, also from BPS.
The development that we made, didn't work in this environment.
Have you any idea about a function that works on WEB??
Thanks in advance for your help.
Regards
Cecilia

Cecilia
I believe you should be able to this if you used Web Application Designer. The WAD allows you to create messages and other functions.
Srikanth

Similar Messages

  • Disable Popup confirmation on station globals modified externally

    Hi,
    Is there any way to Disable the Popup confirmation Message saying the staiton globals are modified externally from TestStand?
    Regards,
    Ramjee V

    Hey Ramjee,
    Unfortunately, I don't believe there is any way to disable the dialog. I saw your other thread about the station globals, and would be happy to try and help figure out a different way to accomplish what you're trying to do that wouldn't require you to keep updating the globals. Let us know if we can do anything to help!
    Daniel E.
    TestStand Product Support Engineer
    National Instruments

  • How do i get rid of the confirmation popup that says This web page is being redirected to a new location. Would you like to resend the form data you have typed

    when navigating on certain sites (fiverr.com is one), i get the popup confirmation "This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location?"
    this is highly annoying and i can't find a way to turn this annoyance off. help!

    because of its impact on security this error message cannot be suppressed. you might want to contact the admins of the website where this is occuring and ask them to implement a handling of user input without sending it to a different server...

  • Can click on "confirm" message popup only at second click

    Hi,
    I'm trying to figure out how to handle this issue:
    We have a complicated GUI in our website and one of the actions the user wish to perform - should show him a Confirm message box (using javascript: confirm()).
    The problem is that if he tries to click on the Confirm Box (no matter where in the box) - it bubbles the mouse event to the GUI. the Confirm Box responds to the mouse event only on second click.
    Do anyone knows how can I prevent the Confirm Box to bubble the event?
    Thanks.
    P.S.
    Sorry for my broken English.. Hope my question is clear enough.
    Message was edited by: Nir_Alshek

    Unfortunately that didn't work.  I went to Start->Programs->National Instruments->TestStand 3.5->Operator Interfaces->LabWindows-CVI and got the following error message:
    Test Executive
    Error in call to LoadPanelEx
       Parent Panel Handle: 0
       UIR File Name: TestExec.uir
       Panel Resource ID: 4
       Hinstance: 0x00400000, D:\...\OperatorInterfaces\NI\Full-Featured\CVI\TestExec.exe
    Error Code: -143
    Active X control error
    The actual error window is attached.  Looks like my installation has other problems?  With the way our IT department operates, if there is a way to fix this without reinstalling, that would really be helpful... :-)
    Attachments:
    err4.JPG ‏20 KB

  • HTML DB  Delete confirm Message

    I have a Delete button and I have TWO QUESTIONS for this Delete button.
    1- How do I implement confirm message to allow the user to either confirm or
    cancel?
    2- How do I have a popup that was three buttons, namely [Delete One Record],
    [Delete All Record] and [Cancel].
    If the user click on [Delete One Record]. One selected record is deleted.
    If the user click on [Delete All Record]. One all records are deleted.
    [Cancel] do nothing.
    Help!

    The javascript confirm popup only has OK and CANCEL options. If you want other options, you'll have to write them yourself (or find one that someone else has already written).
    If you don't want to do that, I have a suggestion: instead of putting two DELETE buttons in the confirm popup, put two buttons on the web page, one for DELETE MARKED RECORD and one for DELETE ALL RECORDS. Each would then call its own individual javascript confirm. Each button would have a different request associated with it, so your process would know which button had been selected from the page.

  • Transaction Posting Confirmation Message and Action Listener behaviour

    Hi, I have a scenario that a user is Posting a Transaction and when he press the “Post” Button a, confirmation dialog box should popup asking “Do you really want to Post the record ?”. If the user press “Yes” the record is further process and If the user press “No” then the transaction should not proceed.
    I have implemented the main screen(PostTransaction.java) and the popup confirmation window(ConfirmationWindow.java)
    Question 1 ) Why the code is not stoping in the Post Button Action listener as in JOptionPane, then how do i know that the user has selected "Yes" or "No" ?
    Question 2) Do I have to write the code for posting of a Transaction(postTransaction() method) in the “ConfirmationWindow”? or it should be in “PostTransaction”.
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class PostTransaction extends Application{
           public void start(final Stage stage) throws Exception {
                  Group root = new Group();
                  Scene scene = new Scene(root, 300,300);
                  stage.setScene(scene);
                  stage.setTitle("Transaction Post Screen");
                  GridPane gp = new GridPane();
                  Label lblName = new Label("Name");
                  Label lblAmount = new Label("Amount");
                  TextField txtName = new TextField();
                  TextField txtAmount = new TextField();
                  Button btnPost = new Button("Post Record");
                  gp.add(lblName, 1, 1);
                  gp.add(lblAmount, 1, 2);
                  gp.add(txtName, 2, 1);
                  gp.add(txtAmount, 2, 2);
                  gp.add(btnPost, 2, 3);
                  btnPost.setOnAction(new EventHandler<ActionEvent>() {
                        @Override
                        public void handle(ActionEvent arg0) {
                             //The code does not stop here as in JOptionPane, then how do i know that the user has selected "Yes" or "No" ??
                             boolean popupResult = ConfirmationWindow.confirmTranactionPosting(stage, "Please Confirm");
                             if(popupResult==true){
                                  //This line is printed before the user selects yes or no
                                  System.out.println("Proceeding with Tranaction Posting");
                                  //postTransaction();
                             if(popupResult==false){
                                  //This line is printed before the user selects yes or no
                                  System.out.println("Do not Proceed with Tranaction Posting");
                 root.getChildren().add(gp);
                stage.show();
                public static void main(String[] args) {
                  launch(args);
              private void postTransaction(){
                   //write the code for posting here
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.HBox;
    import javafx.stage.Modality;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    public class ConfirmationWindow extends Stage {
         Stage owner;
         Stage stage;
         BorderPane root;
         static boolean postStatus = false;
      public ConfirmationWindow( Stage owner, String title){
        root = new BorderPane();
        stage = this;
        this.owner = owner;
        initModality( Modality.APPLICATION_MODAL );
        initOwner( owner );
        initStyle( StageStyle.UTILITY );
        setTitle( title );
        setContents();
      public void setContents(){
        Scene scene = new Scene(root,250,150);
        setScene(scene);
        Group groupInDialog = new Group();
        groupInDialog.getChildren().add( new Label("Do you really want to Post this record ?") );
        root.setCenter( groupInDialog );
        Button yes = new Button( "Yes" );
        yes.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent e) {
                   postStatus =true;
                   stage.close(); // Close the pop up. Transfer control to PostTransaction.java and execute the PostTransaction() method.
        Button no  = new Button( "No" );
        no.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent e) {
                   postStatus =false;
                   stage.close(); // Close the pop up only
        HBox buttonPane = new HBox();
        buttonPane.setSpacing(10);
        buttonPane.getChildren().addAll(yes,no);
        root.setBottom(buttonPane);
        stage.show();
      public static boolean confirmTranactionPosting(Stage owner, String title) {
           new ConfirmationWindow(owner, title);
           return postStatus;
    }

    The MII Message listener is a queue. But when I understand you correctly, you do not want to process the messages immediately after arriving in the Listener.
    Maybe the categorization of messages is an option for you (see [Sap Help: Processing Rule Editor - Category|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm]. You can enter a category for the control recipe messages. The messages will then be placed in the Listener queue. You can use the [Message Services|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm] actions to read the categorized messages and process them as you need.
    In addition to Manoj, you may also use the [Queueing actions|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm] of MII, where you can queue xml contents.
    Hope this helps.
    Michael

  • POWL :IF_POWL_FEEDER :2 Confirmation Messages

    Dear All
    We are implementing this POWL interface and overriding its GET_ACTION_CONF method as well to get the confirmation pop-up message .
    However there is a new requirment to show another popup on clicking of yes button of this popup. I am not sure how can we do that . Is it possible for anyone to share some experience as how can we implement 2 confirmation messages in POWL though we only have one method available to us
    Thanks and Regards
    Gaurav

    Hi,
    I faced with the same problem and I found the class CL_POWL_RUNTIME_SERVICES (POWL runtime services) using the follow methods:
    GET_CONTENT_VALUES
    SET_CONTENT_VALUES
    Example:
    Data:
        L_PARAMETER_VALUE TYPE STRING,
        ST_ADDITIONAL_PARAMETER TYPE POWL_NAMEVALUE_STY.
      CL_POWL_RUNTIME_SERVICES=>GET_CONTENT_VALUES(
        EXPORTING
          I_PARAMETER_KEY   = 'ACTION_VIEW_ID'
        IMPORTING
          E_PARAMETER_VALUE = L_PARAMETER_VALUE ).
      If not L_PARAMETER_VALUE is initial.
        ME->GC_ACTION_REQUEST_VIEW_ID = L_PARAMETER_VALUE.
      else.
        ST_ADDITIONAL_PARAMETER-KEY = 'ACTION_VIEW_ID'.
        ST_ADDITIONAL_PARAMETER-VALUE = GC_REQUEST_VIEW_ID_INBOX.
        CL_POWL_RUNTIME_SERVICES=>SET_CONTENT_VALUES                                                                         ( ST_ADDITIONAL_PARAMETER ).
        ME->GC_ACTION_REQUEST_VIEW_ID = GC_REQUEST_VIEW_ID_INBOX.
      endif.
    Keep it in mind, if you have on or more POWL's queries, the parameter's value will be shared for all them.
    Regards,

  • 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

  • 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

  • Confirmation messages are truncated in window

    The confirmation message shown after recompiling views, etc. has the top half of the text cut off. If I resize the window, the text becomes visible. Is there a way to change the default size of the popup windows to avoid the resizing? I am using Windows Vista and Oracle 11g. I've tried changing the theme in Preferences with no change. I've also searched this forum without finding anyone with a similar issue.

    I upgraded to version 2.1 and that resolved the problem. So far the new version has displayed additional improvements including compiling views after a database import - where invalid dependent views are also recompiled.

  • Branding the confirmation message after Self Registration in OIM

    Hi All
    Can you please let me know how can I brand (change) the confirmation message I am getting after the user having the Self registration .
    I want to change the following message
    Congratulations, testuser
    Your registration request has been sent.
    Your registration tracking request number is: 38
    You can use this tracking number to check the status of your registration in the Track Request section.
    Registration Summary:
    Name:      testuser
    Email Address:      [email protected]
    User Login:      testuser
    Thanks

    Change the two line in two file Agent.properties & Agent_en.properties on each node if it is cluster.
    find these wo line and change.
    Note[REGISTRATION_REQUEST_SUCCESS].text = Your registration request has been sent. Your registration tracking request number is: {0}
    <br>
    Note[REGISTRATION_CONFIRMATION_TEXT].text = <br><b>Congratulations</b>, {0} <br>Your registration request has been sent.<br><br>Your registration tracking request number is: <b>{1}</b><br>You can use this tracking number to check the status of your registration in the Track Request section.<br><br><b>Registration Summary:</b><br>
    Take a back up of oim.ear. Also you have to know packing and unpacking of jar and war
    These file you can find under
    $OIM_ORACLE_HOME/server/apps/oim.ear/iam-consoles-faces.war/WEB-INF/lib/OIMUI.jar//oracle/iam/selfservice/uself/agentry/resources/
    Restart your OIM manage server.
    HTH.

  • 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.

  • Presentation properties-Changing the confirmation message!

    Hye All,
    In presentation properties, there is a property called "confirmation message" on submit or cancel. If I write something in that then it popups that message on clicking submit. The option in that pop up comes as OK or CANCEL. I want to change those two buttons as SAVE and EXIT. Can anyone tell how to do that. Thanks in advance.

    Hi,
    Everything you have mentioned is possible in the form itself. Just write the valid script at valid event of valid field.
    1) For example in the form, if user puts value_A in field_1, then, the field_2 should be greyed out.
    Ans: Write on change event of Field1:
    if($.rawValue eq "value_A")
    then
    Field2.access = "readOnly"
    Field2.fillColor = "192,192,192"
    endif
    2) If user puts value_B in field_3, then, system automatically populate the value_C in field_4 in order to let the user make easy- user friendly
    Ans: Write on change event of Field3:
    if($.rawValue eq "value_B")
    then
    Field4.rawValue =  "value_C"
    endif
    3) If user puts value_D in field_5, then, only allowed value in field_6 is value_E, if by mistake user puts value_F in field_6, then, system should throw error message
    Ans: Write at exit event of Field6:
    if(Field5.rawValue eq "value_D" and $.rawValue ne "value_E")
    then
    xfa.host.messageBox("Wrong Value", "Error", 0)
    endif
    For such type of scripts you can refer to designer help also. So please check there before posting your query that would save your time.
    Regards,
    Vaibhav

  • Alert popup confirmation BADI

    Hi guys I'm very new to ABAP and BADIs. We created a BPM session in SolMan and created alerts. The problem now is that we want to send sms alerts but we want a compact version of the alert where we only get the date, the time, the job name and the error.
    We also want to setup a e-mail alert the same way. Is it also possible to setup a email popup confirmation where you have to type in what you did when you click 'confirm' on the alert..
    Any help on this will be greatly appreciated.
    Regards
    Vincent

    Hi Volker
    The problem I'm having with the sms notifications is that the sms are limited to 300bytes or 160 characters. Now I need the notification to be formatted in such a way that it can fit into the sms. So i figured if i put the Alert rating and the time stamp as the sms subject, and then put the alert message as  the body of the sms it would fit.. But now I'm stuck as to how I'm gonna get that done..
    Any help would be greatly appreciated..

  • Issue with page processing - confirmation message & show /hide a button..

    Hello,
    I am working on a to do list application.
    I have events and for each event, I show list of tasks (grouped in reports based on the calculated task's status).
    In one region I have a drop down list of events and a Select Event button.
    For each task, I had to create a CLOSE option (initially I used a link, but the requester wanted a confirmation before closing the task).
    Now I have a checkbox for each task (generated dynamically with apex_item.checkbox(1,task_id)).
    Closing a task in my application means to set the end_date to sysdate.
    I followed the instructions from
    http://download-west.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28839/check_box.htm#CEGEFFBD. I've created also a button and a process and updated the sql from "delete" to "update".
    The process is set: OnSubmit - After Computations and Validations; Run Process Once per page visit (default).
    The issue number 1 is that I see the confirmation message (that tasks have been closed) every time I reload the page (the same when I click Select_event button).. not only after I press on that Close_task button..
    For issue number 2, I have to mention that I've added a condition to show / hide the Close_task button, only if I have at least 1 task in the report.
    The issue number 2 is that I see the button only if I click 2 times on the Select_Event button.. The same is for hide.
    I feel like I am missing something very important about how to synchronize different events(buttons clicks), processes..
    help..?
    Thank you!
    Anca

    This forum is magic..
    As soon as write here, I find the answer!
    Issue 1: I fixed it by specifying this: When Button Pressed (Process After Submit When this Button is Pressed) and my button. I miseed this 1st time.
    Issue 2: I moved the button after the report.. and now it's working just fine!
    I did this about it for some time before asking the question here.. but I just had to write here and got the right answer ;)
    Have a nice day!
    Anca

Maybe you are looking for

  • Unable to load WSDL

    I am trying to consume the 3rd party WSDL below from my BizTalk project in Visual Studio. I am using BizTalk 2010 and Visual Studio 2010. <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"  xmlns:x

  • Exception in fiel

    hi , am getting a null pointer exception in the code, actually i have a large set of data in my file as 18.0909 1 19.0872 2 i am reading the file and tryin to extract the data in two arrays as float and integer, am getting exception caan you help me

  • Imac problems and Apple Genius

    Hi All, I posted a thread about my new iMac freezing and not responding and many of the people from the Apple discussion gave me great advice and support. Unfortunately, even though we repaired the permissions the computer froze up again and a call t

  • Combo of T61 and customer support problems

    My main problem is that my T61 freezes up.  It came with a 2 gig ram, sbbb Intel core 2 duo t7500 processor, 1 gig turbo memory window's ultimate 32 bit os and an 80 gig hard drive. This problem has been going on intermittently (odd) since I  receive

  • First problems surfacing

    My 8g iPhone is having problems: 1) the slide bar does not respond to my touch and will not slide to open. This is usually overcome by pressing the home button several times to get to the home screen. 2) the bigger problem is that the browser won't s