Skip to main content
When a record in Object A is created, I need it to find a record in Object B if a field in A matched with a field in B. Then I want to store the ID of the record in Object B and create a record in Object C. I will need the ID of the record in Object B and data from Object A to update fields on the record being created in Object C.

 

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
  1. Apr 14, 2020, 7:51 PM
    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. 
0/9000