Common Content for Data Engineering
- Common Content for Data Engineering 10.2.2 Service Pack 1
- Tous les produits
incrementErrorCount(int nErrors);
Paramètre | Type de paramètre | Type de données | Description |
|---|---|---|---|
nErrors | Entrée | Integer | Valeur d'incrément du nombre d'erreurs. |
// 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; }