DBA Data[Home] [Help]

APPS.PER_RTL_SHD dependencies on PER_RATING_LEVELS

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

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

23: hr_utility.set_message(801, 'HR_51471_RTL_RSC_NOT_EXIST');
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 = 'PER_RATING_LEVELS_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 = 'PER_RATING_LEVELS_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 = 'PER_RATING_LEVELS_FK3') Then
33: hr_utility.set_message(801, 'HR_51472_RTL_CPN_NOT_EXIST');
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 = 'PER_RATING_LEVELS_PK') Then

33: hr_utility.set_message(801, 'HR_51472_RTL_CPN_NOT_EXIST');
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 = 'PER_RATING_LEVELS_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;

Line 42: ElsIf (p_constraint_name = 'PER_RATING_LEVELS_UK2') 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 = 'PER_RATING_LEVELS_UK2') Then
43: hr_utility.set_message(801, 'HR_51477_RTL_STEP_NOT_UNIQUE');
44: hr_utility.set_message_token('PROCEDURE', l_proc);
45: hr_utility.set_message_token('STEP','25');
46: hr_utility.raise_error;

Line 50: -- ElsIf (p_constraint_name = 'PER_RATING_LEVELS_UK3') Then

46: hr_utility.raise_error;
47: --
48: -- pmfletch. Name is now a coded check via TL row handler
49: --
50: -- ElsIf (p_constraint_name = 'PER_RATING_LEVELS_UK3') Then
51: -- hr_utility.set_message(801, 'HR_51474_RTL_NOT_UNIQUE');
52: -- hr_utility.set_message_token('PROCEDURE', l_proc);
53: -- hr_utility.set_message_token('STEP','30');
54: -- hr_utility.raise_error;

Line 113: from per_rating_levels

109: attribute17,
110: attribute18,
111: attribute19,
112: attribute20
113: from per_rating_levels
114: where rating_level_id = p_rating_level_id;
115: --
116: l_proc varchar2(72) := g_package||'api_updating';
117: l_fct_ret boolean;

Line 211: from per_rating_levels

207: attribute17,
208: attribute18,
209: attribute19,
210: attribute20
211: from per_rating_levels
212: where rating_level_id = p_rating_level_id
213: for update nowait;
214: --
215: l_proc varchar2(72) := g_package||'lck';

Line 254: hr_utility.set_message_token('TABLE_NAME', 'per_rating_levels');

250: -- The object is locked therefore we need to supply a meaningful
251: -- error message.
252: --
253: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
254: hr_utility.set_message_token('TABLE_NAME', 'per_rating_levels');
255: hr_utility.raise_error;
256: End lck;
257: --
258: -- ----------------------------------------------------------------------------