DBA Data[Home] [Help]

APPS.HR_DTY_INS dependencies on HR_DOCUMENT_TYPES

Line 81: -- Insert the row into: hr_document_types

77: p_rec.object_version_number := 1; -- Initialise the object version
78: --
79: --
80: --
81: -- Insert the row into: hr_document_types
82: --
83: insert into hr_document_types
84: (document_type_id
85: ,system_document_type

Line 83: insert into hr_document_types

79: --
80: --
81: -- Insert the row into: hr_document_types
82: --
83: insert into hr_document_types
84: (document_type_id
85: ,system_document_type
86: ,category_code
87: ,sub_category_code

Line 181: Cursor C_Sel1 is select hr_document_types_s.nextval from sys.dual;

177: Procedure pre_insert
178: (p_rec in out nocopy hr_dty_shd.g_rec_type
179: ) is
180: --
181: Cursor C_Sel1 is select hr_document_types_s.nextval from sys.dual;
182: --
183: Cursor C_Sel2 is
184: Select null
185: from hr_document_types

Line 185: from hr_document_types

181: Cursor C_Sel1 is select hr_document_types_s.nextval from sys.dual;
182: --
183: Cursor C_Sel2 is
184: Select null
185: from hr_document_types
186: where document_type_id =
187: hr_dty_ins.g_document_type_id_i;
188: --
189: l_proc varchar2(72) := g_package||'pre_insert';

Line 207: fnd_message.set_token('TABLE_NAME','hr_document_types');

203: --
204: -- The primary key values are already in use.
205: --
206: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
207: fnd_message.set_token('TABLE_NAME','hr_document_types');
208: fnd_message.raise_error;
209: End If;
210: Close C_Sel2;
211: --

Line 310: (p_module_name => 'HR_DOCUMENT_TYPES'

306: --
307: when hr_api.cannot_find_prog_unit then
308: --
309: hr_api.cannot_find_prog_unit_error
310: (p_module_name => 'HR_DOCUMENT_TYPES'
311: ,p_hook_type => 'AI');
312: --
313: end;
314: --