Need help for the below entry condition in the flow as my entry condition is not matching with the expectation.
Object: Case Comment
Condition for Entry:
- Case Comment parent record type should be any of from - ABC or DEF
- AND - IsPublished = true
- Owner Profile Should not be equal to - AABCGH
Above all condition should be in AND.
tried below approach:
AND(OR({!$Record.Parent.RecordType.DeveloperName} = 'ABC',{!$Record.Parent.RecordType.DeveloperName} = 'DEF')&&{!$Record.IsPublished = true}{!$Record.Parent.Owner:User.Profile.Name}<>'AABCGH')` 