Hi
we have a primary entity called "Accounts"
this have a child entity "Orders" with relationship as 1:N
which means, one account can have multiple orders.
Orders have a structure like (order id, order qty, order price) etc
we have created a model driven app to create accounts.
In creation form, there is a tab we added for orders. what I have observed is that, we have to create an account first and then save it, only then we are able to add orders. is it not possible to add everything in one go and save at last?
the issue is, we have a flow designed which gets triggered as soon as a new account record is created. so because of above issue, the flow is triggered even before orders are added to that account.