DBA Data[Home] [Help]

APPS.CSM_ORDERS_PKG dependencies on CSM_ORDER_LINES_INQ

Line 27: FROM CSM_ORDER_LINES_INQ l

23: Cursor to retrieve all order lines from INQ.
24: ***/
25: CURSOR c_order_lines ( b_user_name VARCHAR2, b_tranid NUMBER) is
26: SELECT *
27: FROM CSM_ORDER_LINES_INQ l
28: WHERE l.tranid$$ = b_tranid
29: AND l.clid$$cs = b_user_name;
30:
31: