DBA Data[Home] [Help]

APPS.PER_SSL_SHD dependencies on PER_SALARY_SURVEY_LINES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PER_SALARY_SURVEY_LINES_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_SALARY_SURVEY_LINES_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_SALARY_SURVEY_LINES_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 31: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_LINES_UK1') 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;
31: ElsIf (p_constraint_name = 'PER_SALARY_SURVEY_LINES_UK1') Then
32: hr_utility.set_message(800, 'PER_50340_PSS_INV_COMB1');
33: hr_utility.raise_error;
34: Else
35: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');

Line 141: from per_salary_survey_lines

137: attribute28,
138: attribute29,
139: attribute30
140: /*Enhancement 4021737 */
141: from per_salary_survey_lines
142: where salary_survey_line_id = p_salary_survey_line_id;
143: --
144: l_proc varchar2(72) := g_package||'api_updating';
145: l_fct_ret boolean;

Line 293: from per_salary_survey_lines

289: attribute28,
290: attribute29,
291: attribute30
292: /*End Enhancement 4021737 */
293: from per_salary_survey_lines
294: where salary_survey_line_id = p_salary_survey_line_id
295: for update nowait;
296: --
297: l_proc varchar2(72) := g_package||'lck';

Line 336: hr_utility.set_message_token('TABLE_NAME', 'per_salary_survey_lines');

332: -- The object is locked therefore we need to supply a meaningful
333: -- error message.
334: --
335: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
336: hr_utility.set_message_token('TABLE_NAME', 'per_salary_survey_lines');
337: hr_utility.raise_error;
338: End lck;
339: --
340: -- ----------------------------------------------------------------------------