DBA Data[Home] [Help]

APPS.BEN_APR_INS dependencies on BEN_APR_SHD

Line 58: (p_rec in out nocopy ben_apr_shd.g_rec_type,

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_insert_dml
58: (p_rec in out nocopy ben_apr_shd.g_rec_type,
59: p_effective_date in date,
60: p_datetrack_mode in varchar2,
61: p_validation_start_date in date,
62: p_validation_end_date in date) is

Line 72: ben_apr_shd.g_old_rec.effective_start_date

68: t.creation_date
69: from ben_actl_prem_f t
70: where t.actl_prem_id = p_rec.actl_prem_id
71: and t.effective_start_date =
72: ben_apr_shd.g_old_rec.effective_start_date
73: and t.effective_end_date = (p_validation_start_date - 1);
74: --
75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by ben_actl_prem_f.created_by%TYPE;

Line 129: ben_apr_shd.g_api_dml := true; -- Set the api dml status

125: l_last_updated_by := fnd_global.user_id;
126: l_last_update_login := fnd_global.login_id;
127: End If;
128: --
129: ben_apr_shd.g_api_dml := true; -- Set the api dml status
130: --
131: -- Insert the row into: ben_actl_prem_f
132: --
133: insert into ben_actl_prem_f

Line 284: ben_apr_shd.g_api_dml := false; -- Unset the api dml status

280: l_last_updated_by,
281: l_last_update_login
282: );
283: --
284: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
285: hr_utility.set_location(' Leaving:'||l_proc, 15);
286: --
287: Exception
288: When hr_api.check_integrity_violated Then

Line 290: ben_apr_shd.g_api_dml := false; -- Unset the api dml status

286: --
287: Exception
288: When hr_api.check_integrity_violated Then
289: -- A check constraint has been violated
290: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
291: ben_apr_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated

Line 291: ben_apr_shd.constraint_error

287: Exception
288: When hr_api.check_integrity_violated Then
289: -- A check constraint has been violated
290: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
291: ben_apr_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated
295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status

Line 295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status

291: ben_apr_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated
295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
296: ben_apr_shd.constraint_error
297: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
298: When Others Then
299: ben_apr_shd.g_api_dml := false; -- Unset the api dml status

Line 296: ben_apr_shd.constraint_error

292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated
295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
296: ben_apr_shd.constraint_error
297: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
298: When Others Then
299: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
300: Raise;

Line 299: ben_apr_shd.g_api_dml := false; -- Unset the api dml status

295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
296: ben_apr_shd.constraint_error
297: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
298: When Others Then
299: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
300: Raise;
301: End dt_insert_dml;
302: --
303: -- ----------------------------------------------------------------------------

Line 307: (p_rec in out nocopy ben_apr_shd.g_rec_type,

303: -- ----------------------------------------------------------------------------
304: -- |------------------------------< insert_dml >------------------------------|
305: -- ----------------------------------------------------------------------------
306: Procedure insert_dml
307: (p_rec in out nocopy ben_apr_shd.g_rec_type,
308: p_effective_date in date,
309: p_datetrack_mode in varchar2,
310: p_validation_start_date in date,
311: p_validation_end_date in date) is

Line 367: (p_rec in out nocopy ben_apr_shd.g_rec_type,

363: --
364: -- {End Of Comments}
365: -- ----------------------------------------------------------------------------
366: Procedure pre_insert
367: (p_rec in out nocopy ben_apr_shd.g_rec_type,
368: p_effective_date in date,
369: p_datetrack_mode in varchar2,
370: p_validation_start_date in date,
371: p_validation_end_date in date) is

Line 424: (p_rec in ben_apr_shd.g_rec_type,

420: --
421: -- {End Of Comments}
422: -- ----------------------------------------------------------------------------
423: Procedure post_insert
424: (p_rec in ben_apr_shd.g_rec_type,
425: p_effective_date in date,
426: p_datetrack_mode in varchar2,
427: p_validation_start_date in date,
428: p_validation_end_date in date) is

Line 571: p_rec in ben_apr_shd.g_rec_type,

567: -- ----------------------------------------------------------------------------
568: Procedure ins_lck
569: (p_effective_date in date,
570: p_datetrack_mode in varchar2,
571: p_rec in ben_apr_shd.g_rec_type,
572: p_validation_start_date out nocopy date,
573: p_validation_end_date out nocopy date) is
574: --
575: l_proc varchar2(72) := g_package||'ins_lck';

Line 612: p_rec in out nocopy ben_apr_shd.g_rec_type,

608: -- |---------------------------------< ins >----------------------------------|
609: -- ----------------------------------------------------------------------------
610: Procedure ins
611: (
612: p_rec in out nocopy ben_apr_shd.g_rec_type,
613: p_effective_date in date
614: ) is
615: --
616: l_proc varchar2(72) := g_package||'ins';

Line 746: l_rec ben_apr_shd.g_rec_type;

742: p_object_version_number out nocopy number,
743: p_effective_date in date
744: ) is
745: --
746: l_rec ben_apr_shd.g_rec_type;
747: l_proc varchar2(72) := g_package||'ins';
748: --
749: Begin
750: hr_utility.set_location('Entering:'||l_proc, 5);

Line 756: ben_apr_shd.convert_args

752: -- Call conversion function to turn arguments into the
753: -- p_rec structure.
754: --
755: l_rec :=
756: ben_apr_shd.convert_args
757: (
758: null,
759: null,
760: null,