PowerCenter
- PowerCenter 10.5.6
- All Products
incrementErrorCount(int nErrors);
Parameter | Parameter Type | Datatype | Description |
---|---|---|---|
nErrors | Input | Integer | Number by which to increment the error count for the session . |
// Check if input employee id and name is null. if (isNull ("EMP_ID_INP") || isNull ("EMP_NAME_INP")) { incrementErrorCount(1); // if input employee id and/or name is null, don't generate a output row for this input row generateRow = false; }