DBA Data[Home] [Help]

APPS.PER_PRT_SHD dependencies on PER_PERFORMANCE_RATINGS

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

17:
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20:
21: If (p_constraint_name = 'PER_PERFORMANCE_RATINGS_FK2') Then
22: hr_utility.set_message(801, 'HR_51919_PRT_APR_NOT_EXIST');
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_PERFORMANCE_RATINGS_FK4') Then

22: hr_utility.set_message(801, 'HR_51919_PRT_APR_NOT_EXIST');
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_PERFORMANCE_RATINGS_FK4') Then
27: hr_utility.set_message(801, 'HR_51925_PRT_RLI_NOT_EXIST');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;

Line 31: ElsIf (p_constraint_name = 'PER_PERFORMANCE_RATINGS_PK') Then

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

Line 89: from per_performance_ratings

85: attribute18,
86: attribute19,
87: attribute20,
88: appr_line_score
89: from per_performance_ratings
90: where performance_rating_id = p_performance_rating_id;
91:
92: l_proc varchar2(72) := g_package||'api_updating';
93: l_fct_ret boolean;

Line 188: from per_performance_ratings

184: attribute18,
185: attribute19,
186: attribute20,
187: appr_line_score
188: from per_performance_ratings
189: where performance_rating_id = p_performance_rating_id
190: for update nowait;
191:
192: l_proc varchar2(72) := g_package||'lck';

Line 231: hr_utility.set_message_token('TABLE_NAME', 'per_performance_ratings');

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