HREF=/pls/portal/TIPS_POR.
DYN_UK_POM
S_RPT_CALL
_UP_PAGE.s
how?p_arg_
names=p_cl
ient&p_arg
_values='|
| vital_dashboard_mv.request
ed_qty ||'
Where is your a tag closed or your href attribute ended??
The form should be
user textI'm guessing this query never closes the href attribute, doesn't put it in quotes, and never closes the
tag.
Maybe try:
select alias_dashbd.port_of_origin Origin, alias_dashbd.supplier Supplier, alias_dashbd.requested_qty Qty
from (
select
'' || vital_dashboard_mv.port_of_origin ||' |
' port_of_origin,
'
' || vital_dashboard_mv.supplier ||' |
' supplier,
'
' requested_qty
from vital_dashboard_mv ) alias_dashbd
Otherwise I would need to see some of the output of this query rather than just the query itself.