Advertisement
Advertisement
| 06.03.2008 at 09:34AM PDT, ID: 23453766 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: |
SELECT A.invoice_number,
A.invoice_line_number,
A.order_number,
A.order_line_number,
A.part_code,
A.warehouse,
A.unit_price,
B.invoice_quantity,
A.sales_price,
A.unit_cost,
A.delivery_address_code,
A.salesperson_code,
A.location,
A.customer_number,
C.customer_name,
A.freight,
A.sop_invoice_total_currency,
A.SYS_CURRENCY_DATE
FROM fin_prod.sales_order_invoice_lines A,
fin_prod.sales_invoice_line_qtys B,
fin_prod.customers C
WHERE a.COMPANY_CODE = '1' AND
a.DIVISION = '1' AND
a.WAREHOUSE in ('S1','L1') and
a.SALES_PRICE >0 AND
CASE WHEN (a.UNIT_COST = 0) THEN (((a.SALES_PRICE - a.UNIT_COST)/a.SALES_PRICE)=1)
ELSE ((((a.SALES_PRICE - a.UNIT_COST)/a.UNIT_COST)*100)<15) END
and a.SYS_CURRENCY_DATE >= (SYSDATE-7) and
a.company_code = b.company_code and
a.division = b.division and
a.invoice_number = b.invoice_number and
a.invoice_line_number = b.invoice_line_number
and c.COMPANY_CODE = '1' AND
c.DIVISION = '1' and
a.customer_number = c.customer_number
ORDER BY SYS_CURRENCY_DATE DESC
|