DBA Data[Home] [Help]

APPS.PSP_PSC_SHD dependencies on PSP_SALARY_CAPS

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PSP_SALARY_CAPS_U1') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 62: from psp_salary_caps

58: ,currency_code
59: ,annual_salary_cap
60: ,object_version_number
61: ,seed_flag
62: from psp_salary_caps
63: where salary_cap_id = p_salary_cap_id;
64: --
65: l_fct_ret boolean;
66: --

Line 135: from psp_salary_caps

131: ,currency_code
132: ,annual_salary_cap
133: ,object_version_number
134: ,seed_flag
135: from psp_salary_caps
136: where salary_cap_id = p_salary_cap_id
137: for update nowait;
138: --
139: l_proc varchar2(72) := g_package||'lck';

Line 184: fnd_message.set_token('TABLE_NAME', 'psp_salary_caps');

180: -- The object is locked therefore we need to supply a meaningful
181: -- error message.
182: --
183: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
184: fnd_message.set_token('TABLE_NAME', 'psp_salary_caps');
185: fnd_message.raise_error;
186: End lck;
187: --
188: -- ----------------------------------------------------------------------------