hi,
is there a way i could link my sub sql query (by adding command) to my formula variable in my main report ?
Below is my query frm my analyser which works well:
SELECT customer_id,part_id,default_unit_price,qty_on_hand,udf_layout_id
FROM CUSTOMER_PRICE CP,PART P
WHERE ( CP.PART_ID NOT IN
(SELECT DISTINCT(PART_ID)
FROM customer_order CO,CUST_ORDER_LINE COL
where CO.ID=COL.CUST_ORDER_ID AND CO.ORDER_DATE>01/01/2005)) AND P.ID=CP.PART_ID AND P.QTY_ON_HAND>0
ORDER BY UDF_LAYOUT_ID;
i would like to change the order_date>01/01/2005 now by a
parameter linked to thatin my main report.
Is that possible?
With regards,
CR10
is there a way i could link my sub sql query (by adding command) to my formula variable in my main report ?
Below is my query frm my analyser which works well:
SELECT customer_id,part_id,default_unit_price,qty_on_hand,udf_layout_id
FROM CUSTOMER_PRICE CP,PART P
WHERE ( CP.PART_ID NOT IN
(SELECT DISTINCT(PART_ID)
FROM customer_order CO,CUST_ORDER_LINE COL
where CO.ID=COL.CUST_ORDER_ID AND CO.ORDER_DATE>01/01/2005)) AND P.ID=CP.PART_ID AND P.QTY_ON_HAND>0
ORDER BY UDF_LAYOUT_ID;
i would like to change the order_date>01/01/2005 now by a
parameter linked to thatin my main report.
Is that possible?
With regards,
CR10