DBA Data[Home] [Help]

APPS.HR_ORD_SHD dependencies on HR_DE_ORGANIZATION_LINKS

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'HR_DE_ORGANIZATION_LINKS_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','15');
25: fnd_message.raise_error;

Line 117: from hr_de_organization_links

113: ,attribute29
114: ,attribute30
115: ,object_version_number
116: ,org_link_type
117: from hr_de_organization_links
118: where organization_link_id = p_organization_link_id;
119: --
120: l_fct_ret boolean;
121: --

Line 250: from hr_de_organization_links

246: ,attribute29
247: ,attribute30
248: ,object_version_number
249: ,org_link_type
250: from hr_de_organization_links
251: where organization_link_id = p_organization_link_id
252: for update nowait;
253: --
254: l_proc varchar2(72) := g_package||'lck';

Line 299: fnd_message.set_token('TABLE_NAME', 'hr_de_organization_links');

295: -- The object is locked therefore we need to supply a meaningful
296: -- error message.
297: --
298: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
299: fnd_message.set_token('TABLE_NAME', 'hr_de_organization_links');
300: fnd_message.raise_error;
301: End lck;
302: --
303: -- ----------------------------------------------------------------------------