Question : hyperlink not shown on 3rd column

i try to show a report with 3 columns, the 3rd column has to be hyperlink passing parameter to another page. First 2 columns shown correctly, but the third column with hyperlink does not show up.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
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

Answer : hyperlink not shown on 3rd column

HREF=/pls/portal/TIPS_POR.DYN_UK_POMS_RPT_CALL_UP_PAGE.show?p_arg_names=p_client&p_arg_values='|| vital_dashboard_mv.requested_qty ||'

Where is your a tag closed or your href attribute ended??
The form should be
user text

I'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,
'
some text
' 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.


Random Solutions  
 
programming4us programming4us