You need to sign in to do that
Don't have an account?

Flow fast lookup not finding record that soql can find
Hello
I am working on a flow and one of the things it needs to do is query PriceBookEntry. For some reason the fast lookup is not finding any records, but when I test the same query with soql executed on workbench the record is found. I'm a bit stumped on what to do next. So hopfully someone out there has some ideas.
Here is excerpt from the debug email that shows what the fast lookup is doing:
And here is the soql that actually finds the record
I am working on a flow and one of the things it needs to do is query PriceBookEntry. For some reason the fast lookup is not finding any records, but when I test the same query with soql executed on workbench the record is found. I'm a bit stumped on what to do next. So hopfully someone out there has some ideas.
Here is excerpt from the debug email that shows what the fast lookup is doing:
FAST LOOKUP: Get_Standard_PBE_PP Find all PricebookEntry records where: Platform__c Equals {!Pureprofile} (Pureprofile) Pricebook2Id Equals {!varQuote.Pricebook2Id} (01s90000004YFPxAAO) CurrencyIsoCode Equals {!varQuote.CurrencyIsoCode} (AUD) Incidence_Rate__c Equals {!formulaIncidenceRate} (10.00) Length_of_Interview__c Equals {!Length_of_Interview2} (20) Assign those records to {!sovPBEM}. Save these field values in the variable: Id Result Failed to find records.
And here is the soql that actually finds the record
SELECT Id, name, currencyisocode FROM PricebookEntry where Length_of_Interview__c = 20 and Incidence_Rate__c = 10.00 and Platform__c = 'Pureprofile' and Pricebook2id = '01s90000004YFPxAAO' and CurrencyIsoCode = 'AUD'
What i only done was:
1.Close the browser
2. Open again and edit the old version with the new changes
That's it! haha
I don't know why, but it worked