/**
* Tests Mantis issue: 8624: Validation should not check field length of id/foreign key columns
*/
public void testMantis8624() {
final String id = "012345678901234567890123456789";
final AcctSchemaTableDocType oi = OBProvider.getInstance().get(AcctSchemaTableDocType.class);
// this failed before:
oi.setId(id);
}