DBA Data[Home] [Help]

APPS.PQH_RNG_SHD dependencies on PQH_ATTRIBUTE_RANGES

Line 22: If (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK1') Then

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

Line 27: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK2') Then

23: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
24: hr_utility.set_message_token('PROCEDURE', l_proc);
25: hr_utility.set_message_token('STEP','5');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK2') Then
28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
29: hr_utility.set_message_token('PROCEDURE', l_proc);
30: hr_utility.set_message_token('STEP','10');
31: hr_utility.raise_error;

Line 32: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK3') Then

28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
29: hr_utility.set_message_token('PROCEDURE', l_proc);
30: hr_utility.set_message_token('STEP','10');
31: hr_utility.raise_error;
32: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK3') Then
33: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
34: hr_utility.set_message_token('PROCEDURE', l_proc);
35: hr_utility.set_message_token('STEP','15');
36: hr_utility.raise_error;

Line 37: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK4') Then

33: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
34: hr_utility.set_message_token('PROCEDURE', l_proc);
35: hr_utility.set_message_token('STEP','15');
36: hr_utility.raise_error;
37: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_FK4') Then
38: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
39: hr_utility.set_message_token('PROCEDURE', l_proc);
40: hr_utility.set_message_token('STEP','20');
41: hr_utility.raise_error;

Line 42: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_PK') Then

38: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
39: hr_utility.set_message_token('PROCEDURE', l_proc);
40: hr_utility.set_message_token('STEP','20');
41: hr_utility.raise_error;
42: ElsIf (p_constraint_name = 'PQH_ATTRIBUTE_RANGES_PK') Then
43: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
44: hr_utility.set_message_token('PROCEDURE', l_proc);
45: hr_utility.set_message_token('STEP','25');
46: hr_utility.raise_error;

Line 88: from pqh_attribute_ranges

84: to_char,
85: to_date,
86: to_number,
87: object_version_number
88: from pqh_attribute_ranges
89: where attribute_range_id = p_attribute_range_id;
90: --
91: l_proc varchar2(72) := g_package||'api_updating';
92: l_fct_ret boolean;

Line 174: from pqh_attribute_ranges

170: to_char,
171: to_date,
172: to_number,
173: object_version_number
174: from pqh_attribute_ranges
175: where attribute_range_id = p_attribute_range_id
176: for update nowait;
177: --
178: l_proc varchar2(72) := g_package||'lck';

Line 217: hr_utility.set_message_token('TABLE_NAME', 'pqh_attribute_ranges');

213: -- The object is locked therefore we need to supply a meaningful
214: -- error message.
215: --
216: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
217: hr_utility.set_message_token('TABLE_NAME', 'pqh_attribute_ranges');
218: hr_utility.raise_error;
219: End lck;
220: --
221: -- ----------------------------------------------------------------------------