Informatica Data Quality
- Informatica Data Quality 10.4.0
- Todos os produtos
incrementErrorCount(int nErrors);
Parâmetro | Tipo de Parâmetro | Tipo de dados | Descrição |
---|---|---|---|
nErrors | Entrada | Número inteiro | Número para incrementar a contagem de erros . |
// 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; }