It's very simple to pass temp-tables in and out of programs, procedures and functions.
This can be handy if you want a procedure to process a bigger number of data than you can easily store in a string or similar. You can pass temp-tables as INPUT, OUTPUT and INPUT-OUTPUT data.
Inputting one temp-...