DBA Data[Home] [Help]

APPS.BEN_BPR_DEL dependencies on BEN_BPR_SHD

Line 54: (p_rec in out nocopy ben_bpr_shd.g_rec_type,

50: --
51: -- {End Of Comments}
52: -- ----------------------------------------------------------------------------
53: Procedure dt_delete_dml
54: (p_rec in out nocopy ben_bpr_shd.g_rec_type,
55: p_effective_date in date,
56: p_datetrack_mode in varchar2,
57: p_validation_start_date in date,
58: p_validation_end_date in date) is

Line 66: ben_bpr_shd.g_api_dml := true; -- Set the api dml status

62: Begin
63: hr_utility.set_location('Entering:'||l_proc, 5);
64: If (p_datetrack_mode = 'DELETE_NEXT_CHANGE') then
65: hr_utility.set_location(l_proc, 10);
66: ben_bpr_shd.g_api_dml := true; -- Set the api dml status
67: --
68: -- Delete the where the effective start date is equal
69: -- to the validation end date.
70: --

Line 75: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status

71: delete from ben_bnft_pool_rlovr_rqmt_f
72: where bnft_pool_rlovr_rqmt_id = p_rec.bnft_pool_rlovr_rqmt_id
73: and effective_start_date = p_validation_start_date;
74: --
75: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status
76: Else
77: hr_utility.set_location(l_proc, 15);
78: ben_bpr_shd.g_api_dml := true; -- Set the api dml status
79: --

Line 78: ben_bpr_shd.g_api_dml := true; -- Set the api dml status

74: --
75: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status
76: Else
77: hr_utility.set_location(l_proc, 15);
78: ben_bpr_shd.g_api_dml := true; -- Set the api dml status
79: --
80: -- Delete the row(s) where the effective start date is greater than
81: -- or equal to the validation start date.
82: --

Line 87: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status

83: delete from ben_bnft_pool_rlovr_rqmt_f
84: where bnft_pool_rlovr_rqmt_id = p_rec.bnft_pool_rlovr_rqmt_id
85: and effective_start_date >= p_validation_start_date;
86: --
87: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status
88: End If;
89: --
90: hr_utility.set_location(' Leaving:'||l_proc, 20);
91: --

Line 94: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status

90: hr_utility.set_location(' Leaving:'||l_proc, 20);
91: --
92: Exception
93: When Others Then
94: ben_bpr_shd.g_api_dml := false; -- Unset the api dml status
95: Raise;
96: End dt_delete_dml;
97: --
98: -- ----------------------------------------------------------------------------

Line 102: (p_rec in out nocopy ben_bpr_shd.g_rec_type,

98: -- ----------------------------------------------------------------------------
99: -- |------------------------------< delete_dml >------------------------------|
100: -- ----------------------------------------------------------------------------
101: Procedure delete_dml
102: (p_rec in out nocopy ben_bpr_shd.g_rec_type,
103: p_effective_date in date,
104: p_datetrack_mode in varchar2,
105: p_validation_start_date in date,
106: p_validation_end_date in date) is

Line 156: (p_rec in out nocopy ben_bpr_shd.g_rec_type,

152: --
153: -- {End Of Comments}
154: -- ----------------------------------------------------------------------------
155: Procedure dt_pre_delete
156: (p_rec in out nocopy ben_bpr_shd.g_rec_type,
157: p_effective_date in date,
158: p_datetrack_mode in varchar2,
159: p_validation_start_date in date,
160: p_validation_end_date in date) is

Line 169: p_rec.effective_start_date := ben_bpr_shd.g_old_rec.effective_start_date;

165: hr_utility.set_location('Entering:'||l_proc, 5);
166: --
167: If (p_datetrack_mode <> 'ZAP') then
168: --
169: p_rec.effective_start_date := ben_bpr_shd.g_old_rec.effective_start_date;
170: --
171: If (p_datetrack_mode = 'DELETE') then
172: p_rec.effective_end_date := p_validation_start_date - 1;
173: Else

Line 179: ben_bpr_shd.upd_effective_end_date

175: End If;
176: --
177: -- Update the current effective end date record
178: --
179: ben_bpr_shd.upd_effective_end_date
180: (p_effective_date => p_effective_date,
181: p_base_key_value => p_rec.bnft_pool_rlovr_rqmt_id,
182: p_new_effective_end_date => p_rec.effective_end_date,
183: p_validation_start_date => p_validation_start_date,

Line 227: (p_rec in out nocopy ben_bpr_shd.g_rec_type,

223: --
224: -- {End Of Comments}
225: -- ----------------------------------------------------------------------------
226: Procedure pre_delete
227: (p_rec in out nocopy ben_bpr_shd.g_rec_type,
228: p_effective_date in date,
229: p_datetrack_mode in varchar2,
230: p_validation_start_date in date,
231: p_validation_end_date in date) is

Line 285: (p_rec in ben_bpr_shd.g_rec_type,

281: --
282: -- {End Of Comments}
283: -- ----------------------------------------------------------------------------
284: Procedure post_delete
285: (p_rec in ben_bpr_shd.g_rec_type,
286: p_effective_date in date,
287: p_datetrack_mode in varchar2,
288: p_validation_start_date in date,
289: p_validation_end_date in date) is

Line 309: ,p_effective_start_date_o =>ben_bpr_shd.g_old_rec.effective_start_date

305: ,p_validation_start_date =>p_validation_start_date
306: ,p_validation_end_date =>p_validation_end_date
307: ,p_effective_start_date =>p_rec.effective_start_date
308: ,p_effective_end_date =>p_rec.effective_end_date
309: ,p_effective_start_date_o =>ben_bpr_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date
311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag

Line 310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date

306: ,p_validation_end_date =>p_validation_end_date
307: ,p_effective_start_date =>p_rec.effective_start_date
308: ,p_effective_end_date =>p_rec.effective_end_date
309: ,p_effective_start_date_o =>ben_bpr_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date
311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag

Line 311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag

307: ,p_effective_start_date =>p_rec.effective_start_date
308: ,p_effective_end_date =>p_rec.effective_end_date
309: ,p_effective_start_date_o =>ben_bpr_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date
311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num

Line 312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag

308: ,p_effective_end_date =>p_rec.effective_end_date
309: ,p_effective_start_date_o =>ben_bpr_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date
311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl

Line 313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag

309: ,p_effective_start_date_o =>ben_bpr_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date
311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val

Line 314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag

310: ,p_effective_end_date_o =>ben_bpr_shd.g_old_rec.effective_end_date
311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val

Line 315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num

311: ,p_no_mn_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_pct_dfnd_flag
312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd

Line 316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl

312: ,p_no_mx_rlovr_pct_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_pct_dfnd_flag
313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl

Line 317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val

313: ,p_no_mn_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mn_rlovr_val_dfnd_flag
314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd

Line 318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val

314: ,p_no_mx_rlovr_val_dfnd_flag_o =>ben_bpr_shd.g_old_rec.no_mx_rlovr_val_dfnd_flag
315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl

Line 319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd

315: ,p_rlovr_val_incrmt_num_o =>ben_bpr_shd.g_old_rec.rlovr_val_incrmt_num
316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl

Line 320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl

316: ,p_rlovr_val_rl_o =>ben_bpr_shd.g_old_rec.rlovr_val_rl
317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num

Line 321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd

317: ,p_mn_rlovr_val_o =>ben_bpr_shd.g_old_rec.mn_rlovr_val
318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num

Line 322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl

318: ,p_mx_rlovr_val_o =>ben_bpr_shd.g_old_rec.mx_rlovr_val
319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num

Line 323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl

319: ,p_val_rndg_cd_o =>ben_bpr_shd.g_old_rec.val_rndg_cd
320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num

Line 324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num

320: ,p_val_rndg_rl_o =>ben_bpr_shd.g_old_rec.val_rndg_rl
321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd

Line 325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num

321: ,p_pct_rndg_cd_o =>ben_bpr_shd.g_old_rec.pct_rndg_cd
322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num

Line 326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num

322: ,p_pct_rndg_rl_o =>ben_bpr_shd.g_old_rec.pct_rndg_rl
323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id

Line 327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num

323: ,p_prtt_elig_rlovr_rl_o =>ben_bpr_shd.g_old_rec.prtt_elig_rlovr_rl
324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id

Line 328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd

324: ,p_mx_rchd_dflt_ordr_num_o =>ben_bpr_shd.g_old_rec.mx_rchd_dflt_ordr_num
325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id

Line 329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num

325: ,p_pct_rlovr_incrmt_num_o =>ben_bpr_shd.g_old_rec.pct_rlovr_incrmt_num
326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category

Line 330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id

326: ,p_mn_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mn_rlovr_pct_num
327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1

Line 331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id

327: ,p_mx_rlovr_pct_num_o =>ben_bpr_shd.g_old_rec.mx_rlovr_pct_num
328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2

Line 332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id

328: ,p_crs_rlovr_procg_cd_o =>ben_bpr_shd.g_old_rec.crs_rlovr_procg_cd
329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3

Line 333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category

329: ,p_mx_pct_ttl_crs_cn_roll_num_o =>ben_bpr_shd.g_old_rec.mx_pct_ttl_crs_cn_roll_num
330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4

Line 334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1

330: ,p_bnft_prvdr_pool_id_o =>ben_bpr_shd.g_old_rec.bnft_prvdr_pool_id
331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5

Line 335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2

331: ,p_acty_base_rt_id_o =>ben_bpr_shd.g_old_rec.acty_base_rt_id
332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6

Line 336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3

332: ,p_business_group_id_o =>ben_bpr_shd.g_old_rec.business_group_id
333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7

Line 337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4

333: ,p_bpr_attribute_category_o =>ben_bpr_shd.g_old_rec.bpr_attribute_category
334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8

Line 338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5

334: ,p_bpr_attribute1_o =>ben_bpr_shd.g_old_rec.bpr_attribute1
335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9

Line 339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6

335: ,p_bpr_attribute2_o =>ben_bpr_shd.g_old_rec.bpr_attribute2
336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10

Line 340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7

336: ,p_bpr_attribute3_o =>ben_bpr_shd.g_old_rec.bpr_attribute3
337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11

Line 341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8

337: ,p_bpr_attribute4_o =>ben_bpr_shd.g_old_rec.bpr_attribute4
338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12

Line 342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9

338: ,p_bpr_attribute5_o =>ben_bpr_shd.g_old_rec.bpr_attribute5
339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13

Line 343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10

339: ,p_bpr_attribute6_o =>ben_bpr_shd.g_old_rec.bpr_attribute6
340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14

Line 344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11

340: ,p_bpr_attribute7_o =>ben_bpr_shd.g_old_rec.bpr_attribute7
341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15

Line 345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12

341: ,p_bpr_attribute8_o =>ben_bpr_shd.g_old_rec.bpr_attribute8
342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16

Line 346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13

342: ,p_bpr_attribute9_o =>ben_bpr_shd.g_old_rec.bpr_attribute9
343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17

Line 347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14

343: ,p_bpr_attribute10_o =>ben_bpr_shd.g_old_rec.bpr_attribute10
344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18

Line 348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15

344: ,p_bpr_attribute11_o =>ben_bpr_shd.g_old_rec.bpr_attribute11
345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19

Line 349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16

345: ,p_bpr_attribute12_o =>ben_bpr_shd.g_old_rec.bpr_attribute12
346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20

Line 350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17

346: ,p_bpr_attribute13_o =>ben_bpr_shd.g_old_rec.bpr_attribute13
347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21

Line 351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18

347: ,p_bpr_attribute14_o =>ben_bpr_shd.g_old_rec.bpr_attribute14
348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22

Line 352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19

348: ,p_bpr_attribute15_o =>ben_bpr_shd.g_old_rec.bpr_attribute15
349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23

Line 353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20

349: ,p_bpr_attribute16_o =>ben_bpr_shd.g_old_rec.bpr_attribute16
350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24

Line 354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21

350: ,p_bpr_attribute17_o =>ben_bpr_shd.g_old_rec.bpr_attribute17
351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25

Line 355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22

351: ,p_bpr_attribute18_o =>ben_bpr_shd.g_old_rec.bpr_attribute18
352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26

Line 356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23

352: ,p_bpr_attribute19_o =>ben_bpr_shd.g_old_rec.bpr_attribute19
353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27

Line 357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24

353: ,p_bpr_attribute20_o =>ben_bpr_shd.g_old_rec.bpr_attribute20
354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28

Line 358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25

354: ,p_bpr_attribute21_o =>ben_bpr_shd.g_old_rec.bpr_attribute21
355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29

Line 359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26

355: ,p_bpr_attribute22_o =>ben_bpr_shd.g_old_rec.bpr_attribute22
356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29
363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30

Line 360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27

356: ,p_bpr_attribute23_o =>ben_bpr_shd.g_old_rec.bpr_attribute23
357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29
363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30
364: ,p_object_version_number_o =>ben_bpr_shd.g_old_rec.object_version_number

Line 361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28

357: ,p_bpr_attribute24_o =>ben_bpr_shd.g_old_rec.bpr_attribute24
358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29
363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30
364: ,p_object_version_number_o =>ben_bpr_shd.g_old_rec.object_version_number
365: );

Line 362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29

358: ,p_bpr_attribute25_o =>ben_bpr_shd.g_old_rec.bpr_attribute25
359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29
363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30
364: ,p_object_version_number_o =>ben_bpr_shd.g_old_rec.object_version_number
365: );
366: --

Line 363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30

359: ,p_bpr_attribute26_o =>ben_bpr_shd.g_old_rec.bpr_attribute26
360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29
363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30
364: ,p_object_version_number_o =>ben_bpr_shd.g_old_rec.object_version_number
365: );
366: --
367: exception

Line 364: ,p_object_version_number_o =>ben_bpr_shd.g_old_rec.object_version_number

360: ,p_bpr_attribute27_o =>ben_bpr_shd.g_old_rec.bpr_attribute27
361: ,p_bpr_attribute28_o =>ben_bpr_shd.g_old_rec.bpr_attribute28
362: ,p_bpr_attribute29_o =>ben_bpr_shd.g_old_rec.bpr_attribute29
363: ,p_bpr_attribute30_o =>ben_bpr_shd.g_old_rec.bpr_attribute30
364: ,p_object_version_number_o =>ben_bpr_shd.g_old_rec.object_version_number
365: );
366: --
367: exception
368: --

Line 388: p_rec in out nocopy ben_bpr_shd.g_rec_type,

384: -- |---------------------------------< del >----------------------------------|
385: -- ----------------------------------------------------------------------------
386: Procedure del
387: (
388: p_rec in out nocopy ben_bpr_shd.g_rec_type,
389: p_effective_date in date,
390: p_datetrack_mode in varchar2
391: ) is
392: --

Line 406: ben_bpr_shd.lck

402: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);
403: --
404: -- We must lock the row which we need to delete.
405: --
406: ben_bpr_shd.lck
407: (p_effective_date => p_effective_date,
408: p_datetrack_mode => p_datetrack_mode,
409: p_bnft_pool_rlovr_rqmt_id => p_rec.bnft_pool_rlovr_rqmt_id,
410: p_object_version_number => p_rec.object_version_number,

Line 464: l_rec ben_bpr_shd.g_rec_type;

460: p_effective_date in date,
461: p_datetrack_mode in varchar2
462: ) is
463: --
464: l_rec ben_bpr_shd.g_rec_type;
465: l_proc varchar2(72) := g_package||'del';
466: --
467: Begin
468: hr_utility.set_location('Entering:'||l_proc, 5);