This is what I have now:
- Object A record is created.
- Process fires upon record creation of Object A and launches a flow. The record ID is stored in a flow variable.
- Assignement element stores values from Object A record in variables.
- Get element looks up records in Object B and the criteria is if field 1 (Obj B) and field 2 (Obj A) matches.
- Create element to create records in Object C with data from Obj A & B.
When I create a record in Obj A, I get the following error:
The process failed.
An error occurred when executing a flow interview. Error ID: 1886283143-48284 (-442908980)
Thanks in advance !
41 answers
So let's pretend that your input variable (PaymentRecord) is entirely not working. To get the member, you need the Name__c field from that payment record. Can you create a separate input variable that captures only the name, and pass that field into the variable in your process?
By the way, matching by name is normally not a safe method. You'd usually want to match by a unique value like an ID - but that's a story for another day.