Hello,
Im fresh in SLT, maybe this question seems elementary, but I cant find some thread about it ![]()
Regarding rule assignment what is best approach to set below filter:
I wold like to load a table executing a comparison between 2 fields ate the same table, and load the registers based on this condition.
TABLE_A
| ID | Qty_01 | Qty_02 |
|---|---|---|
| 1 | 100 | 50 |
| 2 | 100 | 0 |
| 3 | 130 | 130 |
| 4 | 400 | 20 |
| 5 | 405 | 410 |
| 6 | 1 | 0 |
| 7 | 10 | 10 |
Rule Assignment: if qty_01 >= qty_02. skip_record. endif.
Load Result
TABLE_A
| ID | Qty_01 | Qty_02 |
|---|---|---|
| 1 | 100 | 50 |
| 2 | 100 | 0 |
| 4 | 400 | 20 |
| 5 | 405 | 410 |
| 6 | 1 | 0 |
BR
Flavio Molina