This requirement is on the list, but not as a priority , so it is unlikley to be in the next two releases of Recorder. The best way of dealing with this in the interim will be a batch update, run after a batch of records has been input, to change the determination type based on selected criteria, which identifies the records. If the county recorder is entering already verified records then they could be given a batch update to run which changes the determination type where they are the determiner. This would also need to change the verified indicator on taxon occurrence. It could simply be hard coded for an individual recorder so would be just a few lines of sql, within the batch update. The following is an example of the SQL which would do something on these lines, if put into a batch update. They keys would need changing to meet your specific requirements,
Update Taxon_Determination set Determination_type_Key = 'NBNSYS0000000007'
FROM Taxon_Determination where Determiner = 'LC00000100000001'
Update Taxon_Occurrence set verified = 2
FROm Taxon_Occurrence TOCC INNER JOIN
Taxon_Determination TDET ON TDET.Taxon_Occurrence_Key = TOCC.Taxon_Occurrence_Key AND TDET.preferred = 1
WHERE TDET.Determination_Type_Key = 'NBNSYS0000000007'
Mike Weideli