Void Oracle define popup message

Hi,
How can I void the Oracle form popup message "Do you want to save the changes you have made?" when I used this command EXECUTE_QUERY.
Thanks

Before the Execute_Query, issue a command:
Clear_Form(No_validate,full_rollback);

Similar Messages

  • Display popup messages

    hi,
    i am using adf11g,jdeveloper 11g.in form i drag and drop one vo.
    in that form,for one attribute which is used as LOV,i have written valuechangelistener method.
    in that method i wrote some code for validaiton.when validaiton occur i am able to show popup messages regarding particular error.
    when any validaiton occur,popup message is coming,but my data is partially submitting to form after showing that error message.
    it should not submitted to form in case of any error.
    please give me the solution.
    IN JSFF page
    <af:panelFormLayout id="pfl8" fieldWidth="100" labelWidth="150"
    binding="#{GLPolicyBean.bindFormEvent}">
    <af:inputListOfValues id="GlstpAcDesc"
    popupTitle="Search and Select: #{bindings.GlstpAcDesc.hints.label}"
    value="#{bindings.GlstpAcDesc.inputValue}"
    label="#{bindings.GlstpAcDesc.hints.label}"
    model="#{bindings.GlstpAcDesc.listOfValuesModel}"
    required="#{bindings.GlstpAcDesc.hints.mandatory}"
    columns="#{bindings.GlstpAcDesc.hints.displayWidth}"
    shortDesc="#{bindings.GlstpAcDesc.hints.tooltip}"
    autoSubmit="true"
    partialTriggers="GlstpGlCode"
    valueChangeListener="#{GLPolicyBean.glACDescChanged}">
    <f:validator binding="#{bindings.GlstpAcDesc.validator}"/>
    </af:inputListOfValues>
    </af:panelFormLayout>
    in glpolicybean.java
    public void glACDescChanged(ValueChangeEvent valueChangeEvent) throws TransactionException{
    // Add event code here...
    System.out.println("account desc new value----------->"+valueChangeEvent.getNewValue().toString());
    String accDesc=valueChangeEvent.getNewValue().toString();
    System.out.println("account description1----------->"+accDesc);
    System.out.println("account desc old value----------->"+valueChangeEvent.getOldValue());
    ADFUtils.setBoundAttributeValue("GlstpGlSubcd", "");
    XBSystemMastersServiceImpl systemImpl=(XBSystemMastersServiceImpl)ADFUtils.getDCBindingContainer().getDataControl().getDataProvider();
    ViewObjectImpl glPolicyAddVO=systemImpl.getGLPolicyAddVO1();
    try {
    for (Row row : glPolicyAddVO.getAllRowsInRange()) {
    String accDesc1 = (String)row.getAttribute("GlstpAcDesc");
    System.out.println("account description1----------->"+accDesc1);
    if (accDesc.equals(accDesc1)) {
    throw new TransactionException("A/C Desc already entered for this setup");
    }catch (TransactionException e) {
    JsfUtils.addContextMessage(JsfUtils.getStringFromBundle("A/C Desc already entered for this setup"),FacesMessage.SEVERITY_WARN); }
    thanks in advance,
    Edited by: sravanthi on Dec 14, 2011 6:12 AM

    Hi,
    Try using validator.
    See
    http://docs.oracle.com/cd/E17904_01/apirefs.1111/e12419/tagdoc/af_inputListOfValues.html

  • Closing the browser without popup message

    Hi Experts,
    I refered the following thread and done the below steps
    1.Create a Button called Exit.
    2.Create an action for this button.
    3. In the event handler for this button, write the following code:
    String Url;
    try {
    Url = WDURLGenerator.getWebResourceURL(wdComponentAPI.getComponent().getDeployableObjectPart(),"close.html");
    wdThis.wdGetAtpEmpDetailsWinInterfaceViewController().wdFirePlugExitPlug(Url);
    } catch (Exception e) {
    wdComponentAPI.getMessageManager().reportException("Technical Exception occured in the application : " + e.toString(), true);
    4.Create a html page called u201Cclose.htmlu201D with Javascript code for closing a browser window.
    5.Place this html page in SRC -> Mimes -> Components -> Project Structure(Create this folder and place the html page in this folder)
    I have used Ie 7.0
    My questin is when i clicking the button. It show popup message like
    "Do you want to close this window " I don't want this popup.
    without popup i need to close this window? How to do that?
    Regards,
    Manivannan P

    Hi Manivannan p,
    1.Create a Button called Close.
    2.Create an action for this button.
    3. In the event handler for this button, write the following code
    You can try this
    public void onActionClose(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionClose(ServerEvent)
    WDPortalEventing.fire("urn:com.sapportals:navigation", "CloseWindow", "");
    //@@end
    This will help you closing the window with out Popup
    Here we are calling a "Portal Event" called " CloseWindow" to close the windoe
    Get back if you have any questions
    Thanks & Regards
    Swetha

  • Popup message to all logged in users

    Good afternoon,
    Is there a way of sending a popup message to anyone logged into an APEX Application - such as: "System is going down for emergency reboot of server. Please log out.", or similar type of message.
    I understand that the potential exists that someone that shows as logged in might have closed their browser and all of that. But I have a "strongly worded request" to do the popup thing if possible.
    I can parse through those that have logged in, find their emails and send out an email message, but that might not have the same urgency to the user as a popup message would have - particularly if the popup is modal.
    I've tried to search the forum, but I haven't seen anything on this. That doesn't mean it isn't here, it just means I didn't find it.
    Sorry I forgot: APEX 3.2, Windows 2003 servers; Oracle 11g database. If you need more details, let me know.
    Thanks,
    Don.
    Edited by: dfcii_2 on Sep 1, 2010 5:27 PM

    Good morning Roel,
    The solution you proposed - creating a Region on Page 0 that reads from a table and displays ONLY if the record count in that table is > 0 works PERFECTLY! I tried it out and I get the expected results.
    For anyone else that may wish to try this, what I did was to include a :P0_MSG_COUNT variable and on each of my primary pages (those used most frequently and those refreshed by child pages), I included a process to re-check the table so each time the page was refreshed, if there was a message, it would display.
    Something like this:
    select count(1)
      into :P0_MSG_COUNT
      from MSG_TABLE;I set this procedure to run every time the page is loaded or refreshed. This will check to see if something was posted after the user logged into the application.
    Thanks,
    Don.

  • Popup messages with forms9i

    Dear ones,
    Does Oracle Forms9i has a flexibility to display automatic message when any person access my forms?
    Like Hotmail service.....When we are online if any new mail comes it intimate dynamically by popup message. Can we do something with Forms9i that, if any person access my forms it should intimate me with a popup menu saying that this user is accessing the form?
    (regardless of which ever application you are in)
    thanks with regards.....
    Aijaz

    Aijaz,
    this could be done using Oracle Advanced Queueing and a Java Bean solution in Forms. We are working on a native integration of asynchronous messaging in a future version of Forms. Until then, this document points out the basic principles:
    http://otn.oracle.com/products/forms/pdf/275199.pdf
    Frank

  • Custom popup message

    Hi,
    Is there an easy way to have a custom popup message, I want to show some friendly messages for user in our custom connector. Also I want to know if it is possible to intercept the popup messages from the integration of Adobe Drive and CS, for example, before the message is showing, and modify it to a custom message?
    Thanks,
    Katherine

    Hi,
         Currently, you can't customize popup messages in this way, but from my perspective, I like this idea, to achieve this, some exception handling codes have to be modified in Adobe Drive core side, at the same time, maybe it is necessary to extend RemoteHandlerException and add a new handler for your connector to help Adobe Drive to retrieve the url of the related module resource swf which implements a specific interface defined by Adobe Drive, then your own message can be displayed in the resouce swf by Adobe Drive UI framework.
         It is a just rough thought, before adding this feature, we need to evaluate its value, hopefully we can support that in the near future
         thanks
    Gang

  • Disable the popup message 'new smartview client version available'  ?

    Anyone know how to cancel the popup message 'new smartview client version available' that appears when I make a Smartview Connection ?
    Thanks
    Steve

    You would have to set the properties forceClientUpgrade, forceClientUpgrade to No within the Provider Services Properties in the Data Source Manager.
    Please refer to Page 34 of http://download.oracle.com/docs/cd/E12825_01/epm.111/sv_user.pdf
    Cheers,
    Jasmine.

  • APEX 41 Field Help like popup message box

    I am using Apex 4.1
    And would like to use a similar popup message box to what Apex has when you click on a label that has help defined.
    For a list that is created in shared area I am wanting to use the userdefined area 1 as the message text to tell users a bit more about an icon option when they take their mouse over the field label.
    Is the popup message that is used for HELP something that can be called.
    I saw in previous posts about creating a separate form and calling it through a java script call. It can't still be that difficult in 4.1 since they have the field level help.
    Any help is appreciated.
    greG

    You're welcome, and thank you for providing further details of what you did.
    To make things look like this
    my_code := 'readable';in future, try surrounding your code with these tags like

  • How do you use user defined error messages in Value Help?

    Hi,
    I'm currently working on a Modifiable Value Help Selector in Web Dynpro Java, and I want to use a user defined error message when I validate the values entered by a user. Currently, it's returning its default error message ("Character <string> does not match...").
    Since the project requires a different error message, is there a way to override the default error message and use my defined error message instead?
    Thanks!

    Hi Angelo,
    I am not sure why message area is showing both Custom and inbuilt messages but you can try the following:
    i guess you must be using reportContextAttribute exception for showing Error messages on the input fields as well.in that case you can disable the message area so messages will appear only on the Context level ie; on input fields.
    For other messages apart from validation messages you can enable the message area before reporting the exception.
    make sure the boolean context variable which will be used for enabling and disabling the message area should have Readonly property set as true.
    I am not sure whether this is the only solution for this but you can try and see if it works.
    Siddharth

  • Why do I get a popup message in multiple languages requiring a shutdown and restart

    Why do I keep getting a popup message in multiple languages requiring a shutdown and restart?  Has been going on for a few months.  Because of the shutdown reports have been sent to Apple upon restart.

    After it restarted, did you see a dialog box resembling this one:
    If so, next time it occurs click Report...
    Before you send it to Apple, copy the text of the report. Paste it in a reply. Remove or obscure any personal information, should it appear.
    If problems continues to occur please determine if they also occur in "Safe Mode":
    Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
    Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
    To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

  • How to display a popup message in query (through process chain)

    Hi Gurus,
    I need your help.
    I have an input query that triggers an event (through a button) and runs a process chain.
    I would like to show a popup message to inform the user when the process chain is over.
    Using function modules I've been able to show popup messages in the workbench, but I want to display this message directly in Bex Analyzer 7.0.
    Thanks
    Gabbo

    Hi,
    I'm also looking for a solution to display a custom message in the Bex Analyser at logon.
    Using function module in the logon user-exit works but only when loggin to the workbench.
    I don't want to use SM02 (which works in both cases) because I need to display a variable message depending on the user.
    If someone has an idea, I'll really appreciate.
    Best regards and happy New Year to all of you.

  • Error Message Displaying the status Bar not like popup message

    Hi all,
    My Requirement is while creating  invoice if pricing conditons is repeted , system should thorough the error message like (uplicate Condition Types Are Not Possible  in the status Bar but Im getting poup Error message So I want to display the same message in the status Bar.
    Please Help me any one.
    Regards,
    Prathap

    I dont want to Display the popup, I want to Display in Status Bar as a Error Message.
    Like this .
    If I put  message type 'E' its Displaying popup message , MESSAGE ' Duplicate Condition Types Are Not Possible.' TYPE 'E'.
    If I Put messge type 'I' its Displaying in Status Bar .
    Regards,
    Prathap
    Edited by: giri prathap on Sep 13, 2011 12:35 PM

  • How to add Popup message as soon as user logins to portal system?

    Hi,
    I want to display a popup message as soon as user logs on to the portal system.
    Regards,
    Anagha

    Anagha Bhat wrote:
    what do you mean by  "iView with the popup as the entry point" ?
    I think this means, iView's 'Launch in new window' property should be accordingly set..

  • Hide "ORACLE FUSION MIDDLEWARE"  message in the front-end

    Hi ,
    I want to hide the "ORACLE FUSION MIDDLEWARE" message in the front-end forms layout.
    Please let me know which file I need to make change in the back-end and do I need to do any-thing from oracle admin also (any deployment or any check).
    Thanks & Regards,
    Harish

    After making some changes in my HTML page the layout is coming properly

  • To display a popup message alongwith ALV grid

    Hi Experts,
    I have a requirement where I need to display data using ALV Grid. Also, in case there are any errors encountered during the data extraction I need to inform the user about it by using either a popup message or a status message stating that he needs to check the error log. To display the error log I have provided a push button which will take the user to another screen where he can see all the errors encountered.
    Can anyone please let me know as to how to accomplish the task of displaying a status message alongwith a ALV grid display?
    Looking forward to your reply.
    -Warm regards,
    Prajakta K.

    use exception handling and pop up.........
    try following in grid..
    *--Exception handling
    ENDIF .
    ENDIF .
    WHEN 'EU' .
    READ TABLE gt_list INDEX ls_selected_row-row_id .
    IF sy-subrc = 0 .
    CALL FUNCTION 'ZPOPUP_CONV_CURR_AND_DISPLAY'
    EXPORTING monun = 'EU'
    quant = gt_list-paymentsum.
    ENDIF .
    ENDCASE .
    ENDFORM .

Maybe you are looking for

  • Creation of User defined field in Shopping Cart

    Hi All, We are using SRM 4.0, we have requirement to have MRP controller field on basic data screen of shopping cart(for services as well as material). This field will get transferred to R/3, based on which release strategy will get triggred. We have

  • HELP WITH HP DESKJET 3050 PRINTER WIFI!!!!

    Hi  We have a hp deskjet 3050 but we can't print. The blue light for wireless is flashing on and off. Can anyone help? 

  • Can Line Chart charts base renderer by category

    I have done some Googling on this, but frankly I'm not sure what to even search for. Here is what my boss wants: A month by month chart of sales showing revenue trends as well as projections for then next two months. He wants a solid line for actual

  • Motion Project --- AVI File

    What is best way to get a high quality AVI out of a Motion project? I have tried exporting a MOV then opening in QT to convert to AVI but the quality looks horrible. ANd if I select anything other than Cinepak compression (I tired DVCPRO50 and None i

  • Importing master role from ECC into portal throws derived role exception

    Hello, While uploading master and derived role from backend system into the portal I am getting the following exception. com.sap.portal.pcd.rolemigration.RoleMigrationException: Nested Exception. Failure to execute native function. Nested Exception.