Autocommit and non persistable entities

0
Hi, if I have a one to one/ one to many association between a non persistable entity and a persistable entity, will committing the non persistable object autocommit the persistable object associated to it?
asked
1 answers
0

Hi Phoebe

If I understand your question correctly the answer is no. 

 

Reason being that a non-persistable object only exist in memory even if you try and commit it. The commit will only work if you create the persistable entity and transfer your needed data from the non-persistable. The you can commit the persistable entity. You will almost defintly need microflows for these steps.

answered