DBA Data[Home] [Help]

APPS.BEN_PPV_BUS dependencies on BEN_PPV_SHD

Line 48: l_api_updating := ben_ppv_shd.api_updating

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

Line 55: <> ben_ppv_shd.g_old_rec.prtl_mo_rt_prtn_val_id) then

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

Line 59: ben_ppv_shd.constraint_error('BEN_PRTL_MO_RT_PRTN_VAL_F_PK');

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

Line 69: ben_ppv_shd.constraint_error('BEN_PRTL_MO_RT_PRTN_VAL_F_PK');

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

Line 180: l_api_updating := ben_ppv_shd.api_updating

176: Begin
177: --
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: l_api_updating := ben_ppv_shd.api_updating
181: (p_prtl_mo_rt_prtn_val_id => p_prtl_mo_rt_prtn_val_id,
182: p_effective_date => p_effective_date,
183: p_object_version_number => p_object_version_number);
184: --

Line 187: <> nvl(ben_ppv_shd.g_old_rec.rndg_cd,hr_api.g_varchar2)

183: p_object_version_number => p_object_version_number);
184: --
185: if (l_api_updating
186: and p_rndg_cd
187: <> nvl(ben_ppv_shd.g_old_rec.rndg_cd,hr_api.g_varchar2)
188: or not l_api_updating)
189: and p_rndg_cd is not null then
190: --
191: -- check if value of lookup falls within lookup type.

Line 266: l_api_updating := ben_ppv_shd.api_updating

262: Begin
263: --
264: hr_utility.set_location('Entering:'||l_proc, 5);
265: --
266: l_api_updating := ben_ppv_shd.api_updating
267: (p_prtl_mo_rt_prtn_val_id => p_prtl_mo_rt_prtn_val_id,
268: p_effective_date => p_effective_date,
269: p_object_version_number => p_object_version_number);
270: --

Line 273: <> ben_ppv_shd.g_old_rec.prtl_mo_prortn_rl

269: p_object_version_number => p_object_version_number);
270: --
271: if (l_api_updating
272: and nvl(p_prtl_mo_prortn_rl,hr_api.g_number)
273: <> ben_ppv_shd.g_old_rec.prtl_mo_prortn_rl
274: or not l_api_updating)
275: and p_prtl_mo_prortn_rl is not null then
276: --
277: -- check if value of formula rule is valid.

Line 354: l_api_updating := ben_ppv_shd.api_updating

350: Begin
351: --
352: hr_utility.set_location('Entering:'||l_proc, 5);
353: --
354: l_api_updating := ben_ppv_shd.api_updating
355: (p_prtl_mo_rt_prtn_val_id => p_prtl_mo_rt_prtn_val_id,
356: p_effective_date => p_effective_date,
357: p_object_version_number => p_object_version_number);
358: --

Line 361: <> ben_ppv_shd.g_old_rec.rndg_rl

357: p_object_version_number => p_object_version_number);
358: --
359: if (l_api_updating
360: and nvl(p_rndg_rl,hr_api.g_number)
361: <> ben_ppv_shd.g_old_rec.rndg_rl
362: or not l_api_updating)
363: and p_rndg_rl is not null then
364: --
365: -- check if value of formula rule is valid.

Line 498: l_api_updating := ben_ppv_shd.api_updating

494: Begin
495: --
496: hr_utility.set_location('Entering:'||l_proc, 5);
497: --
498: l_api_updating := ben_ppv_shd.api_updating
499: (p_prtl_mo_rt_prtn_val_id => p_prtl_mo_rt_prtn_val_id,
500: p_effective_date => p_effective_date,
501: p_object_version_number => p_object_version_number);
502: --

Line 505: <> nvl(ben_ppv_shd.g_old_rec.strt_r_stp_cvg_cd,hr_api.g_varchar2)

501: p_object_version_number => p_object_version_number);
502: --
503: if (l_api_updating
504: and p_strt_r_stp_cvg_cd
505: <> nvl(ben_ppv_shd.g_old_rec.strt_r_stp_cvg_cd,hr_api.g_varchar2)
506: or not l_api_updating)
507: and p_strt_r_stp_cvg_cd is not null then
508: --
509: -- check if value of lookup falls within lookup type.

Line 1029: (p_rec in ben_ppv_shd.g_rec_type,

1025: -- ----------------------------------------------------------------------------
1026: -- |---------------------------< insert_validate >----------------------------|
1027: -- ----------------------------------------------------------------------------
1028: Procedure insert_validate
1029: (p_rec in ben_ppv_shd.g_rec_type,
1030: p_effective_date in date,
1031: p_datetrack_mode in varchar2,
1032: p_validation_start_date in date,
1033: p_validation_end_date in date) is

Line 1121: (p_rec in ben_ppv_shd.g_rec_type,

1117: -- ----------------------------------------------------------------------------
1118: -- |---------------------------< update_validate >----------------------------|
1119: -- ----------------------------------------------------------------------------
1120: Procedure update_validate
1121: (p_rec in ben_ppv_shd.g_rec_type,
1122: p_effective_date in date,
1123: p_datetrack_mode in varchar2,
1124: p_validation_start_date in date,
1125: p_validation_end_date in date) is

Line 1224: (p_rec in ben_ppv_shd.g_rec_type,

1220: -- ----------------------------------------------------------------------------
1221: -- |---------------------------< delete_validate >----------------------------|
1222: -- ----------------------------------------------------------------------------
1223: Procedure delete_validate
1224: (p_rec in ben_ppv_shd.g_rec_type,
1225: p_effective_date in date,
1226: p_datetrack_mode in varchar2,
1227: p_validation_start_date in date,
1228: p_validation_end_date in date) is