DBA Data[Home] [Help]

APPS.BEN_CLP_INS dependencies on BEN_CLP_SHD

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

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

68: t.creation_date
69: from ben_clpse_lf_evt_f t
70: where t.clpse_lf_evt_id = p_rec.clpse_lf_evt_id
71: and t.effective_start_date =
72: ben_clp_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_clpse_lf_evt_f.created_by%TYPE;

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

Line 272: ben_clp_shd.g_api_dml := false; -- Unset the api dml status

268: l_last_updated_by,
269: l_last_update_login
270: );
271: --
272: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
273: hr_utility.set_location(' Leaving:'||l_proc, 15);
274: --
275: Exception
276: When hr_api.check_integrity_violated Then

Line 278: ben_clp_shd.g_api_dml := false; -- Unset the api dml status

274: --
275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
279: ben_clp_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated

Line 279: ben_clp_shd.constraint_error

275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
279: ben_clp_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status

Line 283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status

279: ben_clp_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
284: ben_clp_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_clp_shd.g_api_dml := false; -- Unset the api dml status

Line 284: ben_clp_shd.constraint_error

280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
284: ben_clp_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
288: Raise;

Line 287: ben_clp_shd.g_api_dml := false; -- Unset the api dml status

283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
284: ben_clp_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
288: Raise;
289: End dt_insert_dml;
290: --
291: -- ----------------------------------------------------------------------------

Line 295: (p_rec in out nocopy ben_clp_shd.g_rec_type,

291: -- ----------------------------------------------------------------------------
292: -- |------------------------------< insert_dml >------------------------------|
293: -- ----------------------------------------------------------------------------
294: Procedure insert_dml
295: (p_rec in out nocopy ben_clp_shd.g_rec_type,
296: p_effective_date in date,
297: p_datetrack_mode in varchar2,
298: p_validation_start_date in date,
299: p_validation_end_date in date) is

Line 355: (p_rec in out nocopy ben_clp_shd.g_rec_type,

351: --
352: -- {End Of Comments}
353: -- ----------------------------------------------------------------------------
354: Procedure pre_insert
355: (p_rec in out nocopy ben_clp_shd.g_rec_type,
356: p_effective_date in date,
357: p_datetrack_mode in varchar2,
358: p_validation_start_date in date,
359: p_validation_end_date in date) is

Line 408: (p_rec in ben_clp_shd.g_rec_type,

404: --
405: -- {End Of Comments}
406: -- ----------------------------------------------------------------------------
407: Procedure post_insert
408: (p_rec in ben_clp_shd.g_rec_type,
409: p_effective_date in date,
410: p_datetrack_mode in varchar2,
411: p_validation_start_date in date,
412: p_validation_end_date in date) is

Line 546: p_rec in ben_clp_shd.g_rec_type,

542: -- ----------------------------------------------------------------------------
543: Procedure ins_lck
544: (p_effective_date in date,
545: p_datetrack_mode in varchar2,
546: p_rec in ben_clp_shd.g_rec_type,
547: p_validation_start_date out nocopy date,
548: p_validation_end_date out nocopy date) is
549: --
550: l_proc varchar2(72) := g_package||'ins_lck';

Line 646: p_rec in out nocopy ben_clp_shd.g_rec_type,

642: -- |---------------------------------< ins >----------------------------------|
643: -- ----------------------------------------------------------------------------
644: Procedure ins
645: (
646: p_rec in out nocopy ben_clp_shd.g_rec_type,
647: p_effective_date in date
648: ) is
649: --
650: l_proc varchar2(72) := g_package||'ins';

Line 774: l_rec ben_clp_shd.g_rec_type;

770: p_object_version_number out nocopy number,
771: p_effective_date in date
772: ) is
773: --
774: l_rec ben_clp_shd.g_rec_type;
775: l_proc varchar2(72) := g_package||'ins';
776: --
777: Begin
778: hr_utility.set_location('Entering:'||l_proc, 5);

Line 784: ben_clp_shd.convert_args

780: -- Call conversion function to turn arguments into the
781: -- p_rec structure.
782: --
783: l_rec :=
784: ben_clp_shd.convert_args
785: (
786: null,
787: null,
788: null,