R – sharepoint content type data driven

sharepointsharepoint-2007

I'm creating a new content type for a sharepoint project (MOSS 2007). This content type (Letter Template) needs to contain meta-data that is driven from data outside of sharepoint like, template type (which we define in another db). How can I accomplish this in sp (aside from generating xml files)?

Best Answer

So your letter template content type has a number of fields. The data for these fields is stored in an external database? sounds like a job for the Business Data Catalog (MOSS feature, not WSS).

Another possibility is an Item Event Receiver that connects to the database and retrieves the data. This is definitely not the preferred way of handling this scenario, but may be quicker to implement.

hth,

jt