Understand the error – System.QueryException: List has no rows for assignment to SObject
Description This issue you may encounter in apex class if you have query like this: The following query is not returning any number of records: Lead l = [SELECT Id FROM Lead WHERE Id = : recordId]; The error “List has no rows for assignment to SObject” occurs when query doesn’t return any rows. Possible Reason …
Understand the error – System.QueryException: List has no rows for assignment to SObject Read More »