DBA Data[Home] [Help]

APPS.HR_PDC_SHD dependencies on HR_PERSON_DEPLYMT_CONTACTS

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

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

49: person_deplymt_contact_id
50: ,person_deployment_id
51: ,contact_relationship_id
52: ,object_version_number
53: from hr_person_deplymt_contacts
54: where person_deplymt_contact_id = p_person_deplymt_contact_id;
55: --
56: l_fct_ret boolean;
57: --

Line 122: from hr_person_deplymt_contacts

118: person_deplymt_contact_id
119: ,person_deployment_id
120: ,contact_relationship_id
121: ,object_version_number
122: from hr_person_deplymt_contacts
123: where person_deplymt_contact_id = p_person_deplymt_contact_id
124: for update nowait;
125: --
126: l_proc varchar2(72) := g_package||'lck';

Line 171: fnd_message.set_token('TABLE_NAME', 'hr_person_deplymt_contacts');

167: -- The object is locked therefore we need to supply a meaningful
168: -- error message.
169: --
170: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
171: fnd_message.set_token('TABLE_NAME', 'hr_person_deplymt_contacts');
172: fnd_message.raise_error;
173: End lck;
174: --
175: -- ----------------------------------------------------------------------------