DBA Data[Home] [Help]

APPS.PER_PHN_SHD dependencies on PER_PHONES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PER_PHONES_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;

Line 91: from per_phones

87: attribute30,
88: party_id, -- HR/TCA merge
89: validity,
90: object_version_number
91: from per_phones
92: where phone_id = p_phone_id;
93: --
94: l_proc varchar2(72) := g_package||'api_updating';
95: l_fct_ret boolean;

Line 201: from per_phones

197: attribute30,
198: party_id, -- HR/TCA merge
199: validity,
200: object_version_number
201: from per_phones
202: where phone_id = p_phone_id
203: for update nowait;
204: --
205: l_proc varchar2(72) := g_package||'lck';

Line 244: hr_utility.set_message_token('TABLE_NAME', 'per_phones');

240: -- The object is locked therefore we need to supply a meaningful
241: -- error message.
242: --
243: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
244: hr_utility.set_message_token('TABLE_NAME', 'per_phones');
245: hr_utility.raise_error;
246: End lck;
247: --
248: -- ----------------------------------------------------------------------------