DBA Data[Home] [Help]

APPS.PER_AST_INS dependencies on PER_ASSESSMENT_TYPES

Line 80: -- Insert the row into: per_assessment_types

76: hr_utility.set_location('Entering:'||l_proc, 5);
77: p_rec.object_version_number := 1; -- Initialise the object version
78: --
79: --
80: -- Insert the row into: per_assessment_types
81: --
82: insert into per_assessment_types
83: ( assessment_type_id,
84: name,

Line 82: insert into per_assessment_types

78: --
79: --
80: -- Insert the row into: per_assessment_types
81: --
82: insert into per_assessment_types
83: ( assessment_type_id,
84: name,
85: business_group_id,
86: description,

Line 248: Cursor C_Sel1 is select per_assessment_types_s.nextval from sys.dual;

244: --
245: l_proc varchar2(72) := g_package||'pre_insert';
246: l_exists varchar2(1);
247: --
248: Cursor C_Sel1 is select per_assessment_types_s.nextval from sys.dual;
249: Cursor C_Sel2 is
250: select null from per_assessment_types
251: where assessment_type_id = per_ast_ins.g_assessment_type_id_i;
252:

Line 250: select null from per_assessment_types

246: l_exists varchar2(1);
247: --
248: Cursor C_Sel1 is select per_assessment_types_s.nextval from sys.dual;
249: Cursor C_Sel2 is
250: select null from per_assessment_types
251: where assessment_type_id = per_ast_ins.g_assessment_type_id_i;
252:
253: --
254: --

Line 270: fnd_message.set_token('TABLE_NAME','PER_ASSESSMENT_TYPES');

266: --
267: -- The primary key values are already in use.
268: --
269: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
270: fnd_message.set_token('TABLE_NAME','PER_ASSESSMENT_TYPES');
271: fnd_message.raise_error;
272: End If;
273: Close C_Sel2;
274: --

Line 382: ( p_module_name => 'PER_ASSESSMENT_TYPES'

378: );
379: exception
380: when hr_api.cannot_find_prog_unit then
381: hr_api.cannot_find_prog_unit_error
382: ( p_module_name => 'PER_ASSESSMENT_TYPES'
383: ,p_hook_type => 'AI'
384: );
385: end;
386: -- End of API User Hook for post_insert.