Error restoring row currency - Need Help

Hi All,
Can anyone explain me how can I control the row currency???????
this is my situation:
when I navigate from page1 (with one read-only table - tableEmployees) to page2 (with a read-only table - tableSelectEmployees, with this columns: ps, eps, obs, obs2, where ps, eps and obs are the primary keys), selecting the "create" button, I need to insert a new row in tableSelectEmployees (page2) with this values (ps=2, eps=2, obs=null, obs2=null). -----> Until here everything works Fine :)
The Big problem is when I need to navigate from page2 to page3 (with a read-only table - tableAddEmployees with this columns: DOM_ID, id, meaning, where Id is the primary key). The tableAddEmployees has a Query like this:
SELECT *
FROM tableAddEmployees
WHERE NVL(tableAddEmployees.DOM_ID,0) = NVL(:1, 0)
AND tableAddEmployees.ID NOT IN (
SELECT obs
FROM tableSelectEmployees
WHERE Ps= :2
AND Eps = :3
AND NVL(obs, 0) = NVL(:4, 0))
When I select the new row created (Ps=2, Eps=2, null, null) in page 2 and go to page3 I get this error messages from the log window:
12:17:20 DEBUG (JhsActionServlet) -Request class: com.evermind.server.http.EvermindHttpServletRequest
12:17:20 DEBUG (JhsActionServlet) -Request URI: /App_S2-ViewController-context-root/S2PopUpObstaculos.do
12:17:20 DEBUG (JhsActionServlet) -Request Character Encoding: windows-1252
12:17:20 DEBUG (JhsActionServlet) -Parameter searchText:
12:17:20 DEBUG (JhsActionServlet) -Parameter event_Rollback:
12:17:20 DEBUG (JhsActionServlet) -Parameter event:
12:17:20 DEBUG (JhsActionServlet) -Parameter partial:
12:17:20 DEBUG (JhsActionServlet) -Parameter source:
12:17:20 DEBUG (JhsActionServlet) -Parameter eventValue:
12:17:20 DEBUG (JhsActionServlet) -Parameter rowKeyStr:
12:17:20 DEBUG (JhsActionServlet) -Parameter partialTargets:
12:17:20 DEBUG (JhsDataAction) -Executing action /S2PopUpObstaculos
12:17:20 DEBUG (JhsDataAction) -lastIssuedPageTimeStamp set to: 1156245440919
12:17:20 DEBUG (JhsDataAction) -Found existing searchBean for S2AltaSociais2UIModel
12:17:20 DEBUG (JhsDataAction) -Stored searchBean for S2AltaSociais2UIModel on request
12:17:20 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 0 has changed: old value=0 ,new value=
12:17:20 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 1 has changed: old value=0 ,new value=2
12:17:20 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 2 has changed: old value=0 ,new value=2
12:17:20 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 3 has changed: old value=0 ,new value=
12:17:20 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: executing query, bind parameter values have changed
12:17:20 DEBUG (JhsDataAction) -executing onRollback
12:17:20 DEBUG (JhsDataAction) -executing Rollback ActionBinding
12:17:21 DEBUG (JhsDataAction) -Restoring row currencies
12:17:21 ERROR (JhsDataAction) -Error restoring row currency for S2ObstaculosLevel1Iterator: JBO-25020: View row of key oracle.jbo.Key[2 2 null ] not found in S2ObstaculosLevel1Iterator.
12:17:21 ERROR (JhsDataAction) -Error restoring row currency for S2ObstaculosLevel1Iterator: JBO-25020: View row of key oracle.jbo.Key[2 2 null ] not found in S2ObstaculosLevel1Iterator.
12:17:21 ERROR (JhsDataAction) -Error restoring row currency for S2ObstaculosAssoc1Iterator: JBO-25020: View row of key oracle.jbo.Key[2 2 null ] not found in S2ObstaculosAssoc1Iterator.
12:17:21 ERROR (JhsDataAction) -Error restoring row currency for S2ObstaculosLevel1Iterator: JBO-25020: View row of key oracle.jbo.Key[2 2 null ] not found in S2ObstaculosLevel1Iterator.
12:17:21 ERROR (JhsDataAction) -Error restoring row currency for S2ObstaculosLevel1Iterator: JBO-25020: View row of key oracle.jbo.Key[2 2 null ] not found in S2ObstaculosLevel1Iterator.
12:17:21 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 0 has changed: old value= ,new value=278263
12:17:21 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 3 has changed: old value= ,new value=278263
12:17:21 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: executing query, bind parameter values have changed
12:17:21 DEBUG (JhsDataAction) -Storing table binding factory under key jhsTableBindings on request
12:17:21 DEBUG (JhsDataAction) -Forward set by parameter property returned: /WEB-INF/page/S2PopUpObstaculos.uix
--->If I want this null values why is JDeveloper changing the row currency?
When I select one row from page2 with values like this (2, 2, 278264, null) I get the correct response:
12:19:41 DEBUG (JhsActionServlet) -Request class: com.evermind.server.http.EvermindHttpServletRequest
12:19:41 DEBUG (JhsActionServlet) -Request URI: /App_S2-ViewController-context-root/S2PopUpObstaculos.do
12:19:41 DEBUG (JhsActionServlet) -Request Character Encoding: windows-1252
12:19:41 DEBUG (JhsActionServlet) -Parameter searchText:
12:19:41 DEBUG (JhsActionServlet) -Parameter event_Rollback:
12:19:41 DEBUG (JhsActionServlet) -Parameter event:
12:19:41 DEBUG (JhsActionServlet) -Parameter partial:
12:19:41 DEBUG (JhsActionServlet) -Parameter source:
12:19:41 DEBUG (JhsActionServlet) -Parameter eventValue:
12:19:41 DEBUG (JhsActionServlet) -Parameter rowKeyStr:
12:19:41 DEBUG (JhsActionServlet) -Parameter partialTargets:
12:19:41 DEBUG (JhsDataAction) -Executing action /S2PopUpObstaculos
12:19:41 DEBUG (JhsDataAction) -lastIssuedPageTimeStamp set to: 1156245581741
12:19:41 DEBUG (JhsDataAction) -Found existing searchBean for S2AltaSociais2UIModel
12:19:41 DEBUG (JhsDataAction) -Stored searchBean for S2AltaSociais2UIModel on request
12:19:41 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 0 has changed: old value=0 ,new value=278264
12:19:41 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 1 has changed: old value=0 ,new value=2
12:19:41 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 2 has changed: old value=0 ,new value=2
12:19:41 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: value of bind param 3 has changed: old value=0 ,new value=278264
12:19:41 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: executing query, bind parameter values have changed
12:19:41 DEBUG (JhsDataAction) -executing onRollback
12:19:41 DEBUG (JhsDataAction) -executing Rollback ActionBinding
12:19:41 DEBUG (JhsDataAction) -Restoring row currencies
12:19:42 DEBUG (JhsDataAction) -ViewObject S2DominiosLevel1: bind parameter values have not changed
12:19:42 DEBUG (JhsDataAction) -Storing table binding factory under key jhsTableBindings on request
12:19:42 DEBUG (JhsDataAction) -Forward set by parameter property returned: /WEB-INF/page/S2PopUpObstaculos.uix
Can anyone help me with this problem, please?
What can I do to solve this currency problem?
Please, I really need help on this!!!
I'm using JDeveloper10.1.2, struts, uix pages.
Thanks,
Atena

