You may select from the view as if it were a table via a command just as shown above.
In the database expert, when you have made your connection to the database, you should see a list of owners/tables, and ABOVE that, an option to add a command (if you are not familiar with getting to this point).
If you double click that, a pop up will display where you may enter the sql to select columns from the view. You may click the 'create' button on the right to create a parameter for use within this command (eg: {@WhereClause}).
Create the parameter as a string, then once created, double click it to get it into the sql on the left.
example sql:
select col1, col2 from owner.rpt_view where {@WhereClause}
The where clause will be a string build by the web app looking something like:
trans_id =12455
order by col1
final select statement sent to db:
select col1, col2 from owner.rpt_view where trans_id =12455 order by col1