DBA Data[Home] [Help]

APPS.OKL_AM_REMARKET_ASSET_PVT dependencies on OE_ORDER_LINES_ALL

Line 2014: FROM oe_order_lines_all

2010: /* -- SECHAWLA 21-OCT-04 3924244
2011: -- This cursor is used to get the information about all the line items corresponding to an Order
2012: CURSOR l_orderlines_csr(p_header_id NUMBER) IS
2013: SELECT line_id, inventory_item_id, ordered_quantity, ship_from_org_id
2014: FROM oe_order_lines_all
2015: WHERE header_id = p_header_id;
2016: */
2017:
2018: -- SECHAWLA 21-OCT-04 3924244 : added this cursor

Line 2022: FROM oe_order_lines_all

2018: -- SECHAWLA 21-OCT-04 3924244 : added this cursor
2019: -- This cursor is used to get the information about an order line
2020: CURSOR l_orderlines_csr(cp_line_id NUMBER) IS
2021: SELECT header_id, inventory_item_id, ordered_quantity, ship_from_org_id
2022: FROM oe_order_lines_all
2023: WHERE line_id = cp_line_id;
2024:
2025:
2026: -- This cursor is used to get the source subinventory and distribution account for an inventory item