DBA Data[Home] [Help]

APPS.HR_EAP_SHD dependencies on HR_KI_EXT_APPLICATIONS

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

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

47: select
48: ext_application_id
49: ,external_application_name
50: ,external_application_id
51: from hr_ki_ext_applications
52: where ext_application_id = p_ext_application_id;
53: --
54: l_fct_ret boolean;
55: --

Line 111: from hr_ki_ext_applications

107: select
108: ext_application_id
109: ,external_application_name
110: ,external_application_id
111: from hr_ki_ext_applications
112: where ext_application_id = p_ext_application_id
113: for update nowait;
114: --
115: l_proc varchar2(72) := g_package||'lck';

Line 150: fnd_message.set_token('TABLE_NAME', 'hr_ki_ext_applications');

146: -- The object is locked therefore we need to supply a meaningful
147: -- error message.
148: --
149: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
150: fnd_message.set_token('TABLE_NAME', 'hr_ki_ext_applications');
151: fnd_message.raise_error;
152: End lck;
153: --
154: -- ----------------------------------------------------------------------------