[SalesForce] How to limit record type selection based on Parent record type

I'd like to filter the available child record types a user can create based on the parent record type, any ideas?

Best Answer

One possible alternative is to override the new record creation of the child object with a Visualforce page, and use whatever logic you want to enforce the record type. I suppose the end user will be happy too.

Like the others mentioned a validation rule could work, but it may be a bit ugly from the end user perspective, since its not really the user's fault that he/she was allowed to choose that option.

Related Topic