How to expose the id of the master to the detail
I have a master view say Employee and a detail view say EmpJobs which is a full join of both employee and jobs so that i get all the employee id and jobs id in one single view.
My problem is that when the employee id already exiting in Employee table the detail view shows me all the pairs of employee id and jobs id.
But in case of new insert the EmpJobs does not show me any values. Once i finish committing the data in employee table which is the master, it gives me all the pairs if i reload the page again. But i want to show all the pairs when ever create insert is pressed on the employee table.
The id is generated using oracle.jbo.server.uniqueid.UniqueIdHelper.nextId
Is There a way to do it?
Thanks in advance
I am using jdeveloper 11g release 2