DBA Data[Home] [Help]

APPS.BEN_PGC_DEL dependencies on BEN_PGC_SHD

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

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

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

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

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

83: delete from ben_pgm_dpnt_cvg_ctfn_f
84: where pgm_dpnt_cvg_ctfn_id = p_rec.pgm_dpnt_cvg_ctfn_id
85: and effective_start_date >= p_validation_start_date;
86: --
87: ben_pgc_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_pgc_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_pgc_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_pgc_shd.g_rec_type,

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

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

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

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

281: --
282: -- {End Of Comments}
283: -- ----------------------------------------------------------------------------
284: Procedure post_delete
285: (p_rec in ben_pgc_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_pgc_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_pgc_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_pgc_shd.g_old_rec.effective_end_date
311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag

Line 310: ,p_effective_end_date_o =>ben_pgc_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_pgc_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_pgc_shd.g_old_rec.effective_end_date
311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl

Line 311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id

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_pgc_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_pgc_shd.g_old_rec.effective_end_date
311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag

Line 312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id

308: ,p_effective_end_date =>p_rec.effective_end_date
309: ,p_effective_start_date_o =>ben_pgc_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_pgc_shd.g_old_rec.effective_end_date
311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd

Line 313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag

309: ,p_effective_start_date_o =>ben_pgc_shd.g_old_rec.effective_start_date
310: ,p_effective_end_date_o =>ben_pgc_shd.g_old_rec.effective_end_date
311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag

Line 314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl

310: ,p_effective_end_date_o =>ben_pgc_shd.g_old_rec.effective_end_date
311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd

Line 315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag

311: ,p_business_group_id_o =>ben_pgc_shd.g_old_rec.business_group_id
312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category

Line 316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd

312: ,p_pgm_id_o =>ben_pgc_shd.g_old_rec.pgm_id
313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1

Line 317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag

313: ,p_lack_ctfn_sspnd_enrt_flag_o =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2

Line 318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd

314: ,p_ctfn_rqd_when_rl_o =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3

Line 319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category

315: ,p_pfd_flag_o =>ben_pgc_shd.g_old_rec.pfd_flag
316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4

Line 320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1

316: ,p_dpnt_cvg_ctfn_typ_cd_o =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5

Line 321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2

317: ,p_rqd_flag_o =>ben_pgc_shd.g_old_rec.rqd_flag
318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6

Line 322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3

318: ,p_rlshp_typ_cd_o =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7

Line 323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4

319: ,p_pgc_attribute_category_o =>ben_pgc_shd.g_old_rec.pgc_attribute_category
320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8

Line 324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5

320: ,p_pgc_attribute1_o =>ben_pgc_shd.g_old_rec.pgc_attribute1
321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9

Line 325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6

321: ,p_pgc_attribute2_o =>ben_pgc_shd.g_old_rec.pgc_attribute2
322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10

Line 326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7

322: ,p_pgc_attribute3_o =>ben_pgc_shd.g_old_rec.pgc_attribute3
323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11

Line 327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8

323: ,p_pgc_attribute4_o =>ben_pgc_shd.g_old_rec.pgc_attribute4
324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12

Line 328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9

324: ,p_pgc_attribute5_o =>ben_pgc_shd.g_old_rec.pgc_attribute5
325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13

Line 329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10

325: ,p_pgc_attribute6_o =>ben_pgc_shd.g_old_rec.pgc_attribute6
326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14

Line 330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11

326: ,p_pgc_attribute7_o =>ben_pgc_shd.g_old_rec.pgc_attribute7
327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15

Line 331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12

327: ,p_pgc_attribute8_o =>ben_pgc_shd.g_old_rec.pgc_attribute8
328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16

Line 332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13

328: ,p_pgc_attribute9_o =>ben_pgc_shd.g_old_rec.pgc_attribute9
329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17

Line 333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14

329: ,p_pgc_attribute10_o =>ben_pgc_shd.g_old_rec.pgc_attribute10
330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18

Line 334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15

330: ,p_pgc_attribute11_o =>ben_pgc_shd.g_old_rec.pgc_attribute11
331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19

Line 335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16

331: ,p_pgc_attribute12_o =>ben_pgc_shd.g_old_rec.pgc_attribute12
332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20

Line 336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17

332: ,p_pgc_attribute13_o =>ben_pgc_shd.g_old_rec.pgc_attribute13
333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21

Line 337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18

333: ,p_pgc_attribute14_o =>ben_pgc_shd.g_old_rec.pgc_attribute14
334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22

Line 338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19

334: ,p_pgc_attribute15_o =>ben_pgc_shd.g_old_rec.pgc_attribute15
335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23

Line 339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20

335: ,p_pgc_attribute16_o =>ben_pgc_shd.g_old_rec.pgc_attribute16
336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24

Line 340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21

336: ,p_pgc_attribute17_o =>ben_pgc_shd.g_old_rec.pgc_attribute17
337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25

Line 341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22

337: ,p_pgc_attribute18_o =>ben_pgc_shd.g_old_rec.pgc_attribute18
338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26

Line 342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23

338: ,p_pgc_attribute19_o =>ben_pgc_shd.g_old_rec.pgc_attribute19
339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27

Line 343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24

339: ,p_pgc_attribute20_o =>ben_pgc_shd.g_old_rec.pgc_attribute20
340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28

Line 344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25

340: ,p_pgc_attribute21_o =>ben_pgc_shd.g_old_rec.pgc_attribute21
341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29

Line 345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26

341: ,p_pgc_attribute22_o =>ben_pgc_shd.g_old_rec.pgc_attribute22
342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29
349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30

Line 346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27

342: ,p_pgc_attribute23_o =>ben_pgc_shd.g_old_rec.pgc_attribute23
343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29
349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30
350: ,p_object_version_number_o =>ben_pgc_shd.g_old_rec.object_version_number

Line 347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28

343: ,p_pgc_attribute24_o =>ben_pgc_shd.g_old_rec.pgc_attribute24
344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29
349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30
350: ,p_object_version_number_o =>ben_pgc_shd.g_old_rec.object_version_number
351: );

