function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Venus Clarke 6Venus Clarke 6 

Help with Flow Error

Could someone help me understand what this means. 

FAST LOOKUP: Get_Opportunity_Region
Find all Opportunity records where:
Id Equals {!recordId} (null)
Store those records in {!OpportunityRecord}.
Save these field values in the variable: Id, Account_Region__c, OwnerId
Result
Failed to find records.

FAST LOOKUP: userQuery
Find all User records where:
Id Equals {!OpportunityRecord.OwnerId} (null)
Store those records in {!ownerRecord}.
Save these field values in the variable: Id, Region__c
Result
Failed to find records.
ANUTEJANUTEJ (Salesforce Developers) 
So the Id Equals {!recordId} (null) this means the cause is that the recordId variable is empty.

The same is the case with the below error, you can try checking https://trailblazers.salesforce.com/answers?id=9063A000000a9k7QAA this has a similar error.

Please make sure the record ids being passed are proper and not null.

Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.  

Thanks.