As far as I know the only way to populate a parameter is via a prompt. The interface only allows a single parameter to be specified and populated. I want to populate a number of parameters in one hit, i.e. user select a single value from drop-down, number of parameters populated. The equivalent SQL would be something like:
Select col1, col2, col3
INTO ?param1?, ?param2?, ?param3?
From tab1
Where id_col = ....
Any ideas?
Select col1, col2, col3
INTO ?param1?, ?param2?, ?param3?
From tab1
Where id_col = ....
Any ideas?