DBA Data[Home] [Help]

APPS.PQH_RLT_SHD dependencies on PQH_ROUTING_LISTS

Line 21: If (p_constraint_name = 'PQH_ROUTING_LISTS_PK') Then

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_ROUTING_LISTS_PK') Then
22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;

Line 54: from pqh_routing_lists

50: routing_list_id,
51: routing_list_name,
52: enable_flag,
53: object_version_number
54: from pqh_routing_lists
55: where routing_list_id = p_routing_list_id;
56: --
57: l_proc varchar2(72) := g_package||'api_updating';
58: l_fct_ret boolean;

Line 127: from pqh_routing_lists

123: select routing_list_id,
124: routing_list_name,
125: enable_flag,
126: object_version_number
127: from pqh_routing_lists
128: where routing_list_id = p_routing_list_id
129: for update nowait;
130: --
131: l_proc varchar2(72) := g_package||'lck';

Line 170: hr_utility.set_message_token('TABLE_NAME', 'pqh_routing_lists');

166: -- The object is locked therefore we need to supply a meaningful
167: -- error message.
168: --
169: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
170: hr_utility.set_message_token('TABLE_NAME', 'pqh_routing_lists');
171: hr_utility.raise_error;
172: End lck;
173: --
174: -- ----------------------------------------------------------------------------