Using of the deprecated method "Find" (DeprecatedFind) Description Method "Find" is deprecated. Use "StrFind" instead. Examples Incorrect: If Find(Employee.Name, "Boris") > 0 Then EndIf; Correct: If StrFind(Employee.Name, "Boris") > 0 Then EndIf;