I have a report created from ORDER table with the fields: ORDER_NUMBER, CUSTOMER_NUMBER, ORDER_DATE, etc. For example, data looks like
ORDER_NUMBER CUSTOMER_NUMBER ORDER_DATE
1 1 11/12/2003
There are two filters. One is to choose ORDER_DATE between 2 dates and the other one is to choose customer no.
One order can associate with multiple transactions such as RFQ, QUOTE, PO, INVOICE. Therefore, the TRANSACTION table will have the fields: ORDER_NUMBER, TRANS_NUMBER, TRANS_TYPE, etc. Data looks like
TRANS_NUMBER ORDER_NUMBER TRANS_TYPE
100 1 RFQ
101 1 QUOTE
102 1 PO
103 1 INVOICE
Question: If I create a template for TRANSACTION, Is it possible to create a drill map associating with ORDER_NUMBER on my report to drill to my template with filtering only by ORDER_NUMBER?
ORDER_NUMBER CUSTOMER_NUMBER ORDER_DATE
1 1 11/12/2003
There are two filters. One is to choose ORDER_DATE between 2 dates and the other one is to choose customer no.
One order can associate with multiple transactions such as RFQ, QUOTE, PO, INVOICE. Therefore, the TRANSACTION table will have the fields: ORDER_NUMBER, TRANS_NUMBER, TRANS_TYPE, etc. Data looks like
TRANS_NUMBER ORDER_NUMBER TRANS_TYPE
100 1 RFQ
101 1 QUOTE
102 1 PO
103 1 INVOICE
Question: If I create a template for TRANSACTION, Is it possible to create a drill map associating with ORDER_NUMBER on my report to drill to my template with filtering only by ORDER_NUMBER?