Confirmation Message (apex.confirm) Does Not Display

I am trying to use the version of apex.confirm that also sets the value of a page item. The APEX documentation provides this as an example of the correct syntax (cut and pasted from manual):
apex.confirm("Save Department?", {
  request:"SAVE",
  set:{"P1_DEPTNO":10, "P1_EMPNO":5433}
  });I am trying to do the same thing in my code but, the confirmation is just not displaying:
var hasUnsavedChanges = $v( 'P35_CHANGES_MADE' );
if ( hasUnsavedChanges == 'TRUE' )
alert('prompting')
   apex.confirm("You Have Unsaved Changes that Will Be Lost. Continue Anyway?", {
      request:"GOTOMARGCONFIRM",
      set:{"P35_CHANGES_MADE":FALSE}
alert('prompted')
else
alert('submitting')
   apex.submit('GOTOMARGCONFIRM');
};It never displays the "prompted" alert although the "prompting" one does display. I just can not spot any difference between the syntax I am using and the syntax provided by Oracle. I am only setting the value of the one item, P35_CHANGES_MADE.
Can anyone help. BTW, just using the regular version of apex.confirm, i.e.
apex.confirm("You Have Unsaved Changes that Will Be Lost. Continue Anyway?", "GOTOMARGCONFIRM");works fine.
-Joe

When the value of the item is not a number put the value within quotes.
apex.confirm("You Have Unsaved Changes that Will Be Lost. Continue Anyway?", {
      request:"GOTOMARGCONFIRM",
      set:{"P35_CHANGES_MADE":"FALSE"}
   });

Similar Messages

  • SMS text message header does not display sender information

    When I receive a text message the only header information that displays is the date and time.  The senders information does not display.  The lines are not even there.  There is no way to reply to a text message or tell who the sender is.  This problem is only with SMS messages.  Regular email headers display just fine.  I have done a wipe, reset, reload, everything possible with no luck.  I am the only one in my office with this problem.  I have not been able to find any information or postings from anyone having the same problem.  I can read the text message, but there is no header (except for the date and time).  Any thoughts?
    Blackberry Curve 8350i

    I was able to resolve the problem by uninstalling the Blackberry desktop manager software and reinstalling it selecting Internet Email vs. Blackberry Enterprise Server.  If you get to the screen that asks you to choose which type of email service you use and you accidentally choose the wrong one your phone will work but will do strange things, including sending all sorts of redirect emails.  For me, this seemed to do the trick.

  • Confirmation process in SRM does not work whenever there is a discrepancy

    Hello,
    we are on SRM 5.0 version with classic scenario(follow on documents in backed system - ECC 5.0). to procure maintainence service user cretes a shopping cart by selecting describe requirements method and UOM at times in incorrectly asssigned as EA so upon shopping cart approval a follow on ducument (purchase requistion) is created in ECC  as per config set up(in SRM). Buyer while coverting this purchase requisition to PO rectifies this erroe and chages the UOM of meausre to Hr and send a PO to vendor.
    we are not bale to use confirmation feature in SRM to perform receipt of this service. is this how system works? any configration or a BADI needs to be usd to allow to perform confirmation in SRM even tough there is discrepancy in shopping cart UOM and Purcahse requsition UOM.
    when thre is change in UOM in ECC that Purchase
    *Confirmation process in SRM does not work whenever there is a discrepancy (i.e. different UM )between Shoping cart and Purchase Requisition related to that Shoping cart.*
    we donot use serive option in SRM and donnot MM service module in ECC.
    any help on this will be much appreciated.
    Thanks,
    sairam

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • When I try to delete my site, I enter my information to confirm my identity. The confirm widow freezes, and does not go to the next step. What can I do, please?

    When I try to delete my site, I enter my information to confirm my identity. The confirm widow freezes, and does not go to the next step. What can I do, please?

    Hi,
    Did you try any other browser? is it hosted on Business catalyst? If yes and if you are using custom domain, then login to admin panel using system domain (mysite.businesscatalyst.com) and then try to delete. 
    Let us know if that works

  • ADF FACES: af:messages/ does not display my messages at all

    I am having an issue displaying messages using ADF MyFaces EA20.
    <af:messages />
    Within all backing beans I call messages with the following method to conveniently display messages when needed.
    // Add invalid email address message
    JSFUtils.addMsgToContext(FacesMessage.SEVERITY_ERROR, "setEmail_error", MsgConstants.INVALID_EMAIL);
    The method utilized can be seen below:
    public static void addMsgToContext(FacesMessage.Severity severity, String msgKey, String descKey) {
        // Check the parameter, if either short desc or desc both are empty
        if (StringUtils.isEmpty(descKey)) {
            logger.error("Message description are empty. Do NOTHING just return");
            return;
        try {
            logger.debug("Add Message to Context");
            FacesContext context = FacesContext.getCurrentInstance();
            Application application = context.getApplication();
            // Add the message to the context
            context.addMessage(msgKey, getMessageFromBundle(descKey, severity));
        } catch (RuntimeException e) {
            * Supress RuntimeException.
            logger.error("Error occured when add message to context", e);
    With the first login page when validating username and password, the messages I send to the context display correctly, for example, “incorrect password please try again” and this uses exactly the same code as above in the backing bean.
    However once a session has started the messages simply do not get displayed and are not included in the HTML the <af:messages /> is replaced with nothing.
    No runtime exception is thrown.
    If anyone has any idea of why the messages are not being displayed I would be very grateful to hear them.
    Finally if I may add that I used this method of displaying messages in a previous project and it was fine. This time the only difference is that I am using Hibernate.
    The closest answer I could find to a similar issue with Oracle Forums was:
    The messages have to be added before the Render Response phase. It's generally very unusual to add messages in a bean getter/setter. I'd restrict yourself to adding messages in event listeners and actions.
    I do put messages in my setter methods as this is where I perform validation, but I have tried moving them to the main method called by the action button and this still does not display my messages.

    Frank
    There is a standard way? Next time you can simply tell me to RTFM ;-) . I am working on a project and was assigned my particular section and was told that the messaging aspect and validation was not urgent, until now near the end of the project when it has become urgent. Rather then listen to my colleagues answer of "this is the way to do it" your answer suggested that we working in a non-standard way.
    Having looked at Oracle JDeveloper 10g (10.1.3) Documentation, Validation, Conversion, and the Application Lifecycle section I noticed:
    Render response:
    Either display new page based on invoked navigation rules, or displays same page with errors.
    I was providing a new navigation String to the same page under all conditions, which I guess gives a new context and so does not display the messages. Under error conditions I now return an empty navigation String and now it displays my messages.
    Thank you for your help with this and I promise to read the manual next time.
    Andrew

  • Email does not display message body

    The message body of emails displayed fine for months but suddenly does not display message body of any email.  Can only see to, from, subject line on right side of screen.  Blank body.

    Try a reset:
    Hold the Sleep and Home button down until you see the Apple logo.

  • Notification on skpe in iphone 6 does not display when there is incoming messages

    The user has a iphone6 and installed the latest Skype. However, when there is incoming messages, the badge(red counter) does not display in the icon.I have tried everything i could, background refresh, uninstall and reinstall,, check the settings and reboot the iphone a few times etc...but the notification badge simply will not show.Can anyone advise a remedy to this?Very much appreciated.

    I used Iphone 5 till yesterday with IOS 7.2 and older version of Skype and no issues at all . I could see group chats and every single chat possible on my phone as on my laptop Now i have an Iphone 6 and the newest software and the skype application I CAN ONLY SEE PEOPLE but not group chats on my phone . I dont get notification about the group but i can easy see on my laptop that there are chats missedOnly if the person msg me away from that group I can get the msg on my phone  WHy is this happening . How can i go back to old version of Skype and should i go back to it??Do I need to downgrade the softwareIm using Skype for business on a daily basis and group chats are crucial for my work  PLEASE HELP !! 

  • Problems to shut down, restart my Mac it displays a message saying Safari does not allow it. I try to quit Safari and does not do it.

    Problems to shut down, restart my Mac it displays a message saying Safari does not allow it. I try to quit Safari and does not do it.

    Have you tried using Activity Monitor to shut down Safari?
    Ciao.
    Have you clicked on the Safari icon in the dock and seen if 'Force Quit' is displayed?
    Message was edited by: OGELTHORPE

  • Error message "Location XYZ does not exist for item1" Message no. BBP_PD047

    Hi all,
    When i do confirmation for PO in SRM, the system gives error message "Location XYZ does not exist for item1" when i enter Location for the plant thought the Location is mapped to Plant in ECC system. System shows error when i click on check button,  it allowing me add locations.
    This is happening when confirming the PO line items having differernt plants and it is not happeing all the time, sometimes it does't work. I
    f all the line items have same Plants, there is no issue.
    I am not able to understand why it is working some time and not working other time.(message no: BBP_PD047 in SLG1)
    can some one help me in understanding this?
    Thanks,
    Ravi

    Is this thread still valid? If not, please close the thread.
    If so, as no response has been submitted, please rephrase your question and/or provide further information to describe your requirement.
    Thanks
    Jason
    SDN SRM Moderator Team

  • Messages on Mac app not displaying contact name

    On Messages on my Mac, despite being synced up with iCloud, the Messages app does not display the contact names of anyone. It shows their phone numbers or Apple email addresses. Is there any preference I can change to make it show the contact names? If it exists I haven't found it. I also used the app meant to scrub contacts to make the phone number format conform with Apple's standard (xxx) xxx-xxxx please help!

    HI,
    I take it you are no longer on OS X 10.7.2 ?
    The display of Names (and/or Pics) in Buddy Lists and the main Messages window (when in a  Chat)  in Mountain Lion is controlled from the View Menu > Buddy Names.
    To set this choice the window has to be the "Front" one.
    So the Messages window (CMD + 0 in the window Menu) gets brought to the Front when any sort of Text Chat is going On.
    the View Menu > Buddy Names items is selected and navigation to the choice you want.
    Full names is the First name, Last name as seen in the Contacts app (Formerly the Address Book)
    Short Names are Nicknames (normally set via Messages) or First name only if no Nickname exists.
    Handle is the Screen Names (If AIM), Jabber ID (If Facebook, GoogleTalk or other Jabber ID) or in the case of iMessages the current contact ID or iPhone number.
    You can do the same to any Buddy list that you also display.
    It can be used in Conjunction with the View Menu > Messages which has options to display Pics, Names or Pics and Names.
    (Names now refers to whatever is set in the "Buddy Names" option).
    8:49 PM      Friday; November 16, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Reader X does not display drawing in PDF generated with LaTeX

    I have a quite large PDF generated by pdfTeX, Version 3.1415926-1.40.11 which contains also XY-pic drawings rendered with Xy-pic version 3.8.2, PDF driver v.1.4.
    One drawing does not display correctly in Adobe Reader X. Neither on Windows, neither on Mac. It does display correctly with following programs:
    Preview on Mac OS X 10.5 and 10.6
    Adobe Reader 9.x
    Skim (skim-app.sf.net).
    When I open this document with Adobe Reader X I get following error message when I hit page 58:
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem".
    Where does one report rendering problems?
    Damjan

    See [https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • ISA invoice detail does not display data  R/3 E-commerce 5.0

    I´m using R/3 Internet Sales B2B.
    I´m in area for search transactions and I have selected invoices, credit memos or down payments. When I click one of these documents, the system does not display any data in the detail screen.
    Any idea?

    Full Message Text
    An exception has occurred: java.lang.NullPointerException
    at com.sap.isa.isacore.action.GenericSearchBaseAction.addRequestedFields(GenericSearchBaseAction.java:525)
    at com.sap.isa.isacore.action.GenericSearchBaseAction.buildSelectOptions(GenericSearchBaseAction.java:140)
    at com.sap.isa.isacore.action.GenericSearchISAAction.ecomPerform(GenericSearchISAAction.java:65)
    at com.sap.isa.isacore.action.EComBaseAction.doPerform(EComBaseAction.java:353)
    at com.sap.isa.core.BaseAction.execute(BaseAction.java:211)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at com.sap.isa.core.RequestProcessor.processActionPerform(RequestProcessor.java:674)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:391)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
    at com.tealeaf.capture.LiteFilter.doFilter(Unknown Source)
    at com.sap.isa.isacore.TealeafFilter.doFilter(TealeafFilter.java:61)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    [EXCEPTION]
    java.lang.NullPointerException
    at com.sap.isa.isacore.action.GenericSearchBaseAction.addRequestedFields(GenericSearchBaseAction.java:525)
    at com.sap.isa.isacore.action.GenericSearchBaseAction.buildSelectOptions(GenericSearchBaseAction.java:140)
    at com.sap.isa.isacore.action.GenericSearchISAAction.ecomPerform(GenericSearchISAAction.java:65)
    at com.sap.isa.isacore.action.EComBaseAction.doPerform(EComBaseAction.java:353)
    at com.sap.isa.core.BaseAction.execute(BaseAction.java:211)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at com.sap.isa.core.RequestProcessor.processActionPerform(RequestProcessor.java:674)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:391)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
    at com.tealeaf.capture.LiteFilter.doFilter(Unknown Source)
    at com.sap.isa.isacore.TealeafFilter.doFilter(TealeafFilter.java:61)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)

  • I cannot open a PDF attachment. Get message saying Preview does not recognize it. What is Preview?

    Cannot open a PDF attachment. I get a message saying Preview does not recognize it. What is Preview?

    CLICKY CLICK---> Preview - Apple Support
    Care to share which OS you are using?
    ===========
    When posting in Apple Communties/Forums/Message Boards.......It would help us to know which Mac model you have, which OS & version you're using, how much RAM, etc. You can have this info displayed on the bottom of every post by completing your system profile and filling in the information asked for.
    Click on your name Welcome "your name."
    Click on your name link
    Click on the BIO tab.  Scroll down to the bottom till you see "My Products."  This is the section where you can edit your profile.
    CLICKY CLICK-----> Help us to help you on these forums

  • Preview does not display pdf properly

    I have OS X 10.5.8 and Preview 4.2. Preview will not display a bank statement properly. Most of the content is missing. I initially thought this was the bank's fault, but the pdf statement displays OK on my work Mac using Adobe Acrobat Professional. On Preview, howerver, at work (OS X 10.4) it also does not display properly.
    Can anyone suggest a fix, or does Apple read these discussions...? Thanks. Graham

    "Preview is meant for previewing PDFs generated by OSX applications for printing.
    OSX uses its own code to generate and display PDFs, not Adobe's code.
    Adobe has been adding features to its PDF code that is used by some non-Apple software.
    PDFs generated by such software may not display correctly with Preview, but will work with the latest Adobe Reader."
    (courtesy of Malcolm Rayfield in this thread https://discussions.apple.com/message/12739728#12739728 )
    So, download and install the latest free Adobe Reader on your home Mac for these statements.
    Stefan

  • Does not display all of email

    email message is cut short. These messages take up: 7.9kb What does mean and how do I fix it to show all of message?

    one email message or many, from a single source or multiple sources. Usually when an email does not display as expected it contains javascript, which Thunderbird does not allow to run for security reasons.

Maybe you are looking for

  • How do I have Numbers recognise comma delimited information in a .csv file?

    I have a .csv file with column information delimited by commas, but Numbers does not seem to have a way to automatically recognise and format. 

  • Aknowledgement

    Hi Experts, I am doing IDOC->Xi->File scenario. Scenario is working fine but in sxmb_moni, in ACK Status column i am getting symbol. when i double click on that symbol it is showing message.  <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> -

  • No sound from new speakers

    We got a set of bose speakers, plugged everything in as instructed but there is no sound coming from the cable box.  Got a new cable box and hdmi cable, still no sound.  The bluray works great.  What gives?

  • Exporting remarks on separate lines

    The customer has lines of remarks in their item master data records. They wish to export these reports into Excel using a query. When they do, the remarks appear as one long line instead of separate lines. Is there a way of exporting this information

  • Hyperion Shared services Migration/Export import

    Hi, We are migrating the OS from Windows to UNIX in Essbase System 9. I am trying to export the exixting grous/filter access from the Windows environment (shared services--Single sign on) to the unix server. There are several cubes in the Windows, bu