Can anyone give some help here?

Similar Messages

  • I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help?

    I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help? I am not that technically inclined and really simple terms  are appreciated.

    Try downloading the songs from a different device. If you are doing it from your iOS device, try form your computer.

  • Help IP restore error 21 (DFU ) running DFU  and error 1600. I need help

    I restore error 21 ( DFU ) >>> running DFU and error 1600. >>> I need help ?

    ip 4, 32g is me. I running FW up ios 6.0 >> error 21 ( DFU ) >>  mode DFU  >>>> error 1600 ( recovery mode )

  • Hello, I have a problem on my iPhone every second turn on and off I mean it shows the apple and off and again shows the apple icon and off and tried to Restore and it hangs on my iPhone and then waits Error 3004 Please I need help please!

    Hello, I have a problem on my iPhone every second turn on and off I mean it shows the apple and off and again shows the apple icon and off and tried to Restore and it hangs on my iPhone and then waits Error 3004 Please I need help please!

    Resolve communication issues
    Related errors: 17, 1004, 1013, 1638, 3014, 3194, 3000, 3002, 3004, 3013, 3014, 3015, 3194, or 3200.
    These alerts refer to gs.apple.com, say "There was a problem downloading the software," or say the "device isn't eligible for the requested build."
    I would guess your iphone has been hacked ( jailbroken ) ring any bells ?

  • Recent wipe of Mac HD.     Reinstall won't allow CS5 .  Quote error 213.5. Need Help

    I recently had my Mac software reinstalled but Adobe Photoshop will not reinstall siting error 213.5.  Need help.

    Hi Nicintime101,
    Please go through the forum link below and  check.
    https://forums.adobe.com/thread/1256895?tstart=0
    Regards,
    Anand

  • It says my ipod 4th gen could not be restored an unknown error occurred OxE8000001. Need help

    could not be restored an unknown error occurred OxE8000001. Need help

    Try here:
    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • Ipod touch (2G) stuck in "restore" mode.  Need HELP please

    I have contacted Apple support several times since Friday and was just hung up on by an extremely rude lady in customer support. I am really frustrated and just trying to get my 5 yr old little boys ipod touch working again.
    The situation is that our son's old computer crashed. So we have a newer computer set up for him. Reinstalled itunes on it. Called Apple on Friday, really nice rep gave me several instructions for transfering purchases, making sure everything was up to date and turning home sharing on. Did all that, got off the phone with him and then the computer tells me that the ipod needs and update.
    Clicked ok, and update starts going for a few minutes.....then get an error message that says that the ipod is basically stuck in "restore" mode and needs to be reset to factory settings. It won't let me do anything to the ipod. It won't restore, reset, anything. Just shows a picture of usb cable and says to connect to itunes.
    Connect to itunes and it keeps giving me say error message.
    Will someone please help me? Apple support sure won't.

    Did you try to connect in recovery mode, to start the restore process again? Connecting in Recovery mode is explained here: http://support.apple.com/kb/HT1808
    Also delete the ipod ipsw firmware file on your computer, to make iTunes download a new copy to restore from. Depending on your OS, this file can be found here:
    XP: C:\Documents and Settings\[username]\Application Data\Apple Computer\iTunes\iPod Software Updates
    Vista and 7: C:\Users\[username]\AppData\Roaming\Apple Computer\iTunes\iPod Software Updates
    If you're getting error numbers, take a look at this article: http://support.apple.com/kb/TS1275

  • IPhone 5 restore boot loop, need help!?

    okay so here is the deal.
    I am travelling at the moment so my iphone is VERY important, yesterday i attempted to update my phone from 6.0.1 to 6.0.2. i plugged in my iphone 5 to my macbook pro and let it download and update.
    sadly it failed and now my iphone 5 is stuck in a recovery loop! as i am currently in the moutains there is no phone repair shops around that i can take it too so i need to figure out how to get it out of this recovery loop!
    currently all i have is the connect to itunes logo on my phone.
    i have tried connecting it and restoring the settings but it fails and i get error code (-1), (1600) or (11) normally it is (-1)
    i tried removing the sim card and reinstalling the software but no luck.
    ive been googling this for the past 5 hours and have got nowhere!
    ive attempted programs like tinyumbrella and Recboot but neither works.
    i am really stuck and need help ASAP!!

    Somebody please help!
    ive spent over 10 hours trying to fix this and being in the canadian mountians i have no other help
    need some advice please!!

  • Installation of Photoshop update 13.1.2 for creative cloud fails with error code U44M1P7 I need help

    I need help installing update 13.1.2 for Photoshop creative cloud, installation fails with error code: U44M1P7. Could someone please help?

    Sorry to bother you.
    I could find the answer after searching previous posts about this language problem.
    Had to change my language in AAM profile and then download PS CS6 again ( english version ).
    Then open the actual Photoshop and in preferences > interface you can besides the Dutch also option for English.
    restart application and Voila.
    Greetz, Jeroen

  • Windows phone error code 80188301,. please need help

    i am getting an error while updating my windows phone.  windows phone error code 80188301,.
    please need help

    Hi,
    If issue persists after using the solutions provided by Aman Raizada, then I would suggest you ask the question in Windows Phone support forum:
    http://www.windowsphone.com/en-US/how-to/wp-support
    Regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Error encountered in DocumentInstance, need help

    Post Author: usaitconsultant
    CA Forum: JAVA
    Hi Ted or to anyone encountered this, I Need help! Im trying to open a deski document to pass parameter and set report format then schedue to run. In this line:  DocumentInstance documentInstance = reportEngine.openDocument(infoObject.getID()); Im encountering this error message:Entering getRASConnection()ExceptionError Message: No server was available to process the request. Please try again later. (Error: RFC 00101) Any idea? Though, RAS  server is running. I hope you can help me on this.Thank you. 

    Post Author: usaitconsultant
    CA Forum: JAVA
    Hi Ted,I tried to switch to other BO XI server which infoView is working with pass parameter using my user ID. But when I tried to run my application. The same error I encountered. Though, the pdf was created but with no parameters so no records was displayed in the pdf except for header,footer, and other static data.  See error below, Im just wondering which server/configuration should I checked if down/disable? Please advise. "Unable to find servers in CMS <Server path> and cluster @<Server path>
    with kind dpscacheFullClient and extra criteria null. All such servers
    could be down or disabled by the administrator. &#91;RASLIB9006&#93;"Please advise, I hope you can help me again here. Thank you.  Stacktrace:documentInstance = reportEngine.openDocument(infoObject.getID())Entering getRASConnection()com.businessobjects.rebean.wi.ServerException: No server was available to process the request. Please try again later. (Error: RFC 00101)    at com.businessobjects.rebean.fc.internal.ras21.XMLviaRAS21Encode.newSession(XMLviaRAS21Encode.java:972)    at com.businessobjects.rebean.fc.internal.ras21.RAS21ReportEngineComAdapter.openDocument(RAS21ReportEngineComAdapter.java:87)    at com.businessobjects.rebean.fc.internal.ReportEngineImpl.openDocument(ReportEngineImpl.java:249)    at edu.uillinois.boxir2.BOXIR2ReportEngine.testRunReportWithParameters(BOXIR2ReportEngine.java:718)    at edu.uillinois.boxir2.BOXIR2ReportEngine.main(BOXIR2ReportEngine.java:72)Exception encountered during setting parameter values. @Wed Apr 30 14:47:21 CDT 2008Error Message: No server was available to process the request. Please try again later. (Error: RFC 00101)Caused by: ErrorFailureUnable to find servers in CMS <Server path> and cluster @<Server path> with kind dpscacheFullClient and extra criteria null. All such servers could be down or disabled by the administrator. &#91;RASLIB9006&#93;    at com.crystaldecisions.sdk.occa.ras21.RASConnection.a(Unknown Source)    at com.crystaldecisions.sdk.occa.ras21.RASConnection.<init>(Unknown Source)    at com.crystaldecisions.sdk.occa.ras21.RASConnectionFactory.a(Unknown Source)    at com.crystaldecisions.sdk.occa.ras21.RASConnectionFactory.getRASConnectionObjectId(Unknown Source)    at com.businessobjects.rebean.fc.internal.ras21.XMLviaRAS21Encode.newSession(XMLviaRAS21Encode.java:958)    ... 4 moreCaused by: com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$AllServersDown: Unable to find servers in CMS <Server path> and cluster @<Server path> with kind dpscacheFullClient and extra criteria null. All such servers could be down or disabled by the administrator.    at com.crystaldecisions.enterprise.ocaframework.aa.int(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.int(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.o.try(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.p.a(Unknown Source)    at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(Unknown Source)    ... 9 more  

  • My IPhone 4 has been jail broken and I can't restore it I need help

    I Need Help Restoring My Jailbroken iPhone 4

    More on jailbreaking:
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/what-is-ja ilbreaking
    Note that my links to other pages may take you to my organization's page and should not be taken as an endorsement from Apple.

  • I can't activate my desktop account. Error: E_AUTH_NOT_READY. Please, need help!

    I instaled my desktop Adobe Digital Edition, but I'm failing in activate it with my Adobe Id. The error code is:   E_AUTH_NOT_READY
    Please, need help!

    For this problem, you need to deauthorize and authorize ADE again.
    Launch ADE
    Help -> Erase authorization.
    ADE will be deauhorized.
    Now again AUTHORIZE ADE
    Help-> authorize computer.
    Error will be fixed !!

  • ITunes Error Message. Still need help. Please.

    I still haven't been able to use my ITunes for about two months. I need help to fix the problem. Here's what it says when I try to start ITunes:
    Microsoft Visual C+ + runtime library
    Runtime Error!
    Program: C:\program files\itunes\itunes.exe
    This application has requested to terminate in an unusual way. Please contact the application’s support team for more information.
    If anyone can help me with this I would greatly, greatly appreciate it. Thanks.
      Windows XP  

    Have you tried un-installing iTunes, downloading the program again from Apple, and re-installing?
    It's always worth a try, as it should help you clear off anything causing the problem and start again.

  • Timer, Threads, TableModels, and adding a row. Need Help

    Ok so essentially my problem is i guess pretty simple. Skip this next part to get to the problem.
    My project: I'm simply building a bell server, pretty simple. Plays a sound/recording at a specific time. It also however, grabs the times off an RSS feed; additionally it plays announcements and bells, it also automatically recalculates times if you adjust one, it ensures that all bells/announcements do not overlap; (theres some other qualities but they don't matter).
    My problem: I have essentially a few different classes in my project however there are only 2 that are giving me great amounts of grief at the moment. First is my main, it calls/sets up the GUI using a JFrame, I am using DefaultTableModel as my table model for a regular JTable. The main also creates an object called SchedManager, this object is what does all of the organizing, keeping the times up and such; the SchedManager object is also a timer task which is scheduled to run every 5 seconds, every time it runs it does a few things but primarily, it checks its Vector of SchedItems to make sure none overlap and such, after that, it calls a public method of TestMain's. This method simply calls a public method of SchedManger's that returns a 2D Object array of the items, then it attempts to update the tables data by using a quick method that updates all the tables data, however obviously I may need to add a row, so I have it add a row if necessary. This is my problem though, when I call model.addRow it blows up with a nullPointerException. Heres a simplified version of my code, all this code is attempting to do is to add a row every time SubClass is ran:
    TestMain.java :
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TestMain extends JFrame{
        protected static Container container;
        private static JTable table;
        private static Vector data = new Vector();
        private static Vector columns = new Vector();
        public static DefaultTableModel model;
        private static SubClass sub = new SubClass();
        public static TestMain tm;
        public TestMain() {
         container = this.getContentPane();
        private static void createAndShowGUI(){
         JFrame.setDefaultLookAndFeelDecorated(true);
         JFrame frame = new JFrame("Hell's Bells");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         columns.add("Test");
         columns.add("Test2");
         GridBagLayout gridbag = new GridBagLayout();
         JPanel contentPane = new JPanel(gridbag);
         container.setLayout(gridbag);
         GridBagConstraints gbc = new GridBagConstraints();
         gbc.fill = gbc.BOTH;
         gbc.gridheight = 48;
         gbc.gridwidth = 60;
         gbc.gridx = 2;
         gbc.gridy = 13;
         gbc.weightx = .8;
         gbc.weighty = .6;     
         model = new DefaultTableModel(data,columns);
         table = new JTable(model);
         gridbag.setConstraints(table, gbc);
         container.add(table);
         JButton update = new JButton("update");//Creates a new button update
         ButtonListener updateButtonListener = new ButtonListener();//creates a new button listener
         update.addActionListener(updateButtonListener);
         container.add(update);
         frame.setContentPane(container);
         frame.setLocation(200,100);
         frame.pack();
         frame.setSize(new Dimension(750,800));
         frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
        public static void updateTable(){
         model.addRow(new Object[]{"test"});
        static class ButtonListener implements ActionListener{
         int value = 0;
         public void actionPerformed(ActionEvent e){
             String button = e.getActionCommand();
             if(button == "update"){
              System.out.println("TEST");
              model.addRow(new Object[]{"test"});
              table.setValueAt("TEST",0,0);
              if(value==3)
                  table.setValueAt("TEST",0,1);
              if(value==4)
                  table.setValueAt("TEST",3,0);
              if(value==5)
                  table.setValueAt("TEST",2,1);
              value++;
    }SubClass.java :
    import java.util.*;
    public class SubClass extends TimerTask{
        public static TestMain tm = new TestMain();
        public SubClass(){
         TimerTask task = this;
         Timer manager = new Timer();
         manager.schedule(task,0,5000);
        public void run(){
         //tm.model.addRow(new Object[]{"test"});
         tm.updateTable();
    }Does it have something to do with JFrame? because using almost identical code but using JPanel it works fine.
    All help is greatly appreciated!
    Thanks In Advance,
    Airplane

    Whoops, sorry bout' that. Heres the error I receive:
    Exception in thread "Timer-0" java.lang.NullPointerException
            at TestMain.updateTable(TestMain.java:81)
            at SubClass.run(SubClass.java:17)
            at java.util.TimerThread.mainLoop(Timer.java:512)
            at java.util.TimerThread.run(Timer.java:462)Heres the printStackTrace(); when i put the thread in a try/catch:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at TestMain.createAndShowGUI(TestMain.java:39)
            at TestMain.access$000(TestMain.java:7)
            at TestMain$1.run(TestMain.java:80)
            at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
            at
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)        at
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)        at
    java.awt.EventDispatchThread.run(EventDispatchThread.java:110)Regards,
    Airplane
    Message was edited by:
    Airplane

Maybe you are looking for