DBA Data[Home] [Help]

APPS.CTO_PUBLIC_UTILITY_PK dependencies on OE_ORDER_LINES_ALL

Line 72: from oe_order_lines_all

68:
69: if p_config_line_id is not null then
70: select ato_line_id, ordered_quantity
71: into config_ato_line_id, config_ordered_qty
72: from oe_order_lines_all
73: where line_id = p_config_line_id;
74: end if;
75:
76: if config_ordered_qty = 0 then

Line 94: from oe_order_lines_all l,

90: max(h.TRANSACTIONAL_CURR_CODE)
91: into x_unit_selling_price,
92: x_qty_selling_price,
93: x_currency_code
94: from oe_order_lines_all l,
95: oe_order_headers_all h
96: where l.ato_line_id = decode(p_config_line_id, null, p_model_line_id, config_ato_line_id)
97: and l.header_id = h.header_id;
98: