DBA Data[Home] [Help]

APPS.BEN_PCT_BUS dependencies on BEN_PCT_SHD

Line 48: l_api_updating := ben_pct_shd.api_updating

44: Begin
45: --
46: hr_utility.set_location('Entering:'||l_proc, 5);
47: --
48: l_api_updating := ben_pct_shd.api_updating
49: (p_effective_date => p_effective_date,
50: p_pl_gd_r_svc_ctfn_id => p_pl_gd_r_svc_ctfn_id,
51: p_object_version_number => p_object_version_number);
52: --

Line 55: <> ben_pct_shd.g_old_rec.pl_gd_r_svc_ctfn_id) then

51: p_object_version_number => p_object_version_number);
52: --
53: if (l_api_updating
54: and nvl(p_pl_gd_r_svc_ctfn_id,hr_api.g_number)
55: <> ben_pct_shd.g_old_rec.pl_gd_r_svc_ctfn_id) then
56: --
57: -- raise error as PK has changed
58: --
59: ben_pct_shd.constraint_error('BEN_PL_GD_R_SVC_CTFN_PK');

Line 59: ben_pct_shd.constraint_error('BEN_PL_GD_R_SVC_CTFN_PK');

55: <> ben_pct_shd.g_old_rec.pl_gd_r_svc_ctfn_id) then
56: --
57: -- raise error as PK has changed
58: --
59: ben_pct_shd.constraint_error('BEN_PL_GD_R_SVC_CTFN_PK');
60: --
61: elsif not l_api_updating then
62: --
63: -- check if PK is null

Line 69: ben_pct_shd.constraint_error('BEN_PL_GD_R_SVC_CTFN_PK');

65: if p_pl_gd_r_svc_ctfn_id is not null then
66: --
67: -- raise error as PK is not null
68: --
69: ben_pct_shd.constraint_error('BEN_PL_GD_R_SVC_CTFN_PK');
70: --
71: end if;
72: --
73: end if;

Line 134: l_api_updating := ben_pct_shd.api_updating

130: Begin
131: --
132: hr_utility.set_location('Entering:'||l_proc, 5);
133: --
134: l_api_updating := ben_pct_shd.api_updating
135: (p_pl_gd_r_svc_ctfn_id => p_pl_gd_r_svc_ctfn_id,
136: p_effective_date => p_effective_date,
137: p_object_version_number => p_object_version_number);
138: --

Line 141: <> ben_pct_shd.g_old_rec.ctfn_rqd_when_rl

137: p_object_version_number => p_object_version_number);
138: --
139: if (l_api_updating
140: and nvl(p_ctfn_rqd_when_rl,hr_api.g_number)
141: <> ben_pct_shd.g_old_rec.ctfn_rqd_when_rl
142: or not l_api_updating)
143: and p_ctfn_rqd_when_rl is not null then
144: --
145: -- check if value of formula rule is valid.

Line 210: l_api_updating := ben_pct_shd.api_updating

206: Begin
207: --
208: hr_utility.set_location('Entering:'||l_proc, 5);
209: --
210: l_api_updating := ben_pct_shd.api_updating
211: (p_pl_gd_r_svc_ctfn_id => p_pl_gd_r_svc_ctfn_id,
212: p_effective_date => p_effective_date,
213: p_object_version_number => p_object_version_number);
214: --

Line 217: <> nvl(ben_pct_shd.g_old_rec.rmbmt_ctfn_typ_cd,hr_api.g_varchar2)

213: p_object_version_number => p_object_version_number);
214: --
215: if (l_api_updating
216: and p_rmbmt_ctfn_typ_cd
217: <> nvl(ben_pct_shd.g_old_rec.rmbmt_ctfn_typ_cd,hr_api.g_varchar2)
218: or not l_api_updating) then
219: --
220: -- check if value of lookup falls within lookup type.
221: --

Line 279: l_api_updating := ben_pct_shd.api_updating

275: Begin
276: --
277: hr_utility.set_location('Entering:'||l_proc, 5);
278: --
279: l_api_updating := ben_pct_shd.api_updating
280: (p_pl_gd_r_svc_ctfn_id => p_pl_gd_r_svc_ctfn_id,
281: p_effective_date => p_effective_date,
282: p_object_version_number => p_object_version_number);
283: --

Line 286: <> nvl(ben_pct_shd.g_old_rec.rqd_flag,hr_api.g_varchar2)

282: p_object_version_number => p_object_version_number);
283: --
284: if (l_api_updating
285: and p_rqd_flag
286: <> nvl(ben_pct_shd.g_old_rec.rqd_flag,hr_api.g_varchar2)
287: or not l_api_updating)
288: and p_rqd_flag is not null then
289: --
290: -- check if value of lookup falls within lookup type.

Line 348: l_api_updating := ben_pct_shd.api_updating

344: Begin
345: --
346: hr_utility.set_location('Entering:'||l_proc, 5);
347: --
348: l_api_updating := ben_pct_shd.api_updating
349: (p_pl_gd_r_svc_ctfn_id => p_pl_gd_r_svc_ctfn_id,
350: p_effective_date => p_effective_date,
351: p_object_version_number => p_object_version_number);
352: --

Line 355: <> nvl(ben_pct_shd.g_old_rec.pfd_flag,hr_api.g_varchar2)

351: p_object_version_number => p_object_version_number);
352: --
353: if (l_api_updating
354: and p_pfd_flag
355: <> nvl(ben_pct_shd.g_old_rec.pfd_flag,hr_api.g_varchar2)
356: or not l_api_updating)
357: and p_pfd_flag is not null then
358: --
359: -- check if value of lookup falls within lookup type.

Line 608: (p_rec in ben_pct_shd.g_rec_type,

604: -- ----------------------------------------------------------------------------
605: -- |---------------------------< insert_validate >----------------------------|
606: -- ----------------------------------------------------------------------------
607: Procedure insert_validate
608: (p_rec in ben_pct_shd.g_rec_type,
609: p_effective_date in date,
610: p_datetrack_mode in varchar2,
611: p_validation_start_date in date,
612: p_validation_end_date in date) is

Line 661: (p_rec in ben_pct_shd.g_rec_type,

657: -- ----------------------------------------------------------------------------
658: -- |---------------------------< update_validate >----------------------------|
659: -- ----------------------------------------------------------------------------
660: Procedure update_validate
661: (p_rec in ben_pct_shd.g_rec_type,
662: p_effective_date in date,
663: p_datetrack_mode in varchar2,
664: p_validation_start_date in date,
665: p_validation_end_date in date) is

Line 723: (p_rec in ben_pct_shd.g_rec_type,

719: -- ----------------------------------------------------------------------------
720: -- |---------------------------< delete_validate >----------------------------|
721: -- ----------------------------------------------------------------------------
722: Procedure delete_validate
723: (p_rec in ben_pct_shd.g_rec_type,
724: p_effective_date in date,
725: p_datetrack_mode in varchar2,
726: p_validation_start_date in date,
727: p_validation_end_date in date) is