how to insert new line
suppose one of my xml node value is...
select c.dept_name, a.transaction_no, a.transaction_date, f.store_name,
d.item_description, e.unit_description, b.qty, b.sales_price, b.qty*b.sales_price value
from transaction_header_tab a, transaction_detail_tab b, department_tab c,
item_master_tab d, unit_master_tab e, store_master_tab f
where a.transaction_date >= :p_start_date and
a.transaction_date <= :p_end_date and
a.transaction_type = 'I' and
a.destination_store_code = c.dept_code
i want to put &#10; before every line in xslt 1.0....how can i chive this? is there any way?
|