PowerCenter
- PowerCenter 10.5.1
- All Products
setOutRowType(String rowType);
Argument
| Datatype
| Input/
Output
| Description
|
---|---|---|---|
rowType
| String
| Input
| Update strategy type. Value can be INSERT, UPDATE, or DELETE.
|
// Set the value of the output port. output1 = input1; // Get and set the row type. String rowType = getInRowType(); setOutRowType(rowType); // Set row type to DELETE if the output port value is > 100. if(input1 > 100) setOutRowType(DELETE);