DBA Data[Home] [Help]

APPS.IEU_WORKLIST_ENUMS_PVT dependencies on FND_LOOKUP_VALUES_VL

Line 35: from fnd_lookup_values_vl

31:
32: SAVEPOINT start_enumeration;
33:
34: Select meaning into l_node_label
35: from fnd_lookup_values_vl
36: where lookup_type = 'IEU_NODE_LABELS'
37: and view_application_id = 696
38: and lookup_code = 'IEU_WORKLIST_LBL';
39:

Line 67: from fnd_lookup_values_vl

63:
64: -- Owned by Me
65:
66: Select meaning into l_node_label
67: from fnd_lookup_values_vl
68: where lookup_type = 'IEU_NODE_LABELS'
69: and view_application_id = 696
70: and lookup_code = 'IEU_MY_OWN_LBL';
71:

Line 93: from fnd_lookup_values_vl

89:
90: -- Assigned to Me
91:
92: Select meaning into l_node_label
93: from fnd_lookup_values_vl
94: where lookup_type = 'IEU_NODE_LABELS'
95: and view_application_id = 696
96: and lookup_code = 'IEU_MY_ASSIGN_LBL';
97:

Line 118: from fnd_lookup_values_vl

114:
115: -- Owned by My Groups
116:
117: Select meaning into l_node_label
118: from fnd_lookup_values_vl
119: where lookup_type = 'IEU_NODE_LABELS'
120: and view_application_id = 696
121: and lookup_code = 'IEU_GRP_OWN_LBL';
122:

Line 144: from fnd_lookup_values_vl

140:
141: -- Assigned To My Groups
142:
143: Select meaning into l_node_label
144: from fnd_lookup_values_vl
145: where lookup_type = 'IEU_NODE_LABELS'
146: and view_application_id = 696
147: and lookup_code = 'IEU_GRP_ASSIGN_LBL';
148: