DBA Data[Home] [Help]

APPS.CSI_COUNTER_READINGS_PVT dependencies on CSI_LOOKUPS

Line 202: from CSI_LOOKUPS

198: BEGIN
199: Begin
200: select 'x'
201: into l_exists
202: from CSI_LOOKUPS
203: where lookup_type = l_adj_type
204: and lookup_code = p_adjustment_type;
205: l_return_value := TRUE;
206: Exception

Line 223: from CSI_LOOKUPS

219: BEGIN
220: Begin
221: select 'x'
222: into l_exists
223: from CSI_LOOKUPS
224: where lookup_type = l_adj_type
225: and lookup_code = p_reset_mode;
226: l_return_value := TRUE;
227: Exception

Line 6082: from CSI_LOOKUPS

6078: l_conc_login_id NUMBER := fnd_global.conc_login_id; -- 8214848 - dsingire
6079: --
6080: CURSOR PROP_LOV_CUR(p_prop_id IN NUMBER) IS
6081: select lookup_code,meaning --Meaning added for bug #6904836
6082: from CSI_LOOKUPS
6083: where lookup_type = (select property_lov_type
6084: from CSI_COUNTER_PROPERTIES_B
6085: where counter_property_id = p_prop_id);
6086: BEGIN