Hello,
I have a object member and payment, that is a multiple allowed child.
For convenience and mass editing purposes, I created a object helppayment (with the same attributes as payment, but with peer-to-peer relationship to parent member), where member is selected via dropdown and then other values are edited, too.
The problem is, that I don't see these helppayment objects under the members, for there is a peer-to-peer relationship between member and helppayment.
So I created a process to copy the data from the helppayment object to the payment object, so that the relationship between member and payment was established.
FIND ALL helppayments
CREATE payment FOR EACH helppayment WITH payment.member = helppayment.member, payment.amount = helppayment.amount ... and so on.
Questions:
1) Is there a better and faster method for a child object (payment) with selecting the parent (member) via drop down and establish a relationship between these 2 objects?
2) This process above has to be started manually, can I trigger this process when the helppayment object is saved?