Data Integration
- Data Integration
- All Products
setOutRowType(String rowType);
Argument
| Data Type
| Input/ Output
| Description
|
---|---|---|---|
rowType
| String
| Input
| Update strategy type. Value can be INSERT, UPDATE, or DELETE.
|
// Set the value of the output field. output1 = input1; // Get and set the row type. String rowType = getInRowType(); setOutRowType(rowType); // Set row type to DELETE if the output field value is > 100. if(input1 > 100) setOutRowType(DELETE);
Updated March 06, 2023