Errors from DB are not cleared

Hi, I'm Using jdev11.1.1.2
If for some reason a db error gets displayed, e.g "Constraint "PLIST_NOM_IDX" is violated during post operation "Insert" using SQL statement ..." even if i change the wrong data with a correct one, the error still shows up. The rollback button doesn't help either.
I know I must create some business validation rules to cover the database ones, but is there a way this db errors do be cleared ?
Thank you

Would you please give the forum a bit more to go on...background...what technology stack you are using...under what circustances EXACTLY are you getting these errors.
I think you will receive many more responses if you give this information. It may seem intuitively obvious to you what you have to do to make these errors happen, but to me, you could be doing ANYTHING AT ALL.
Edited by: Michael C. Fons on Mar 25, 2010 5:51 AM

Similar Messages

  • HT1420 I want to authorize my PC to download my purchased items to my IPAD from itunes.  The instructions are NOT clear.

    I need to authorize my PC to download my purchased items to my IPAD.  The instructions are not clear (to me anyway).  Open itunes where (PC or IPAD), I do not see an option to "authorize computer" or maybe in this case and "advanced button".  Frustrated and confused buy this  

    Only computers nees authorising for your account, iPads (and iPhones and iPods) don't need authorising. On your computer's iTunes you should be able to authorise it via the Store menu at the top of iTunes - with iTunes 11 on a PC pressing Alt-S should get the Store menu to appear
    e.g. (screenshot is from a Mac, but it should be similar on a PC)

  • Lov returned items are not cleared in Jheadstart 11.1.1.4.26

    We are using Jheadstart 11.1.1.4.26 with Jdeveloper 11.1.1.4
    HR Testcase:
    Form UI
    Lov on the Manager_FirstName
    returns
    ManagerId -> ManagerId
    FirstName -> Manager_Firstname
    LastName -> Manager_Lastname
    1: Select a manager from the LOV popup. ManagerId,FirstName,LastName are filled
    2: Clear the Manager_Firstname from the Lov inputext. Returned Values should be automatically cleared (at least they used to in previous version). They dont in this version.
    I am sending a testcase to [email protected]
    Regards

    Thanks for looking at the testcase.
    I emailed you a new one with screenshots of the steps required to reproduce it.
    Conserning the previous test case I have sent, you are correct. I made a mistake by returning the
    ManagerId back to ManagerId where it should be EmployeeId copied back to ManagerId.
    However the items are not cleared in my Environment if you set a value from the LOV popup and then clear the value of the textinput. (No saving should be performed between these two steps).
    If you perform a save between these two steps the items are all cleared.
    Are you using Jdeveloper 11.1.1.4 ?
    Regards
    Vasileios
    Edited by: spooker on 6 Μαϊ 2012 10:03 πμ
    I am attaching another testcase with steps here. This is different from the one I emailed you but illustrates the same issue.
    It is as if the item the Lov is based on does not autosubmit when it loses focus (click somewhere in the page)
    steps to reproduce word document --> http://herosh.com/download/10867921/testcase.doc.html (just click the green download link)
    testcase--> http://herosh.com/download/10867918/HR.rar.html (just click the green download link)
    Edited by: spooker on 6 Μαϊ 2012 11:05 πμ

  • Error - Some objects are not available to your user profile...

    Hello,
    It is for BI 4.1 on Windows. We have a connection called CON1 pointing to DB1. It uses UNIV1 All reports were working fine and we were able to refresh it as well.
    Now the CON1 is changed to point to DB2 and we are now getting following error - "Some objects are not available to your user profile. You cannot refresh this Query. See your Business Objects administrator to request rights".
    If I create a new report using CON1 and the it works fine. Only the old reports are still causing issue on refresh. I tried with Admin account as well and same issue.
    The CON1 is still CON1 and universe UNIV1 is still using CON1. Just the content was edited from DB1 to DB2 in CON1. If we create a new report then no issue.
    Can anybody advice if something needs to compiled. Your help will be greatly appreciated.
    Regards,
    SS

    Your old reports are still pointing to same connection. Remember the DSN has been pointed to use another Database. The records and entries will be different. In addition as the records or object mapping have changed for these reports. Hence this would be a very normal behaviour.
    Create a new connection named CON2 or something like that to point DB1 as per your requirement. This way your original reports would work.

  • Subelements of a disabled JMenu are not cleared

    Hi All!
    Subelements of a disabled JMenu are not cleared from screen when the frame is repainted.
    Please go thru the sample code below & comments following code:
    //Subelements of a disabled JMenu are not cleared from screen
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    class MyFrame extends JFrame implements ChangeListener {
    JMenuBar menuBar;
    JMenu menu;
    JTabbedPane tp;
    MyFrame() {
         super();
         addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e){
                        System.exit(0);
         setTitle("JMenuItems of a JMenu are not cleared if JMenu is disabled.");
         setSize(600, 500);
         createMenu();
         JPanel panel = new JPanel();
         tp = new JTabbedPane();
         tp.addTab("One", new JLabel(" One will go here "));
         tp.addTab("Two", new JLabel(" Two will go here "));
         tp.addChangeListener(this);
         panel.add(tp);
         getContentPane().add(BorderLayout.CENTER, panel);
         getContentPane().add(BorderLayout.NORTH, menuBar);
         private void createMenu()
              menuBar = new JMenuBar();
              JMenu fileMenu = new JMenu("File");
              fileMenu.add(new JMenuItem("New"));
              fileMenu.add(new JMenuItem("Open"));
              fileMenu.add(new JMenuItem("Close"));
              menuBar.add(fileMenu);
              menuBar.add(new JMenu("Edit"));
              menuBar.add(new JMenu("Search"));
              menuBar.add(new JMenu("View"));
              JMenu menuProblem = new JMenu("Menu");
              menu = new JMenu("Child Menu");
              menu.add(new JMenuItem("Menu Item 1"));
              menu.add(new JMenuItem("Menu Item 2"));
              menu.add(new JMenuItem("Menu Item 3"));
              menuProblem.add(menu );
              menuBar.add(menuProblem);
         public void stateChanged(ChangeEvent e)
              int index = tp.getSelectedIndex();
              if( index == 0)
                   menu.setEnabled(true);
              else
                   menu.setEnabled(false);
    public class MenuDemo
         public static void main(String args[]) {
              MyFrame frame = new MyFrame();
              frame.setVisible(true);
    Comments:
    Use JDK 1.3 and run the application. When user clicks on Menu and clicks on Child Menu, sub elements are shown and if user clicks on Tab Two, Menu Items are not cleared because it's parent menu is disabled. The same application works fine in Jdk 1.4.1.
    I am searching for BUG ID from Sun's bug database. If any one of you have a work around solution for this problem or bug id, kindly post the same at the earliest.
    Thanks in advance,
    Sandesh

    HI
    so theres a price difference so what you do is create a GL called the price difference GL if you have one thats  fine make sure you post the price difference into the price difference GL account created you can create GL account in FS00, the other way is to set a tolerance limit set the tolerance limit to 10%.
    hope this solves your problem
    regrds
    Vignesh

  • Error: Common entries are not permitted for plan queries and input queries

    Hi,
    I have a 2 selections in the column struct:
    1. year = 2005, version = actual
    2. year = 2006, version = plan, marked as data can be changed using user entry or planning function
    row has posting periods from 1-12
    in the workbook I have inserted this query in the workbook in analysis grid. it runs good.
    now i added a button and assigned planning function to it. this planning function copies 2005, actuals to 2006, plan.
    when i execute the workbook and hit this button, it gives me following error:
    "Common entries are not permitted for plan queries and input queries"
    please can anyone provide me assistance with this issue.
    thanks,
    sam

    when i go to diagnosis it displays following:
    Diagnosis
    InfoProvider ZIP_PLAN2 must be described in this application by both a plan query and by a input-ready query, which is directly defined on the InfoProvider ZIP_PLAN2.
    System Response
    This is not permitted.

  • Error RSM006 "Attributes are not yet maintained"

    Hello everyone, I have had a problem with two infopackages,  one of them has the 0COORDER_TEXT datasource and the other 0COORDER_ATTR datasource. When I run the process chain with these infopackages, I have the error RSM006 "Attributes are not yet maintained", if I try to change these infopackages with the RSA1 I have the same error.
    Do you have any suggestion to solve this problem?
    Thank you very much.
    Best Regards
    Maximiliano Valin

    Thank you, I check your recommendation and I found everything ok, the 0COORDER is ok and active, and the tranfer rules are ok and active too, I don't know what other thing could be the problem.
    This is the help message that appear when the error happens.
    Attributes are not yet maintained
    Message no. RSM006
    Diagnosis
    The attributes have either not yet been created or activated.
    The data cannot be taken from the source system without maintained attributes. Therefore, this data request is not possible.
    Procedure
    Maintain the attributes for this master data-InfoSource in the Administrator Workbench and then activate them.
    Thank you for everything.

  • Why some photos are not clear on Facebook?

    I have posted some snap  clicked from my DSLR on, Facebook. But when I view there! they are not clear.

    I have the same problem: I just added an new project to Aperture, but it isn't shown in the list of projects on the AppleTV. Even not in the "Last Week" one ... All other (or even most of them - I cannot count them - it is to much of them ... nicer sorting would be useful) are properly shown in the list...
    So it is not a networking problem or so ... Any ideas ?

  • Cache, cookies and history are not clearing when I close Firefox even though they are set to do so and have been for ages

    I recently had an update (or upgrade?) for FF 16. Today (and I believe the update was done a day or two ago?) my cache, cookies and history are not clearing when I close FF. Also, certain links are not working. Not links for full web pages but for site pop-ups (like the smilie window on a message board). They worked a few days but are not working today. I click the link and nothing happens. I noticed the problem with the cookies not clearing for a few weeks ago but it was only on one site not all sites which is what's happening now.
    My apologies if that's a little confusing. Thanks!

    At any rate, have you tried running Firefox in Private Browsing mode? This will ensure that no infromation from your session is saved once you exit Private Browsing mode and/or exit Firefox.
    You can set Firefox to always start in Private Browsing mode: https://support.mozilla.org/en-US/kb/private-browsing-browse-web-without-saving-info#w_how-do-i-always-start-firefox-in-private-browsing

  • Reg : "Error multiple Receivers are not allowed for Synchronous calls"

    Hi All,
    Can somebody tell me why I am getting this error "Error multiple Receivers are not allowed for Synchronous calls" when I am using Synchronous Soap Request to WebService and the response from webservice is being sent to multiple receivers which are Business services based on Receiver determination condition(Services W/o Party).

    Hi , If you are simply looking up data (and not updating tables ) using RFC you can use RFC Lookup APIs to create a java mapping
    The source message has to be a RFC request message interface and target should be RFC response message interface.
    Also you can use three step mappings in a single interface mapping.
    1. from your request message to RFC request message mapping
    2. java mapping which will do the lookup and give you rfc response back
    3.rfc response to your target response mapping.
    PS: RFC lookup can be used if there are not may hierarchy in the RFC Response structure. (i.e. may be 3 or 4 level nesting permitted)
    To help you further
    The following is a link which gives you access to a ready made source code. you just need to compile it and create a jar and import the mapping in imported archive
    http://knowhowsapxi.synthasite.com/rfc-loolup.php
    Edited by: Progirl Progirl on Oct 31, 2008 1:33 PM

  • Error: Admin users are not allowed to have override security

    In shared services, I provisioned the users FDM "Provision Manager" access. When I log on to FDM application, I see all those users have administrator privileges. When I tried to change the security level, it is throwing an error
    Error: Admin users are not allowed to have override security
    How can I create users who are not as admin in FDM? The user guide dont seem to help me much in this regards.

    All you need to do is make sure there role is set to an Intermedate role 1-9 and not Administrator. I would suggest you do the following.
    1) Log into FDM as the main admin user.
    2) Go to user maintenance and delete all users who are not meant to have adminstarator access but can still access everything like admins.
    3) Go into Shared Services and check that these users are provisioned for FDM with one of the Intermediate roles only.
    4) Once confirmed re-add these users back in the FDM user maintenance screen by selecting them from the new user dropdown and give them the appropraite location access.
    5) Log off FDM as the admin user.
    6) Log in as the intermedaite user and tes tthe access

  • I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    Hi howardw93055634,
    Please tell me where you are seeing this error message. It's not one that I'm familiar with as being related to Acrobat or Reader. Is it coming from your online fax service, or does it appear when you try to open the PDF file that you received in Acrobat or Reader?
    Best,
    Sara

  • All my purchased song from iTunes are not playing complete (iPod and computer with Windows Vista), unexpectedly stops and continues with next song. What am I doing wrong?

    All my purchased song from iTunes are not playing complete (iPod and computer with Windows Vista), unexpectedly stops and continues with next song. What am I doing wrong?

    Are the songs playing whole in iTunes? if not download them again.
    else read this Apple Support Article on your problem
    Have a nice day!

  • Images on websites are not clearly displayed

    Dear All,
    The last month or so i have noticed that images on websites are not as clear as they used to be. Seem to be fuzzy. This is not a great help when im buying cosmetics or clothes as the images are not clear enough to see what im purchasing. Its not just one website its all.
    Ive not changed anything on my laptop that i know of, its all running as when i purchased it.
    Does anyone have any suggestions for me to try?
    Lesley

    Hi
    Its not a notebook malfunction. There is all ok with the hardware. I assume you have changed something in the IE settings or the images on the websites are really blurred.
    You can try to check the settings in the IE option View. Check if the text size is set to medium and the encoding to Unicode (UTF8)
    What you can do also to reinstall the IE.

  • I updated my Iphone4S this week to the newest IOS 7.1 and now everyone who calls me says the calls are not clear, muffled.  Is there something I can do to clear this?  4 people in 4 different states that called me all said the same thing.

    I updated my Iphone4S this week to the newest IOS 7.1 and now everyone who calls me says the calls are not clear, muffled.  Is there something I can do to clear this?  4 people in 4 different states that called me all said the same thing.

    Settings > General > Reset > Reset Network Settings
    Contact the carrier to troubleshoot.

