Common Content for Data Catalog
- Common Content for Data Catalog 10.5.2
- Alle Produkte
setNull(String strColName);
Parameter | Parametertyp | Datentyp | Beschreibung |
|---|---|---|---|
strColName | Eingabe | String | Name einer Ausgabespalte. |
// 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); }