DBA Data[Home] [Help]

APPS.BEN_CTP_INS dependencies on BEN_CTP_SHD

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

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

68: t.creation_date
69: from ben_ptip_f t
70: where t.ptip_id = p_rec.ptip_id
71: and t.effective_start_date =
72: ben_ctp_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_ptip_f.created_by%TYPE;

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

Line 356: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status

352: l_last_update_login,
353: p_rec.all_inelig
354: );
355: --
356: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
357: hr_utility.set_location(' Leaving:'||l_proc, 15);
358: --
359: Exception
360: When hr_api.check_integrity_violated Then

Line 362: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status

358: --
359: Exception
360: When hr_api.check_integrity_violated Then
361: -- A check constraint has been violated
362: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
363: ben_ctp_shd.constraint_error
364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated

Line 363: ben_ctp_shd.constraint_error

359: Exception
360: When hr_api.check_integrity_violated Then
361: -- A check constraint has been violated
362: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
363: ben_ctp_shd.constraint_error
364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated
367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status

Line 367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status

363: ben_ctp_shd.constraint_error
364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated
367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
368: ben_ctp_shd.constraint_error
369: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
370: When Others Then
371: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status

Line 368: ben_ctp_shd.constraint_error

364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated
367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
368: ben_ctp_shd.constraint_error
369: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
370: When Others Then
371: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
372: Raise;

Line 371: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status

367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
368: ben_ctp_shd.constraint_error
369: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
370: When Others Then
371: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
372: Raise;
373: End dt_insert_dml;
374: --
375: -- ----------------------------------------------------------------------------

Line 379: (p_rec in out nocopy ben_ctp_shd.g_rec_type,

375: -- ----------------------------------------------------------------------------
376: -- |------------------------------< insert_dml >------------------------------|
377: -- ----------------------------------------------------------------------------
378: Procedure insert_dml
379: (p_rec in out nocopy ben_ctp_shd.g_rec_type,
380: p_effective_date in date,
381: p_datetrack_mode in varchar2,
382: p_validation_start_date in date,
383: p_validation_end_date in date) is

Line 439: (p_rec in out nocopy ben_ctp_shd.g_rec_type,

435: --
436: -- {End Of Comments}
437: -- ----------------------------------------------------------------------------
438: Procedure pre_insert
439: (p_rec in out nocopy ben_ctp_shd.g_rec_type,
440: p_effective_date in date,
441: p_datetrack_mode in varchar2,
442: p_validation_start_date in date,
443: p_validation_end_date in date) is

Line 496: (p_rec in ben_ctp_shd.g_rec_type,

492: --
493: -- {End Of Comments}
494: -- ----------------------------------------------------------------------------
495: Procedure post_insert
496: (p_rec in ben_ctp_shd.g_rec_type,
497: p_effective_date in date,
498: p_datetrack_mode in varchar2,
499: p_validation_start_date in date,
500: p_validation_end_date in date) is

Line 679: p_rec in ben_ctp_shd.g_rec_type,

675: -- ----------------------------------------------------------------------------
676: Procedure ins_lck
677: (p_effective_date in date,
678: p_datetrack_mode in varchar2,
679: p_rec in ben_ctp_shd.g_rec_type,
680: p_validation_start_date out nocopy date,
681: p_validation_end_date out nocopy date) is
682: --
683: l_proc varchar2(72) := g_package||'ins_lck';

Line 732: p_rec in out nocopy ben_ctp_shd.g_rec_type,

728: -- |---------------------------------< ins >----------------------------------|
729: -- ----------------------------------------------------------------------------
730: Procedure ins
731: (
732: p_rec in out nocopy ben_ctp_shd.g_rec_type,
733: p_effective_date in date
734: ) is
735: --
736: l_proc varchar2(72) := g_package||'ins';

Line 902: l_rec ben_ctp_shd.g_rec_type;

898: p_object_version_number out nocopy number,
899: p_effective_date in date
900: ) is
901: --
902: l_rec ben_ctp_shd.g_rec_type;
903: l_proc varchar2(72) := g_package||'ins';
904: --
905: Begin
906: hr_utility.set_location('Entering:'||l_proc, 5);

Line 912: ben_ctp_shd.convert_args

908: -- Call conversion function to turn arguments into the
909: -- p_rec structure.
910: --
911: l_rec :=
912: ben_ctp_shd.convert_args
913: (
914: null,
915: null,
916: null,