DBA Data[Home] [Help]

APPS.PER_EQT_INS dependencies on PER_QUALIFICATION_TYPES

Line 63: -- Insert the row into: per_qualification_types

59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_eqt_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_qualification_types
64:
65: -- mvankada
66: -- Added Developer DF columns
67: insert into per_qualification_types

Line 67: insert into per_qualification_types

63: -- Insert the row into: per_qualification_types
64:
65: -- mvankada
66: -- Added Developer DF columns
67: insert into per_qualification_types
68: ( qualification_type_id,
69: name,
70: category,
71: rank,

Line 272: select per_qualification_types_s.nextval

268: --
269: l_proc varchar2(72) := g_package||'pre_insert';
270: --
271: cursor c1 is
272: select per_qualification_types_s.nextval
273: from sys.dual;
274: --
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 5);

Line 405: (p_module_name => 'PER_QUALIFICATION_TYPES'

401: );
402: exception
403: when hr_api.cannot_find_prog_unit then
404: hr_api.cannot_find_prog_unit_error
405: (p_module_name => 'PER_QUALIFICATION_TYPES'
406: ,p_hook_type => 'AI'
407: );
408: end;
409: -- End of API User Hook for post_insert.