DBA Data[Home] [Help]

APPS.BEN_EAT_INS dependencies on BEN_ACTN_TYP

Line 63: -- Insert the row into: ben_actn_typ

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

Line 65: insert into ben_actn_typ

61: ben_eat_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: ben_actn_typ
64: --
65: insert into ben_actn_typ
66: ( actn_typ_id,
67: business_group_id,
68: type_cd,
69: name,

Line 146: insert into ben_actn_typ_tl (

142: );
143: --
144: -- Insert into MLS table.
145: --
146: insert into ben_actn_typ_tl (
147: actn_typ_id,
148: name,
149: description,
150: language,

Line 175: from ben_actn_typ_tl t

171: from fnd_languages l
172: where l.installed_flag in ('I', 'B')
173: and not exists
174: (select null
175: from ben_actn_typ_tl t
176: where t.actn_typ_id = p_rec.actn_typ_id
177: and t.language = l.language_code);
178: --
179: ben_eat_shd.g_api_dml := false; -- Unset the api dml status

Line 243: cursor c1 is select ben_actn_typ_s.nextval

239: -- ----------------------------------------------------------------------------
240: Procedure pre_insert(p_rec in out nocopy ben_eat_shd.g_rec_type) is
241: --
242: l_proc varchar2(72) := g_package||'pre_insert';
243: cursor c1 is select ben_actn_typ_s.nextval
244: from sys.dual;
245: --
246: --
247: --

Line 351: (p_module_name => 'ben_actn_typ'

347: --
348: when hr_api.cannot_find_prog_unit then
349: --
350: hr_api.cannot_find_prog_unit_error
351: (p_module_name => 'ben_actn_typ'
352: ,p_hook_type => 'AI');
353: --
354: end;
355: --