Line 348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29

344: ,p_pgc_attribute25_o =>ben_pgc_shd.g_old_rec.pgc_attribute25
345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29
349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30
350: ,p_object_version_number_o =>ben_pgc_shd.g_old_rec.object_version_number
351: );
352: --

Line 349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30

345: ,p_pgc_attribute26_o =>ben_pgc_shd.g_old_rec.pgc_attribute26
346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29
349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30
350: ,p_object_version_number_o =>ben_pgc_shd.g_old_rec.object_version_number
351: );
352: --
353: exception

Line 350: ,p_object_version_number_o =>ben_pgc_shd.g_old_rec.object_version_number

346: ,p_pgc_attribute27_o =>ben_pgc_shd.g_old_rec.pgc_attribute27
347: ,p_pgc_attribute28_o =>ben_pgc_shd.g_old_rec.pgc_attribute28
348: ,p_pgc_attribute29_o =>ben_pgc_shd.g_old_rec.pgc_attribute29
349: ,p_pgc_attribute30_o =>ben_pgc_shd.g_old_rec.pgc_attribute30
350: ,p_object_version_number_o =>ben_pgc_shd.g_old_rec.object_version_number
351: );
352: --
353: exception
354: --

Line 374: p_rec in out nocopy ben_pgc_shd.g_rec_type,

370: -- |---------------------------------< del >----------------------------------|
371: -- ----------------------------------------------------------------------------
372: Procedure del
373: (
374: p_rec in out nocopy ben_pgc_shd.g_rec_type,
375: p_effective_date in date,
376: p_datetrack_mode in varchar2
377: ) is
378: --

Line 392: ben_pgc_shd.lck

388: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);
389: --
390: -- We must lock the row which we need to delete.
391: --
392: ben_pgc_shd.lck
393: (p_effective_date => p_effective_date,
394: p_datetrack_mode => p_datetrack_mode,
395: p_pgm_dpnt_cvg_ctfn_id => p_rec.pgm_dpnt_cvg_ctfn_id,
396: p_object_version_number => p_rec.object_version_number,

Line 450: l_rec ben_pgc_shd.g_rec_type;

446: p_effective_date in date,
447: p_datetrack_mode in varchar2
448: ) is
449: --
450: l_rec ben_pgc_shd.g_rec_type;
451: l_proc varchar2(72) := g_package||'del';
452: --
453: Begin
454: hr_utility.set_location('Entering:'||l_proc, 5);