DBA Data[Home] [Help]

APPS.PER_GRS_SHD dependencies on PER_CAGR_GRADE_STRUCTURES

Line 36: If (p_constraint_name = 'PER_CAGR_GRADE_STRUCTURES_PK') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PER_CAGR_GRADE_STRUCTURES_PK') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'PER_CAGR_GRADE_STRUCTURES_UK1') Then

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

Line 96: from per_cagr_grade_structures

92: attribute17,
93: attribute18,
94: attribute19,
95: attribute20
96: from per_cagr_grade_structures
97: where cagr_grade_structure_id = p_cagr_grade_structure_id;
98: --
99: l_proc varchar2(72) := g_package||'api_updating';
100: l_fct_ret boolean;

Line 191: from per_cagr_grade_structures

187: attribute17,
188: attribute18,
189: attribute19,
190: attribute20
191: from per_cagr_grade_structures
192: where cagr_grade_structure_id = p_cagr_grade_structure_id
193: for update nowait;
194: --
195: l_proc varchar2(72) := g_package||'lck';

Line 234: hr_utility.set_message_token('TABLE_NAME', 'per_cagr_grade_structures');

230: -- The object is locked therefore we need to supply a meaningful
231: -- error message.
232: --
233: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
234: hr_utility.set_message_token('TABLE_NAME', 'per_cagr_grade_structures');
235: hr_utility.raise_error;
236: End lck;
237: --
238: -- ----------------------------------------------------------------------------