PCAppType
Use this named property to optimize the check amount extraction rates.
Syntax
pWorkdoc.NamedProperty ("PCAppType")
Parameter | Description |
---|---|
"POD" – default setting
Proof of deposit |
The Check Analysis Engine is tuned to minimize the error rate. You can limit candidate lists to values with the
highest confidence levels.
The engine often fails to recognize values above 1 million US dollars. See the HVOL option below. |
"RMT"
Remittance |
The Check Analysis Engine is tuned to a maximum read rate without rejection. It expects to use all results and alternative answers. It is not necessary to accept only answers with high confidence values, because users can perform cross-validation using remittance coupons and databases. |
"HVOL" | This parameter enables the engine to recognize amounts larger than 1 million US dollars. |
Sample Code
Private Sub Document_PreExtract(pWorkdoc as SCBCdrPROJLib.ISCBCdrWorkdoc)
pWorkdoc.NamedProperty("PCAppType") = "HVOL" 'High Value Amount Range
End Sub