Data Integration
- Data Integration
- All Products
rowType getInRowType();
Argument
| Data Type
| Input/Output
| Description
|
---|---|---|---|
rowType
| String
| Output
| Update strategy type. Value can be INSERT, UPDATE, DELETE, or REJECT.
|
// 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);