Maybe you are looking for

  • Need suggestion on image storing in SQL Server

    Hi All,   I want to store image into a column. I would like to know which datatype is the best to store image and which file format(bmp,jpg,png,...) is the best to store and to retrieve.We are using SQL Server 2005 Enterprise Edition.   Waiting for v

  • Cancelling a Confirmed TO with HU for an Outbound Delivery

    We are using Handling Unit Mangement and Warehouse Management . Each Piece has a HU Number and we created an outbound delivery with 5 items. 5 Transfer orders are created  and  4 transfer orders are confirmed for 4 items and we had only one unit of s

  • Java.lang.NullPointerException in MQ adapter in Production Environment

    Hi, My Process like Send the request to ResultsAAA or ResultsBBB (MQ queue) and Dequeue the msg req from the queue(ResultsAAA OR ResultsBBB) basing on the request request goes to either ResultsAAA or ResultsBBB and executing the bpel and we are confi

  • Forex valuation picking up YTD amounts only

    Hi Experts, We have configured For ex valuation in our Dev system and it looks like only the amounts for the current year 2010 are being picked up for valuation for a G/L balance account. The same has been configured in Quality too and it is working

  • Mac Mini - no power

    I have a Mac Mini (G4 model) that won't power up. Everytime I press the power button, nothing happens - no fan, no chime, no power light, nothing. It's acting like it isn't plugged in (I checked that first). I've tried replacing the power adapter (th