DBA Data[Home] [Help]

APPS.BEN_PPR_INS dependencies on BEN_PPR_SHD

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

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

68: t.creation_date
69: from ben_prmry_care_prvdr_f t
70: where t.prmry_care_prvdr_id = p_rec.prmry_care_prvdr_id
71: and t.effective_start_date =
72: ben_ppr_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_prmry_care_prvdr_f.created_by%TYPE;

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

Line 238: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status

234: l_last_updated_by,
235: l_last_update_login
236: );
237: --
238: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
239: hr_utility.set_location(' Leaving:'||l_proc, 15);
240: --
241: Exception
242: When hr_api.check_integrity_violated Then

Line 244: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status

240: --
241: Exception
242: When hr_api.check_integrity_violated Then
243: -- A check constraint has been violated
244: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
245: ben_ppr_shd.constraint_error
246: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
247: When hr_api.unique_integrity_violated Then
248: -- Unique integrity has been violated

Line 245: ben_ppr_shd.constraint_error

241: Exception
242: When hr_api.check_integrity_violated Then
243: -- A check constraint has been violated
244: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
245: ben_ppr_shd.constraint_error
246: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
247: When hr_api.unique_integrity_violated Then
248: -- Unique integrity has been violated
249: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status

Line 249: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status

245: ben_ppr_shd.constraint_error
246: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
247: When hr_api.unique_integrity_violated Then
248: -- Unique integrity has been violated
249: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
250: ben_ppr_shd.constraint_error
251: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
252: When Others Then
253: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status

Line 250: ben_ppr_shd.constraint_error

246: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
247: When hr_api.unique_integrity_violated Then
248: -- Unique integrity has been violated
249: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
250: ben_ppr_shd.constraint_error
251: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
252: When Others Then
253: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
254: Raise;

Line 253: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status

249: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
250: ben_ppr_shd.constraint_error
251: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
252: When Others Then
253: ben_ppr_shd.g_api_dml := false; -- Unset the api dml status
254: Raise;
255: End dt_insert_dml;
256: --
257: -- ----------------------------------------------------------------------------

Line 261: (p_rec in out nocopy ben_ppr_shd.g_rec_type,

257: -- ----------------------------------------------------------------------------
258: -- |------------------------------< insert_dml >------------------------------|
259: -- ----------------------------------------------------------------------------
260: Procedure insert_dml
261: (p_rec in out nocopy ben_ppr_shd.g_rec_type,
262: p_effective_date in date,
263: p_datetrack_mode in varchar2,
264: p_validation_start_date in date,
265: p_validation_end_date in date) is

Line 321: (p_rec in out nocopy ben_ppr_shd.g_rec_type,

317: --
318: -- {End Of Comments}
319: -- ----------------------------------------------------------------------------
320: Procedure pre_insert
321: (p_rec in out nocopy ben_ppr_shd.g_rec_type,
322: p_effective_date in date,
323: p_datetrack_mode in varchar2,
324: p_validation_start_date in date,
325: p_validation_end_date in date) is

Line 375: (p_rec in ben_ppr_shd.g_rec_type,

371: --
372: -- {End Of Comments}
373: -- ----------------------------------------------------------------------------
374: Procedure post_insert
375: (p_rec in ben_ppr_shd.g_rec_type,
376: p_effective_date in date,
377: p_datetrack_mode in varchar2,
378: p_validation_start_date in date,
379: p_validation_end_date in date) is

Line 499: p_rec in ben_ppr_shd.g_rec_type,

495: -- ----------------------------------------------------------------------------
496: Procedure ins_lck
497: (p_effective_date in date,
498: p_datetrack_mode in varchar2,
499: p_rec in ben_ppr_shd.g_rec_type,
500: p_validation_start_date out nocopy date,
501: p_validation_end_date out nocopy date) is
502: --
503: l_proc varchar2(72) := g_package||'ins_lck';

Line 543: p_rec in out nocopy ben_ppr_shd.g_rec_type,

539: -- |---------------------------------< ins >----------------------------------|
540: -- ----------------------------------------------------------------------------
541: Procedure ins
542: (
543: p_rec in out nocopy ben_ppr_shd.g_rec_type,
544: p_effective_date in date
545: ) is
546: --
547: l_proc varchar2(72) := g_package||'ins';

Line 654: l_rec ben_ppr_shd.g_rec_type;

650: p_object_version_number out nocopy number,
651: p_effective_date in date
652: ) is
653: --
654: l_rec ben_ppr_shd.g_rec_type;
655: l_proc varchar2(72) := g_package||'ins';
656: --
657: Begin
658: hr_utility.set_location('Entering:'||l_proc, 5);

Line 664: ben_ppr_shd.convert_args

660: -- Call conversion function to turn arguments into the
661: -- p_rec structure.
662: --
663: l_rec :=
664: ben_ppr_shd.convert_args
665: (
666: null,
667: null,
668: null,