Question
Sharing Record Types Between Applications
If you have a database schema table with data that multiple applications need access to...
1. Do you create a single Record Type which multiple application use/share? This in my opinion tightly couples your applications.
2. Do you create separate Record Types per application so they can evolve separately? This in my opinion allows each application to evolve it's Record Type independently, and the only tight coupling is the shared database table structure.
What are your thoughts and recommendations on the two approaches?
