Disable confirmation popup

Hi,
I am calling a standard utility to post PGI for delivery from an exit.
Now, it asks for a confirmation to post or not.
I want to disable this confirmation popup message.
Is there any way to do this ?
Thanks in advance.
Regards
Megha

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

Similar Messages

  • Validation popup conflicting with confirmation popup

    I am using 11gR1.
    I have a form with three buttons on it CreateInsert, Next, Cancel.
    The next button fires model layer validation on a new record, the cancel button opens a confirmation popup and if the user clicks yes, navigates the away from the form. When a user clicks next AND the form does not pass the model layer entity validation, a validation error is raise in a validation popup. The problem comes when the user then decides to not fix the validation, but instead cancel out of the form via the cancel button AFTER they have already clicked next.
    When the user clicks the cancel button it raises the confirmation pop-up and whether the users clicks yes or no on the pop-up, the model layer validation still fires. I have immediate set to true on the cancel button to bypass validation, BUT if they user has already clicked next the validation still runs when they try to answer the pop-up. This results in the user being stuck in a never ending series of pop-ups because the confirmation pop-up can not close because the model layer validation keeps firing.
    I have a dialoglistener on the dialog and a method in the backing bean (backingBeanScope.backing_IAEdit.cancelConfirmDialog) but that code never fires. Anyone else run across this problem or have any ideas how to resolve it?
    Here is the code from the command buttons...
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}" text="CreateInsert"    disabled="#{!bindings.CreateInsert.enabled}"
                                id="cb5"/>
    <af:commandButton actionListener="#{bindings.Next.execute}" text="Next" disabled="#{!bindings.Next.enabled}" partialSubmit="true"                    
                                id="cb2"/>
    <af:commandButton text="Cancel"  id="cb4" action="Cancel" immediate="true">
                    <af:showPopupBehavior popupId="p1"/>
    </af:commandButton>
    <af:popup id="p1">
                  <af:dialog id="CancelConfirmDialog" title="Confirm Cancel"  type="yesNo"
                                   dialogListener="#{backingBeanScope.backing_IAEdit.cancelConfirmDialog}">
                          <af:outputText value="Are you sure you would like to cancel?" id="CancelOutput"
                                         inlineStyle="font-weight:bold; font-size:small;"/>
                  </af:dialog>
    </af:popup>

    Thanks for the suggestion, but the code in the dialoglistener never fires.
    When the user clicks yes or no to dismiss the dialog box, the validation from the bc layer fires (even though immediate is set to true on the cancel button) and pops up an error box. When the error box opens, it opens in a modal way, the dialog box grays out and all you can do is dismiss the error box. When the user clicks ok to dismiss the error box, the dialog box is still open. Then when the user again clicks yes or no on the dialog box, it again fires validation and pops up the error box in a modal way. So now the user is stuck with these two pop ups and can never get rid of the dialog box.
    Just to clarify, this ONLY happens if the user FIRST clicked the next button which triggered the bc layer validation. If the user just clicks the cancel button, everything works as expected with the dialog box popping up, the user selects yes or no, the dialoglistener code is run and the user is navigated to another page. If the user just clicks the cancel button validation is never run as is expected by having immedate set to true.

  • Is there any way to disable the popup message I get when I print to a PDF?

    When I print to a pdf by selecting the Adobe PDF Converter as my printer, I always get a popup in my tray "Your PDF file 'document name' has been created".
    This is annoying when I printing a bunch of different documents at a time.  I know the PDF has been created because it opens up, so why the popup?
    HOW DO I DISABLE THIS POPUP???
    Help!!

    If you're talking about the balloon tip that appears in the tray area, I don't know of a way to disable it for just Acrobat, but you can for all programs by modifying the registry: http://support.microsoft.com/kb/307729

  • Disable/enable popup LOV image anchor in tabular form

    Hello all,
    I am trying to find the solution how to enable/disable popup LOV's image anchor. When I disable the popup item, then only the text field is disabled but the image is still active and opens the LOV window. I have tried to implement some solutions but without success.
    I have created DA (fired after refresh of needed region) with code below which disables the needed field.
    $('td[headers="DEPTNO"] input').each(function(i)
                $('td[headers="DEPTNO"] input:text').disabled="disabled";
    $($('td[headers="DEPTNO"] input:text')[i]).addClass('apex_disabled');
    Could anyone help me with a code which will also disable the image?
    Thanks in advance!
    My testing appl:
    www.apex.oracle.com
    *WS:* kurintest
    *username:* [email protected]
    *passwd:* kurintest
    *appl. name:* disable_popup_icon
    -Jiri                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hello Jiri,
    Please see your page:
    I have changed the dynamic action:
    $('td[headers="DEPTNO"] input').each(function(i)
                $('td[headers="DEPTNO"] input:text').disabled="disabled";
    $($('td[headers="DEPTNO"] input:text')[i]).addClass('apex_disabled');
         $($('td[headers="DEPTNO"] a')[i]).click(function(e) { e.preventDefault(); });
    $($('td[headers="DEPTNO"] img')[i]).addClass('apex_disabled');
    Hope it helps!
    Regards,
    Kiran                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to Stop confirmation popup arising for datepicker control in IE

    Hello All,
    I m using a confirmation popup to notify user when they try to navigate away from the page with out saving the changes made. I executed it through the javascript and it even works properly for most of the items and buttons except Datepicker control. This issue is only with Internet Explorer and all others are fine.
    I use the following block of code to do the job
    +function isFormChanged()
    {+
    var rtnVal = false;
    var frm = document.wwv_flow;
    var ele = frm.elements;
    for ( i=0; i < ele.length; i+ )
    {+  
    +if ( isElementChanged( ele, i ) )
    {+
    rtnVal = true;
    break;
    +}+
    +}+
    return rtnVal;
    +}+
    +function isElementChanged( ele, i )
    {+
    var isEleChanged = false;
    +switch ( ele.type ) {+
    case "text" :
    +if ( ele[i].value != ele[i].defaultValue ) return true;+
    +if( ele[i].id.indexOf('Date')!=-1) return false;+
    break;
    case "textarea" :
    +if ( ele[i].value != ele[i].defaultValue ) return true;+
    break;
    case "radio" :
    val = "";
    +if ( ele[i].checked != ele[i].defaultChecked ) return true;+
    break;
    case "select-one" :
    +if      (ele[i].id>99 ) return false;+
    +for ( var x =0 ; x <ele[i].length; x++ )
    {+
    +if ( ele[i].options[ x ].selected+
    +!= ele[i].options[ x ].defaultSelected ) return true;+
    +}+
    break;
    case "select-multiple" :
    +if      (ele[i].id>99 ) return false;+
    +for ( var x =0 ; x <ele[i].length; x++ )
    {+
    +if ( ele[i].options[ x ].selected !=+
    +ele[i].options[ x ].defaultSelected ) return true;+
    +}+
    break;
    case "checkbox" :
    +if ( ele[i].checked != ele[i].defaultChecked ) return true;+
    default:
    return false;
    break;
    +}+
    +}+
    var g_saving = false;
    var IsThe2ndNavAway = false;
    var g_errmsg="The changes you made to the page were not saved.";
    +function WarnSave()
    {+
    var formChanged = isFormChanged();
    if (!g_saving && formChanged)
    +{+
    if(!IsThe2ndNavAway)
    +{+
    IsThe2ndNavAway=true;
    +var tOut = window.setTimeout(function () { IsThe2ndNavAway = false; }, 0);+
    return g_errmsg;
    +}+
    +}+
    +}+
    function doSave()
    +{+
    g_saving=true;
    doSubmit('SAVE');
    +}+
    the above lines on page Html header and the Html body attribute with onBeforeUnload="return WarnSave();"
    Can any one say why the confirmation popup is pushed of in IE for DatePicker Calendar alone and provide the work around if any..

    Are you still having this problem?  See this post how one AOL user solved it: http://forums.adobe.com/message/3024814#3024814

  • How to permanently disable comment popup hint in Adobe Reader X?

    I wish to permanently disable the popup that says  "Click on Comment and Share to create, mark-up and send PDF files.":
    It is getting annoying having to always click it to remove it when viewing a new PDF file in Fullscreen mode.
    How can I acheive this?
    Is there a setting in the preferences or a key in the registry that I can modify?

    You're right. I've tested on a couple of computers now and the problem seems to be isolated to one computer with a particular software setup. On the others it works as you describe.
    You would'nt by any chance know where this "don't show the bubble"-setting is stored after clicking the cross for the first time? Is it in the registry?
    Edit:
    Received a helpful tips: HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\AVGeneral\bShowTaskButtonInfoBubble

  • Blocking popup windows even when disabling the popup blocker

    For quite some time now, Firefox has been blocking essential popup windows on my computer. It's not just those annoying ones, even those when I am trying to write an email and similar things. I have disabled the popup blocker and it does not change anything at all. It does not alert me that it has blocked anything either, it is simply as if I never clicked anything in the first place. I have tried adding exceptions to my popup blocker, and this does not work either. This is really frustrating and is interfering with my daily use of firefox, and forces me to use crappy explorer which does not block things. What can I do?

    Hi Sachin
    Thank you so much for the reply.
    About your request, the codes that I used are:
    HTML for the PopUp:
    <SCRIPT LANGUAGE="JavaScript">
    function popUp(URL) {
    var iMyWidth;
    var iMyHeight;
    //half the screen width minus half the new window width (plus 5 pixel borders).
    iMyWidth = (window.screen.width/2) - (250 + 10);
    //half the screen height minus half the new window height (plus title and status bars).
    iMyHeight = (window.screen.height/2) - (225 + 50);
    //Open the window.
    var win2 = window.open("http://xarao.businesscatalyst.com/caipiroska.html","Window2","status=no,height=450,width=500,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
    win2.focus();
    </SCRIPT>
    For the Link:
    javascript:popUp('http://xarao.businesscatalyst.com/caipiroska.html')
    Of course for all the different links in the page I've changed the http of each image in both codes.
    http://xarao.businesscatalyst.com/cocktails.html
    Thank you once more.
    Best regards,
    Augusto

  • Confirmation popup in FPM OVP application controller?

    Is it possible to make use of confirmation boxes within the application controller of an FPM-OVP? In my application there is a logout button in the global toolbar. The event is captured within the application controller of the FPM-OVP application, thus in the method IF_FPM_OVP_CONF_EXIT~OVERRIDE_EVENT_OVP. Now, I would like to open a confirmation popup (Are you really, really, really sure? Yes/No/I will think about it) and to trigger the event only when it is answered with yes. In forms I have the possibility to make use of the extended interfaces and to implement the NEEDS_CONFIRMATION method. Is there something similar in the current context?
    Best regards,
    Thomas

    Hi Thomas,
    Try to use AFTER_NEEDS_CONFIRMATION method in application controller.
    Kind regards, Aliaksandr.

  • Superfluou​s confirm popup in UI editor?

    Hello NI,
    I have a XY graph with several annotations.
    If I open the uir file and double click on the graph (-> Edit Graph popup), click on the 'Annotations' button (-> Edit Annotations popup) and change Current Annotation say from 24 to 23 (to see its properties).
    Then I want to close everything (not changing anything): I click on the X button in the panel title of the 'Edit Annotations popup: a confirm popup shows up asking if I am sure to discard the changes. This popup is ok for the current annotation has changed. So I click Yes.
    By this all changes should have discarded, right?
    But now, if I click the X button in the panel of the Edit Graph popup the same confirm popup shows up again... In my opinion this should not happen ;-)
    (I know that I can leave the two popups faster by hitting ESC twice)
    Solved!
    Go to Solution.

    Yes, this is a bug, and it's been around since the beginning of CVI from what I can tell.
    It's actually two bugs: 1) you shouldn't see the prompt in the annotations dialog in the first place, if all that you change in that dialog is the current annotation (and the analogous control, in the graph's cursors dialog, or the strip chart's traces dialog), since changing the current annotation/cursor/trace does not change the state of the graph or chart. And 2), as you pointed out, you shouldn't see the prompt again when you exit the main dialog if you discarded your changes in the sub-dialog.
    Bug 477231.

  • Disabling Secondary Popup When Accessing Office 2003 Documents Through KM

    Hi,
    we have the old problem with "Disabling Secondary Popup When Accessing Office 2003 Documents Through KM" which was topic of a weblog by John Mittendof already.
    For us it was solved when using Windows-integrated authentication without changing the registry as described.
    This works with Office2003 SP1. With SP2 the popup appears again.
    Does anyone have the same problem???
    The disadvantage with the registry solution is, that the files will be stored in the temporary internetfiles which leads to a message when opening a second time (in the sense of: document already open by "myself" - open writeprotected?).
    Best Regards
    Helge Stührmann

    Please Try this: (You should change all these settings or you'll get other errors)
    Go to Content Management ® Global Services ® URL Generator Service.
    Make the following changes:
    &#9679;      a) Replace the prefix
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs in the parameters Image Path, Viewer, XML Forms CSS URL, and Content Access Path with /irj/go/km/docs
    The entry in the Image Path parameter must look as follows: /irj/go/km/docs/etc/public/mimes/images
    &#9679;      b) Replace the prefix
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.uidetails in the parameters Resource Properties Page and New Resource Properties Page with /irj/go/km/details
    &#9679;      c) Replace the prefix
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.navigation in the parameters Explorer Servlet and Navigation Servlet with /irj/go/km/navigation
    &#9679;      d) Replace
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent in the parameters Highlighted Content with /irj/go/km/highlightedcontent
    &#9679;      e) Replace
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.basicsearch in the parameter Basic Search Servlet with /irj/go/km/basicsearch
    Regards, Fede

  • Javascript Confirm popup Yes, No button instead of OK and Cancel?

    Hi,
    I wrote javascript for confirm popup like below:
    var answer = confirm ("Are you sure you want to delete this item ?");
    It is showing OK Cancel button popup , but I want to display Yes No buttons on popup insted of OK Cancel buttons...
    Appreciate if anyone give proper solution.
    Thank you.
    Still I could not get proper solution.... Please any one help me solve this... need js solution not jquery..

    Hi Praveen
    There is not direct option in JavaScript to get Yes/No buttons in a Confirm dialog.
    But, we can create a customized dialog box with our own HTML tags, controls and scripts and show it as a confirmation dialog using
    window.showModalDialog() function
    Here is the sample HTML to demonstrate how to create a customized confirmation dialog.
    Dialog.HTML (This contains the UI for the confirmation dialog. Message, Yes No buttons etc)
    <!DOCTYPE>
    <html>
    <head>
    <title>Confirmation Message</title>
    <script language="javascript" type="text/javascript">
    window.onload = function()
    var messageDiv = document.getElementById('dlgMessage');
    if ( messageDiv != null && typeof(messageDiv) != "undefined" )
    messageDiv.innerHTML = window.dialogArguments;
    function confirmClick(args)
    window.returnValue = args;
    window.close();
    </script>
    </head>
    <body>
    <div id="dlgMessage">
    </div>
    <input type="button" value="Yes" id="btnYes" onclick="javascript:confirmClick('yes')"/>
    <input type="button" value="No" id="btnNo" onclick="javascript:confirmClick('no');"/>
    </body>
    </html>
    MainPage.HTML (From where the confirmation dialog will be shown. In your case, u can use the script in this html and customize it according to ur needs)
    <!DOCTYPE>
    <html>
    <head>
    <title>Main Page</title>
    <script language="javascript" type="text/javascript">
    function showConfirmDlg(message)
    var returnValue = window.showModalDialog("dialog.html",message,"dialogHeight:150px;dialogWidth:200px");
    if ( returnValue == 'yes' )
    alert('Yes button is clicked in the dialog');
    else
    alert('No button is clicked in the dialog');
    </script>
    </head>
    <body>
    <input id="btnConfirm" type="button" value="Confirm" onclick="javascript:showConfirmDlg('Do you want to continue?');" />
    </body>
    </html>
    Hope this helps.
    See this MSDN Link for more information on how to use and customize the showModalDialog() function
    http://msdn.microsoft.com/en-us/library/ie/ms536759(v=vs.85).aspx

  • Disable a POPUP

    Hello forum,
    I have a copy Z of the report  RCNMASSCHANGE standard,
    When I execute the F8  appears a popup with a subscreen .
    I want to disable this popup and the process continue whitout this.
    I 've Debuged and I saw the popup is activated when  this function is executed:
    CNMASS_CALL_MASS_CHANGE_DATA
    Any idea to disable the popup?
    Thanks
    CALL FUNCTION 'CNMASS_CALL_MASS_CHANGE_DATA'
           EXPORTING
                I_FLG_NO_DIALOG       = FLG_NO_DIALOG
                I_FLG_MAINTAIN_TABLES = FLG_MAINTAIN_TABLES
                I_FLG_COMMIT          = CON_YES
                I_FLG_TEST            = FLG_TEST
                I_FLG_ONLINE          = FLG_ONLINE
                I_FLG_BATCH           = FLG_BATCH
                I_FLG_SAVE            = FLG_SAVE
                I_FLG_COPY            = FLG_COPY
                I_CURRENT_TABNAME     = CURRENT_TABNAME
           IMPORTING
                E_FLG_TEST            = FLG_TEST
                E_FLG_ONLINE          = FLG_ONLINE
                E_FLG_BATCH           = FLG_BATCH
                E_FLG_SAVE            = FLG_SAVE
                E_CURRENT_TABNAME     = CURRENT_TABNAME
           TABLES
                I_PROJ                = PROJ_TAB
                I_PRPS                = PRPS_TAB
                I_PRTE                = PRTE_TAB
                I_PSMLST              = PSMLST_TAB
                I_AUFK                = AUFK_TAB
                I_AFKO                = AFKO_TAB
                I_AFPO                = AFPO_TAB
                I_AFVGD               = AFVGD_TAB
                I_AFABD               = AFABD_TAB
                I_MLSTD               = MLSTD_TAB
                I_RESBD               = RESBD_TAB
                T_CHANGES             = P_MASPAR
                T_DETAILED_CHANGES    = P_MASCNG
           EXCEPTIONS
                CANCEL                = 1.

    Hi,
    try commenting out the EXPORTING flag_commit.
    and if that does not work try using SUPPRESS keyword....
    Rgds/Abhi

  • How can I disable my popup blocker on mt iPad?

    How can I disable my popup blockers on my ipad2?

    go to setting
    tap safari
    then scroll down
    theres a tab under javascript and slide it to off

  • I don't use CS5 Live. How do I disable cs5servicemanager popup?

    Probably a small thing but this annoys me & I'd like to disable the popup asking to use info stored in keychain. Using CS5 Extended on Mac 10.6.4.

    This is what I usually get when I login. I gave in & selected Allow (not Always Allow) & now no longer see the popup when in startup of PS. I guess it's active all the time now which is not what I wanted. I don't subscribe to the service so I don't understand why it's there. I consider this spyware & I don't appreciate this "service" monitoring my computer.

  • When sending mail to a recipent with "unrouteable adress" I get a popupwarning. Is it possible to disable this popup?

    I am trying to disable a popup alert I get when I send a message to a recipient with an error.
    I get the message "Unrouteable adress" as a popup and have to press OK to continue to send mails. The reason I want to disable this is that we are using thunderbird to send out newsletter, and have to press OK on all adresses that is wrong.

    Another option is to make an Automator workflow that creates a new email message formatted as you like. Here are the steps:
    Open Automator and create a New Service.
    Set it to no input in Mail
    From the Utilities Library, drag the run Applescript action into the workflow pane.
    Copy and paste in this script (replacing what is already there):
    property fontName : "Lucida Handwriting"
    property fontSize : 14
    property fontColor : {14848, 26112, 65535} as RGB color
    property emailMessage : "Hello "
    on run {input, parameters}
              tell application "Mail"
                        set theMessage to make new outgoing message with properties {visible:true}
                        set the content of theMessage to emailMessage
                        tell content of theMessage
                                  set the font to fontName
                                  set the size to fontSize
                                  set the color to fontColor
                        end tell
              end tell
    end run
    Change all the Properties to what you want for defaults.
    Save the workflow with a useful name.
    Open Keyboard System Preferences, Shortcuts menu
    Select Services category
    Scroll to the bottom section and find you service; select it.
    Tab the shortcut field and type the shortcut you want to use. Note that a lot of the N shortcuts are used. I found ctrl-opt-N was free.
    Open Mail, go to the Mail menu > Services > name of service
    That will open a new mail window. Close it and try the Shortcut.
    To get the right color values, you can use the color picker, RGB Slider values multiplied by 256. That's not quite perfect, but it is close. The maximum value is 65535

Maybe you are looking for

  • Database polling adapter within an asynchronous BPEL process

    Hi, I have a requirement to poll a database table withing an asynchronous process. The reason I want to use a receive within an asynchronous BPEL is because the process needs to be notified many times thru polling. So might need many receive activiti

  • Trackpad died in less than a week, won't power up!

    I recently bought the 27" ACD to use with my MBP and hence needed to get a Bluetooth keyboard and decided to go with the Magic Trackpad instead of the mouse. Man, the Trackpad is anything but magical. In less than a week, it won't power up. Just died

  • How do I insert text on top of an image

    I've got my masthead at the top of my page, and now I want to add text - log in / join / subscribe - which will be links that change based on the user's state (ie, log in switches to log out). How do I insert this text over the image in Dreamweaver c

  • Error in drop table

    hi, i am getting ora 01422 error while droping below comand. DROP TABLE at_test; plz tel me ,why this is happening... CREATE TABLE "SCOTT"."AT_TEST" (     "ID" NUMBER NOT NULL ENABLE,      "DESCRIPTION" VARCHAR2(50) NOT NULL ENABLE ) PCTFREE 10 PCTUS

  • Illustrator brush not working right....

    Hello. This is kind of hard to explain but on one of my mac computers, the brush is not following the path that I am drawing out, it seems to draw something completely different, especially if I try to draw like a square or something similar. I tried