I have a generic Note object which is a child to two entirely different parent objects. I would like two note tables to store the Note objects - one table for (e.g.) Invoice notes and one table for Shipment notes. I think two tables is necessary because Invoices and Shipments have separate PK sequences and, therefore, can generate duplicate values which would cause problems in a single Note table.
Can OJB do this? I couldn't figure out how to tell Invoices to use the InvoiceNote table and Shipments to use the ShipmentNote table. I suppose a work-around would be to have two exact same but differently named interfaces for the Note object, but that seems kludgy. Thanks, -tim --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
