DBA Data[Home] [Help]

APPS.OKL_AM_REMARKET_ASSET_PVT dependencies on OE_ORDER_LINES_ALL

Line 2018: FROM oe_order_lines_all

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

Line 2026: FROM oe_order_lines_all

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