DBA Data[Home] [Help]

APPS.PER_RSC_SHD dependencies on PER_RATING_SCALES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PER_RATING_SCALES_FK1') 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 26: ElsIf (p_constraint_name = 'PER_RATING_SCALES_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;
26: ElsIf (p_constraint_name = 'PER_RATING_SCALES_PK') Then
27: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;

Line 34: -- ElsIf (p_constraint_name = 'PER_RATING_SCALES_UK1') Then

30: hr_utility.raise_error;
31: --
32: -- pmfletch. Now a coded check in TL row handler
33: --
34: -- ElsIf (p_constraint_name = 'PER_RATING_SCALES_UK1') Then
35: -- hr_utility.set_message(801, 'HR_51449_RSC_NAME_NOT_UNIQUE');
36: -- hr_utility.raise_error;
37: Else
38: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');

Line 91: from per_rating_scales

87: attribute17,
88: attribute18,
89: attribute19,
90: attribute20
91: from per_rating_scales
92: where rating_scale_id = p_rating_scale_id;
93: --
94: l_proc varchar2(72) := g_package||'api_updating';
95: l_fct_ret boolean;

Line 190: from per_rating_scales

186: attribute17,
187: attribute18,
188: attribute19,
189: attribute20
190: from per_rating_scales
191: where rating_scale_id = p_rating_scale_id
192: for update nowait;
193: --
194: l_proc varchar2(72) := g_package||'lck';

Line 232: hr_utility.set_message_token('TABLE_NAME', 'per_rating_scales');

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