I have tried this but was unsuccessful. The query runs but it fails to prompt me for the parameter value. Can you tell me what I am doing wrong? The parameter (system) has been set up with the 'Hide On Run' box unchecked. The query runs with or without the quote marks around @system@. If I set up a default value in the parameter tab, the records are filtered accoding to the value of that parameter.
The query is...
SELECT al_description "SYSTEM",
ts_name "TEST NAME",
ds_step_name "STEP NUMBER",
ds_description "STEP DESCRIPTION",
ds_expected "EXPECTED RESULT"
FROM all_lists, test, dessteps
where test.ts_test_id = ds_test_id
and al_item_id = ts_subject
and al_description = '@system@'
order by al_description,
ts_name,
to_number(ds_step_name)