DBA Data[Home] [Help]

APPS.GML_OP_ORDR_STS_PKG dependencies on OP_ORDR_STS_VL

Line 95: /* BUG 1272860 Changed table from OP_ORDR_STS_B to OP_ORDR_STS_VL in cursor c. */

91: X_DELETE_MARK in NUMBER,
92: X_ORDER_STATUS_CODE in VARCHAR2,
93: X_ORDER_STATUS_DESC in VARCHAR2
94: ) is
95: /* BUG 1272860 Changed table from OP_ORDR_STS_B to OP_ORDR_STS_VL in cursor c. */
96: cursor c is select
97: LANG_CODE,
98: TRANS_CNT,
99: TEXT_CODE,

Line 101: from OP_ORDR_STS_VL

97: LANG_CODE,
98: TRANS_CNT,
99: TEXT_CODE,
100: DELETE_MARK
101: from OP_ORDR_STS_VL
102: where ORDER_STATUS = X_ORDER_STATUS
103: for update of ORDER_STATUS nowait;
104: /* BUG 1272860 End bug fix. */
105: recinfo c%rowtype;