we are using common application that having common objects and these objects are being used across 3 more applications.during deployment of other 3 applications, we are facing issues dependency on common application and as per the business requirementto reduce the dependency from common application what is the best approach and how we can remove the dependency.we are looking for a solution of this issue and wanted to understand the impact on it.Please suggest on this if any leads.
Discussion posts and replies are publicly visible
The only way to fully remove these dependencies, is to create a copy of these objects for each individual application. Then modify the app to use these copies.
hi Suresh In this scenario you might separate all your objects application-wise. copy those objects as Stefan Helzle mentioned
Create a duplicate of the common objects and rename it to application specific objects.
Then track the dependencies of the common objects and replace it with the application specific objects.
Thanks Stefan Helzle
we are using Record and if we recreate the object for other applications, then how to handle the data which already present in db table against for that record and also wanted to understand if any impact.
Thanks Abhishek Karumuru