DBA Data[Home] [Help]

APPS.PER_SSM_SHD dependencies on PER_SALARY_SURVEY_MAPPINGS

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK1') 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_SALARY_SURVEY_MAPPINGS_FK2') 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_SALARY_SURVEY_MAPPINGS_FK2') 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','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK3') 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','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK3') Then
47: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
48: --hr_utility.set_message_token('PROCEDURE', l_proc);
49: --hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 51: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK4') Then

47: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
48: --hr_utility.set_message_token('PROCEDURE', l_proc);
49: --hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK4') Then
52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: --hr_utility.set_message_token('PROCEDURE', l_proc);
54: --hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;

Line 56: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK5') Then

52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: --hr_utility.set_message_token('PROCEDURE', l_proc);
54: --hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;
56: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_FK5') Then
57: hr_utility.set_location(l_proc, 7);
58: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
59: --hr_utility.set_message_token('PROCEDURE', l_proc);
60: --hr_utility.set_message_token('STEP','25');

Line 62: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_UK') Then

58: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
59: --hr_utility.set_message_token('PROCEDURE', l_proc);
60: --hr_utility.set_message_token('STEP','25');
61: hr_utility.raise_error;
62: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_MAPPINGS_UK') Then
63: hr_utility.set_message(801, 'This salary survey mapping already exists');
64: --hr_utility.set_message_token('PROCEDURE', l_proc);
65: --hr_utility.set_message_token('STEP','30');
66: hr_utility.raise_error;

Line 122: from per_salary_survey_mappings

118: attribute17,
119: attribute18,
120: attribute19,
121: attribute20
122: from per_salary_survey_mappings
123: where salary_survey_mapping_id = p_salary_survey_mapping_id;
124: --
125: l_proc varchar2(72) := g_package||'api_updating';
126: l_fct_ret boolean;

Line 220: from per_salary_survey_mappings

216: attribute17,
217: attribute18,
218: attribute19,
219: attribute20
220: from per_salary_survey_mappings
221: where salary_survey_mapping_id = p_salary_survey_mapping_id
222: for update nowait;
223: --
224: l_proc varchar2(72) := g_package||'lck';

Line 263: hr_utility.set_message_token('TABLE_NAME', 'per_salary_survey_mappings');

259: -- The object is locked therefore we need to supply a meaningful
260: -- error message.
261: --
262: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
263: hr_utility.set_message_token('TABLE_NAME', 'per_salary_survey_mappings');
264: hr_utility.raise_error;
265: End lck;
266: --
267: -- ----------------------------------------------------------------------------