Data Integration
- Data Integration
- All Products
incrementErrorCount(int nErrors);
Argument
| Data Type
| Input/Output
| Description
|
---|---|---|---|
nErrors
| Integer
| Input
| Number of errors to increment the error count for the session.
|
// Check whether input employee ID or name is null. if (isNull ("EMP_ID_INP") || isNull ("EMP_NAME_INP")) { incrementErrorCount(1); // If input employee ID or name is null, don't generate an output row for this input row. generateRow = false; }