DBA Data[Home] [Help]

APPS.HR_OTY_SHD dependencies on HR_KI_OPTION_TYPES

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

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

49: option_type_id
50: ,option_type_key
51: ,display_type
52: ,object_version_number
53: from hr_ki_option_types
54: where option_type_id = p_option_type_id;
55: --
56: l_fct_ret boolean;
57: --

Line 122: from hr_ki_option_types

118: option_type_id
119: ,option_type_key
120: ,display_type
121: ,object_version_number
122: from hr_ki_option_types
123: where option_type_id = p_option_type_id
124: for update nowait;
125: --
126: l_proc varchar2(72) := g_package||'lck';

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

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_ki_option_types');
172: fnd_message.raise_error;
173: End lck;
174: --
175: -- ----------------------------------------------------------------------------