DBA Data[Home] [Help]

APPS.PER_APL_INS dependencies on PER_APPLICATIONS

Line 63: -- Insert the row into: per_applications

59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_apl_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_applications
64: --
65: insert into per_applications
66: ( application_id,
67: business_group_id,

Line 65: insert into per_applications

61: per_apl_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_applications
64: --
65: insert into per_applications
66: ( application_id,
67: business_group_id,
68: person_id,
69: date_received,

Line 205: Cursor C_Sel1 is select per_applications_s.nextval from sys.dual;

201: Procedure pre_insert(p_rec in out nocopy per_apl_shd.g_rec_type) is
202: --
203: l_proc varchar2(72) := g_package||'pre_insert';
204: --
205: Cursor C_Sel1 is select per_applications_s.nextval from sys.dual;
206: --
207: Begin
208: hr_utility.set_location('Entering:'||l_proc, 5);
209: --

Line 303: (p_module_name => 'PER_APPLICATIONS'

299: );
300: exception
301: when hr_api.cannot_find_prog_unit then
302: hr_api.cannot_find_prog_unit_error
303: (p_module_name => 'PER_APPLICATIONS'
304: ,p_hook_type => 'AI'
305: );
306: end;
307: -- End of API User Hook for post_insert.