This is the problem I have today. Currently I have a doctype that has several related custom attributes: provider_id, provider_name, provider_tin. The problem is that provider_id never changes but the name and tin can change. We literally have thousands of instances of documents with this doctype. What I would like to do is remove the custom attributes that can change i.e. provider_name and provider_tin and put them in a registered table that has provider_id as it's key.
This would mean that I would have to remove the custom attributes from the doctype and the existing instances of the doctypes. Is this possible?
Assuming it is possible, the next step would be to customize my search and objectlist screens so this information is always current rather than having to sweep the docbase to update changes to provider_name and provider_tin by using a union with my registered cross reference table. I suspect that this is a common problem and someone has come up with a best practice to solve this problem.
Thanks in advance
Lawrence