How to set visible property to false on report triger [message #281993] |
Tue, 20 November 2007 05:33 |
senganga
Messages: 15 Registered: November 2007 Location: South Africa
|
Junior Member |
|
|
I have the following sql and I need to set my parameters (visible property to false)I need to this before the report runs. This is because I will calculate these parameters and populate them in my "before parameter function" and I do not want the user to see or change them when the report start to run... the user can only see these on the output.
SELECT DISTINCT
ord_line.attribute2 "Route",
mti.concatenated_segments || '-' ||
mti.description || '-' ||
ord_line.attribute1 || '-' ||
cph.ISSUE_DATE_ALIAS "Publication",
to_number(wsh.SHIPPED_QUANTITY,9999) Supply,
:p_Bundles,
:p_Loose_copies,
:p_Label_supply,
:p_Bundles_pack,
:p_Roll_pack,
:p_label,
wsh.NET_WEIGHT "Weight per KG",
ord_line.SCHEDULE_SHIP_DATE
FROM
mtl_system_items_kfv mti,
oe_order_lines_all ord_line,
oe_order_headers_all ord_hdr,
XXPUB_CALENDAR_PLAN_HDR cph,
wsh_delivery_details wsh,
bom_bill_of_materials_v bom,
bom_inventory_components_v bom_inv
|
|
|
|
|
|
|
|
|