To implement table inheritance, follow these steps:
- Open the ConVMSVehicleTable table and locate the Support inheritance property.
- Change the property value from No to Yes. This will automatically create a new field called InstanceRelationType.
- Create two indexes that allow duplicates, one for InstanceRelationType and the other for VehicleType. The name of the index should be the field name suffixed with Idx, for example, InstanceRelationTypeIdx.
- As a side task, save all ...