DBA Data[Home] [Help]

APPS.CSM_COUNTER_VALUES_PKG dependencies on CSM_COUNTER_PROP_VALUES_INQ

Line 38: FROM CSM_COUNTER_PROP_VALUES_INQ inq

34: This one is to be executed after all requirement lines with headers have been deleted from the inqueue.
35: ***/
36: CURSOR c_get_ctr_prop_read_from_inq ( b_user_name VARCHAR2, b_tranid NUMBER, b_ctr_val_id NUMBER) is
37: SELECT *
38: FROM CSM_COUNTER_PROP_VALUES_INQ inq
39: WHERE inq.tranid$$ = b_tranid
40: AND inq.clid$$cs = b_user_name
41: AND inq.COUNTER_VALUE_ID = b_ctr_val_id;
42: BEGIN

Line 153: FROM CSM_COUNTER_PROP_VALUES_INQ

149: --Cursor for counter property readings
150: CURSOR c_ctr_prop_value (b_counter_value_id number, c_tranid NUMBER, c_user_name VARCHAR2)
151: IS
152: SELECT *
153: FROM CSM_COUNTER_PROP_VALUES_INQ
154: WHERE counter_value_id = b_counter_value_id
155: AND tranid$$ = c_tranid
156: AND clid$$cs = c_user_name;
157: