Hi Team,
I am using JDEV 12.2.1.2.0 and I am facing the below issue.
oracle.jbo.RowNotFoundException: JBO-25020: View row with key oracle.jbo.Key
I am calling a procedure to create a duplicate record. I am using a pop up to confirm whether he would like to copy records when he he says yes, via managed bean i am calling a stored object to do the processing and navigate to the detail fragment to show him record.
The above logic is working fine and as expected with no issues.
However, the issue arises when i search for a record via af query and then user presses a button to confirm to copy, just before it navigates it throwing the above error.
I am using the code as below.
setCurrentRowWithKey(keyDepartment.toStringFormat(Boolean.TRUE));
Here keyDepartment is the primary key i get post calling the stored object. I have already tried calling below functions before navigating and none of it helped.
iteratorbinding.executeQuery(); iteratorbinding.getViewObject().clearCache();
Could anyone please advice how it can be fixed.
JayArora