Salesforce - Subject and Task Picklist
Salesforce 'Task' Object is having a validation to update the Type field as required when we are logging a call.
Please find the validation rule below.
AND(OR(RecordType.Name = 'Log a Call', RecordType.Name = 'New Task'), ISBLANK(TEXT(Type)), TEXT(TaskSubtype)!= "Email")
Here the issue is, since it is not a required field in Salesforce, user cannot see an * Symbol for Type field.
Also, it is failing to log a call, after enabling auto call logging through admin settings. Since it is not a required field in Salesfor
1
vote