DBA Data[Home] [Help]

APPS.HR_PDT_SHD dependencies on HR_PERSON_DEPLOYMENTS

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'HR_PERSON_DEPLOYMENTS_PK') 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 114: from hr_person_deployments

110: ,per_information27
111: ,per_information28
112: ,per_information29
113: ,per_information30
114: from hr_person_deployments
115: where person_deployment_id = p_person_deployment_id;
116: --
117: l_fct_ret boolean;
118: --

Line 244: from hr_person_deployments

240: ,per_information27
241: ,per_information28
242: ,per_information29
243: ,per_information30
244: from hr_person_deployments
245: where person_deployment_id = p_person_deployment_id
246: for update nowait;
247: --
248: l_proc varchar2(72) := g_package||'lck';

Line 293: fnd_message.set_token('TABLE_NAME', 'hr_person_deployments');

289: -- The object is locked therefore we need to supply a meaningful
290: -- error message.
291: --
292: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
293: fnd_message.set_token('TABLE_NAME', 'hr_person_deployments');
294: fnd_message.raise_error;
295: End lck;
296: --
297: -- ----------------------------------------------------------------------------