Data Integration
- Data Integration
- All Products
DEPT_NO | DEPT_NAME |
|---|---|
1 | Human Resources |
2 | Research & Development |
7 | Finance |
8 | IT |
5 | Marketing |
Function | In-out parameter value |
|---|---|
SETVARIABLE($$p_io_int, DEPT_NO) | 5 |
SETMAXVARIABLE($$p_io_int, DEPT_NO) | 8 |
SETMINVARIABLE($$p_io_int, DEPT_NO) | 1 |
DEPT_NO | DEPT_NAME |
|---|---|
1 | Human Resources |
2 | Research & Development |
7 | Finance |
8 | IT |
5 | Marketing |
9 | Customer Support |
4 | Sales |
Function | In-out parameter value |
|---|---|
SETVARIABLE($$p_io_int, DEPT_NO) | 5 Even though the last value
processed is 4, the output value remains as 5 because the Max aggregation type selects
the higher value. |
SETMAXVARIABLE($$p_io_int, DEPT_NO) | 9 Since 9 is higher than the
previously selected value of 8, the Max aggregation type updates the output value to
9. |
SETMINVARIABLE($$p_io_int, DEPT_NO) | 1 |