DBA Data[Home] [Help]

APPS.BEN_PTP_DEL dependencies on BEN_PTP_SHD

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

50: --
51: -- {End Of Comments}
52: -- ----------------------------------------------------------------------------
53: Procedure dt_delete_dml
54: (p_rec in out nocopy ben_ptp_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_ptp_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_ptp_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_ptp_shd.g_api_dml := false; -- Unset the api dml status

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

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

74: --
75: ben_ptp_shd.g_api_dml := false; -- Unset the api dml status
76: Else
77: hr_utility.set_location(l_proc, 15);
78: ben_ptp_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_ptp_shd.g_api_dml := false; -- Unset the api dml status

83: delete from ben_pl_typ_f
84: where pl_typ_id = p_rec.pl_typ_id
85: and effective_start_date >= p_validation_start_date;
86: --
87: ben_ptp_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_ptp_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_ptp_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_ptp_shd.g_rec_type,

98: -- ----------------------------------------------------------------------------
99: -- |------------------------------< delete_dml >------------------------------|
100: -- ----------------------------------------------------------------------------
101: Procedure delete_dml
102: (p_rec in out nocopy ben_ptp_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_ptp_shd.g_rec_type,

152: --
153: -- {End Of Comments}
154: -- ----------------------------------------------------------------------------
155: Procedure dt_pre_delete
156: (p_rec in out nocopy ben_ptp_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_ptp_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_ptp_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_ptp_shd.upd_effective_end_date

175: End If;
176: --
177: -- Update the current effective end date record
178: --
179: ben_ptp_shd.upd_effective_end_date
180: (p_effective_date => p_effective_date,
181: p_base_key_value => p_rec.pl_typ_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_ptp_shd.g_rec_type,

223: --
224: -- {End Of Comments}
225: -- ----------------------------------------------------------------------------
226: Procedure pre_delete
227: (p_rec in out nocopy ben_ptp_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_ptp_shd.g_rec_type,

281: --
282: -- {End Of Comments}
283: -- ----------------------------------------------------------------------------
284: Procedure post_delete
285: (p_rec in ben_ptp_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_ptp_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_ptp_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_ptp_shd.g_old_rec.effective_end_date
311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num

Line 310: ,p_effective_end_date_o =>ben_ptp_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_ptp_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_ptp_shd.g_old_rec.effective_end_date
311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd

Line 311: ,p_name_o =>ben_ptp_shd.g_old_rec.name

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_ptp_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_ptp_shd.g_old_rec.effective_end_date
311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd

Line 312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num

308: ,p_effective_end_date =>p_rec.effective_end_date
309: ,p_effective_start_date_o =>ben_ptp_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_ptp_shd.g_old_rec.effective_end_date
311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd

Line 313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num

309: ,p_effective_start_date_o =>ben_ptp_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_ptp_shd.g_old_rec.effective_end_date
311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd

Line 314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd

310: ,p_effective_end_date_o =>ben_ptp_shd.g_old_rec.effective_end_date
311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident

Line 315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd

311: ,p_name_o =>ben_ptp_shd.g_old_rec.name
312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag

Line 316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd

312: ,p_mx_enrl_alwd_num_o =>ben_ptp_shd.g_old_rec.mx_enrl_alwd_num
313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag

Line 317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd

313: ,p_mn_enrl_rqd_num_o =>ben_ptp_shd.g_old_rec.mn_enrl_rqd_num
314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id

Line 318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident

314: ,p_pl_typ_stat_cd_o =>ben_ptp_shd.g_old_rec.pl_typ_stat_cd
315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category

Line 319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag

315: ,p_opt_typ_cd_o =>ben_ptp_shd.g_old_rec.opt_typ_cd
316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1

Line 320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag

316: ,p_opt_dsply_fmt_cd_o =>ben_ptp_shd.g_old_rec.opt_dsply_fmt_cd
317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2

Line 321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id

317: ,p_comp_typ_cd_o =>ben_ptp_shd.g_old_rec.comp_typ_cd
318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3

Line 322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category

318: ,p_ivr_ident_o =>ben_ptp_shd.g_old_rec.ivr_ident
319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4

Line 323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1

319: ,p_no_mx_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mx_enrl_num_dfnd_flag
320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5

Line 324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2

320: ,p_no_mn_enrl_num_dfnd_flag_o =>ben_ptp_shd.g_old_rec.no_mn_enrl_num_dfnd_flag
321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6

Line 325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3

321: ,p_business_group_id_o =>ben_ptp_shd.g_old_rec.business_group_id
322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7

Line 326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4

322: ,p_ptp_attribute_category_o =>ben_ptp_shd.g_old_rec.ptp_attribute_category
323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8

Line 327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5

323: ,p_ptp_attribute1_o =>ben_ptp_shd.g_old_rec.ptp_attribute1
324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9

Line 328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6

324: ,p_ptp_attribute2_o =>ben_ptp_shd.g_old_rec.ptp_attribute2
325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10

Line 329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7

325: ,p_ptp_attribute3_o =>ben_ptp_shd.g_old_rec.ptp_attribute3
326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11

Line 330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8

326: ,p_ptp_attribute4_o =>ben_ptp_shd.g_old_rec.ptp_attribute4
327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12

Line 331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9

327: ,p_ptp_attribute5_o =>ben_ptp_shd.g_old_rec.ptp_attribute5
328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13

Line 332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10

328: ,p_ptp_attribute6_o =>ben_ptp_shd.g_old_rec.ptp_attribute6
329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14

Line 333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11

329: ,p_ptp_attribute7_o =>ben_ptp_shd.g_old_rec.ptp_attribute7
330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15

Line 334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12

330: ,p_ptp_attribute8_o =>ben_ptp_shd.g_old_rec.ptp_attribute8
331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16

Line 335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13

331: ,p_ptp_attribute9_o =>ben_ptp_shd.g_old_rec.ptp_attribute9
332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17

Line 336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14

332: ,p_ptp_attribute10_o =>ben_ptp_shd.g_old_rec.ptp_attribute10
333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18

Line 337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15

333: ,p_ptp_attribute11_o =>ben_ptp_shd.g_old_rec.ptp_attribute11
334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19

Line 338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16

334: ,p_ptp_attribute12_o =>ben_ptp_shd.g_old_rec.ptp_attribute12
335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20

Line 339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17

335: ,p_ptp_attribute13_o =>ben_ptp_shd.g_old_rec.ptp_attribute13
336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21

Line 340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18

336: ,p_ptp_attribute14_o =>ben_ptp_shd.g_old_rec.ptp_attribute14
337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22

Line 341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19

337: ,p_ptp_attribute15_o =>ben_ptp_shd.g_old_rec.ptp_attribute15
338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23

Line 342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20

338: ,p_ptp_attribute16_o =>ben_ptp_shd.g_old_rec.ptp_attribute16
339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24

Line 343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21

339: ,p_ptp_attribute17_o =>ben_ptp_shd.g_old_rec.ptp_attribute17
340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25

Line 344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22

340: ,p_ptp_attribute18_o =>ben_ptp_shd.g_old_rec.ptp_attribute18
341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26

Line 345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23

341: ,p_ptp_attribute19_o =>ben_ptp_shd.g_old_rec.ptp_attribute19
342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27

Line 346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24

342: ,p_ptp_attribute20_o =>ben_ptp_shd.g_old_rec.ptp_attribute20
343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28

Line 347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25

343: ,p_ptp_attribute21_o =>ben_ptp_shd.g_old_rec.ptp_attribute21
344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29

Line 348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26

344: ,p_ptp_attribute22_o =>ben_ptp_shd.g_old_rec.ptp_attribute22
345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30

Line 349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27

345: ,p_ptp_attribute23_o =>ben_ptp_shd.g_old_rec.ptp_attribute23
346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR

Line 350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28

346: ,p_ptp_attribute24_o =>ben_ptp_shd.g_old_rec.ptp_attribute24
347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR

Line 351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29

347: ,p_ptp_attribute25_o =>ben_ptp_shd.g_old_rec.ptp_attribute25
348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code

Line 352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30

348: ,p_ptp_attribute26_o =>ben_ptp_shd.g_old_rec.ptp_attribute26
349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code
356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup

Line 353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR

349: ,p_ptp_attribute27_o =>ben_ptp_shd.g_old_rec.ptp_attribute27
350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code
356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup
357: ,p_object_version_number_o =>ben_ptp_shd.g_old_rec.object_version_number

Line 354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR

350: ,p_ptp_attribute28_o =>ben_ptp_shd.g_old_rec.ptp_attribute28
351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code
356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup
357: ,p_object_version_number_o =>ben_ptp_shd.g_old_rec.object_version_number
358: );

Line 355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code

351: ,p_ptp_attribute29_o =>ben_ptp_shd.g_old_rec.ptp_attribute29
352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code
356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup
357: ,p_object_version_number_o =>ben_ptp_shd.g_old_rec.object_version_number
358: );
359: --

Line 356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup

352: ,p_ptp_attribute30_o =>ben_ptp_shd.g_old_rec.ptp_attribute30
353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code
356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup
357: ,p_object_version_number_o =>ben_ptp_shd.g_old_rec.object_version_number
358: );
359: --
360: exception

Line 357: ,p_object_version_number_o =>ben_ptp_shd.g_old_rec.object_version_number

353: ,p_short_name_o =>ben_ptp_shd.g_old_rec.short_name --FHR
354: ,p_short_code_o =>ben_ptp_shd.g_old_rec.short_code --FHR
355: ,p_legislation_code_o =>ben_ptp_shd.g_old_rec.legislation_code
356: ,p_legislation_subgroup_o =>ben_ptp_shd.g_old_rec.legislation_subgroup
357: ,p_object_version_number_o =>ben_ptp_shd.g_old_rec.object_version_number
358: );
359: --
360: exception
361: --

Line 381: p_rec in out nocopy ben_ptp_shd.g_rec_type,

377: -- |---------------------------------< del >----------------------------------|
378: -- ----------------------------------------------------------------------------
379: Procedure del
380: (
381: p_rec in out nocopy ben_ptp_shd.g_rec_type,
382: p_effective_date in date,
383: p_datetrack_mode in varchar2
384: ) is
385: --

Line 399: ben_ptp_shd.lck

395: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);
396: --
397: -- We must lock the row which we need to delete.
398: --
399: ben_ptp_shd.lck
400: (p_effective_date => p_effective_date,
401: p_datetrack_mode => p_datetrack_mode,
402: p_pl_typ_id => p_rec.pl_typ_id,
403: p_object_version_number => p_rec.object_version_number,

Line 457: l_rec ben_ptp_shd.g_rec_type;

453: p_effective_date in date,
454: p_datetrack_mode in varchar2
455: ) is
456: --
457: l_rec ben_ptp_shd.g_rec_type;
458: l_proc varchar2(72) := g_package||'del';
459: --
460: Begin
461: hr_utility.set_location('Entering:'||l_proc, 5);