Saving data and lists

0
hi, I have created a patient details and blood test having association with 1 to many. And created a page In the microflow 4 And in the form thier is an save button for that i have called a microflow   After saving data ,when i clicked on view report showing same data  if a add new patient details its showing same data twice  and if i refresh page will become empty
asked
1 answers
0

Hi Anupama,

Is it possible that you create an object of bloodtest when you open the page and then another one in the datasource microflow?

The fact that they dissapear is because you created the objects, but never commit them. In the save microflow you retrieve the objects from the database and commit that list, however the bloodtest you just created is not in the database yet, since it hasn't been commited to the database yet.

 

In addition when opening the page where you fill in the bloodtest information, I would create a new bloodtest object. I would than pass the bloodtest object to the page, instead of the patientdetails.

 

Hope this helps!

answered