Informatica Data Quality
- Informatica Data Quality 10.5.2
- All Products
setNull(String strColName);
Parameter | Parameter Type | Datatype | Description |
---|---|---|---|
strColName | Input | String | Name of an output column. |
// check value of Q3RESULTS input column if(isNull("Q3RESULTS")) { // set the value of output column to null setNull("RESULTS"); }
// check value of Q3RESULTS input column String strColName = "Q3RESULTS"; if(isNull(strColName)) { // set the value of output column to null setNull(strColName); }