Common Content for Data Catalog 
			
			- Common Content for Data Catalog 10.5.4
- 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); }