/** @ejb.interface-method view-type="local" */
 public void updateReferringPhysicianNameSoundex(StudyLocal study) {
   PersonName pn = newPersonName(study.getReferringPhysicianName());
   study.setReferringPhysicianFamilyNameSoundex(
       AttributeFilter.toSoundex(pn, PersonName.FAMILY, "*"));
   study.setReferringPhysicianGivenNameSoundex(
       AttributeFilter.toSoundex(pn, PersonName.GIVEN, "*"));
 }