IgnoreAnalysisFailures

This is an optional capability to ignore any errors during BIC’s extraction analysis phase. Otherwise, the extraction analysis stops in the middle of field extraction and does not apply processing for other fields and does not trigger further events.

This capability is optional and by default switched off to ensure the backwards compatibility is not affected in any way.

If set to TRUE, any errors occurring during extraction analysis phase are ignored. Errors do not cause a sudden termination of the extraction process. Instead, traces are left in the component logs for the CdrProj library (at tracing level 1):

0|0|13:10:14.840|LErr:0|hRes:0x80005141|cdrproj\scbcdrdocclass.cpp|Wed Sep 12 13:07:13 2012|2416|F|Error preprocessing zone ! Zone rectangle out of image.|||
0|0|13:10:14.840|LErr:0|hRes:0|cdrproj\scbcdrdocclass.cpp|Wed Sep 12 13:07:13 2012|2416||Level2||SAVINGS|

By default, this option is switched off. It can be activated at any time, for example in the PreExtract event.

Syntax

pWorkdoc.NamedProperty("IgnoreAnalysisFailures")

Sample Code

' Cedar Document Class Script for Class "Level2"
Private Sub SAVINGS_PreExtract(pField as SCBCdrPROJLib.ISCBCdrField, pWorkdoc as SCBCdrPROJLib.ISCBCdrWorkdoc)
   pWorkdoc.NamedProperty("IgnoreAnalysisFailures") = True
End Sub