Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have input flow with 3 key fields coming into tMap and would like to grab all records from lookup where ANY of the 3 keys match the lookup keys, and also pass all input rows to the output flow.
This is similar to sql: ...select * from tbl1 left join tbl2 on (tbl1.key1 = tbl2.key1 or tbl1.key2 = tbl2.key2 or tbl1.key3 = tbl2.key3)
I can do this by using 3 lookups or 3 tMaps but this seems like bad practice.
How can I do this using one tMap and one lookup?