DBA Data[Home] [Help]

APPS.BEN_PGM_INS dependencies on BEN_PGM_SHD

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

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_insert_dml
58: (p_rec in out nocopy ben_pgm_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_pgm_shd.g_old_rec.effective_start_date

68: t.creation_date
69: from ben_pgm_f t
70: where t.pgm_id = p_rec.pgm_id
71: and t.effective_start_date =
72: ben_pgm_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_pgm_f.created_by%TYPE;

Line 129: ben_pgm_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_pgm_shd.g_api_dml := true; -- Set the api dml status
130: --
131: -- Insert the row into: ben_pgm_f
132: --
133: insert into ben_pgm_f

Line 370: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status

366: l_last_update_login,
367: p_rec.all_inelig
368: );
369: --
370: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
371: hr_utility.set_location(' Leaving:'||l_proc, 15);
372: --
373: Exception
374: When hr_api.check_integrity_violated Then

Line 376: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status

372: --
373: Exception
374: When hr_api.check_integrity_violated Then
375: -- A check constraint has been violated
376: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
377: ben_pgm_shd.constraint_error
378: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
379: When hr_api.unique_integrity_violated Then
380: -- Unique integrity has been violated

Line 377: ben_pgm_shd.constraint_error

373: Exception
374: When hr_api.check_integrity_violated Then
375: -- A check constraint has been violated
376: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
377: ben_pgm_shd.constraint_error
378: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
379: When hr_api.unique_integrity_violated Then
380: -- Unique integrity has been violated
381: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status

Line 381: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status

377: ben_pgm_shd.constraint_error
378: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
379: When hr_api.unique_integrity_violated Then
380: -- Unique integrity has been violated
381: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
382: ben_pgm_shd.constraint_error
383: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
384: When Others Then
385: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status

Line 382: ben_pgm_shd.constraint_error

378: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
379: When hr_api.unique_integrity_violated Then
380: -- Unique integrity has been violated
381: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
382: ben_pgm_shd.constraint_error
383: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
384: When Others Then
385: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
386: Raise;

Line 385: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status

381: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
382: ben_pgm_shd.constraint_error
383: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
384: When Others Then
385: ben_pgm_shd.g_api_dml := false; -- Unset the api dml status
386: Raise;
387: End dt_insert_dml;
388: --
389: -- ----------------------------------------------------------------------------

Line 393: (p_rec in out nocopy ben_pgm_shd.g_rec_type,

389: -- ----------------------------------------------------------------------------
390: -- |------------------------------< insert_dml >------------------------------|
391: -- ----------------------------------------------------------------------------
392: Procedure insert_dml
393: (p_rec in out nocopy ben_pgm_shd.g_rec_type,
394: p_effective_date in date,
395: p_datetrack_mode in varchar2,
396: p_validation_start_date in date,
397: p_validation_end_date in date) is

Line 453: (p_rec in out nocopy ben_pgm_shd.g_rec_type,

449: --
450: -- {End Of Comments}
451: -- ----------------------------------------------------------------------------
452: Procedure pre_insert
453: (p_rec in out nocopy ben_pgm_shd.g_rec_type,
454: p_effective_date in date,
455: p_datetrack_mode in varchar2,
456: p_validation_start_date in date,
457: p_validation_end_date in date) is

Line 510: (p_rec in ben_pgm_shd.g_rec_type,

506: --
507: -- {End Of Comments}
508: -- ----------------------------------------------------------------------------
509: Procedure post_insert
510: (p_rec in ben_pgm_shd.g_rec_type,
511: p_effective_date in date,
512: p_datetrack_mode in varchar2,
513: p_validation_start_date in date,
514: p_validation_end_date in date) is

Line 582: p_rec in ben_pgm_shd.g_rec_type,

578: -- ----------------------------------------------------------------------------
579: Procedure ins_lck
580: (p_effective_date in date,
581: p_datetrack_mode in varchar2,
582: p_rec in ben_pgm_shd.g_rec_type,
583: p_validation_start_date out nocopy date,
584: p_validation_end_date out nocopy date) is
585: --
586: l_proc varchar2(72) := g_package||'ins_lck';

Line 638: p_rec in out nocopy ben_pgm_shd.g_rec_type,

634: -- |---------------------------------< ins >----------------------------------|
635: -- ----------------------------------------------------------------------------
636: Procedure ins
637: (
638: p_rec in out nocopy ben_pgm_shd.g_rec_type,
639: p_effective_date in date
640: ) is
641: --
642: l_proc varchar2(72) := g_package||'ins';

Line 815: l_rec ben_pgm_shd.g_rec_type;

811: p_object_version_number out nocopy number,
812: p_effective_date in date
813: ) is
814: --
815: l_rec ben_pgm_shd.g_rec_type;
816: l_proc varchar2(72) := g_package||'ins';
817: --
818: Begin
819: hr_utility.set_location('Entering:'||l_proc, 5);

Line 825: ben_pgm_shd.convert_args

821: -- Call conversion function to turn arguments into the
822: -- p_rec structure.
823: --
824: l_rec :=
825: ben_pgm_shd.convert_args
826: (
827: null
828: ,null
829: ,null