Advertisement
Advertisement
| 05.01.2008 at 12:13PM PDT, ID: 23369701 |
|
[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: |
SELECT inner_table.my_level AS level_, inner_table.part_no,
outer_table.description AS "PART DESCRIPTION",
inner_table.component_part,
outer_table1.description AS "COMPONENT DESCRIPTION",
inner_table.qty_per_assembly AS "QTY PER",
outer_table1.purch_leadtime,
ROUND (outer_table2.inventory_value, 2) AS "STD COST"
FROM (SELECT DISTINCT LEVEL AS my_level, part_no, component_part,
qty_per_assembly, note_id
FROM manuf_structure
WHERE eff_phase_out_date IS NULL
CONNECT BY PRIOR component_part = part_no
START WITH part_no = :part_no) inner_table,
inventory_part_config_all outer_table,
inventory_part_config_all outer_table1,
inventory_part_unit_cost outer_table2
WHERE inner_table.part_no = outer_table.part_no
AND inner_table.component_part = outer_table1.part_no
AND inner_table.component_part = outer_table2.part_no
ORDER BY level_
select sum(qty_onhand) AS QOH
from INVENTORY_PART_IN_STOCK
group by part_no
|