addToNumErrorRecordsScraped
void session.addToNumErrorRecordsScraped ( Object value ) (enterprise edition only)
Description
Add to the value error records. (As opposed to duplicate or new records.)
Parameters
- value Value to be added to the count. Usually a integer but if it is given a string (e.g. "10") it will try to transform it into an integer before adding.
Return Values
Returns void.
Change Log
Version |
Description |
7.0 |
Available for enterprise edition. |
Examples
Record New Records Scraped
// Adds 10 to the value of new records scraped.
session.addToNumErrorRecordsScraped(10);
Have session record each time a dataRecord is missing a vital datam
// In script called "After each pattern match"
if (sutil.isNullOrEmptyString(dataRecord.get("VITAL_DATUM")))
{
log.logError("Missing VITAL_DATUM");
session.addToNumErrorRecordsScraped(1);
}