DBA Data[Home] [Help]

APPS.BEN_PBN_UPD dependencies on BEN_PBN_SHD

Line 58: (p_rec in out nocopy ben_pbn_shd.g_rec_type,

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_update_dml
58: (p_rec in out nocopy ben_pbn_shd.g_rec_type,
59: p_effective_date in date,
60: p_datetrack_mode in varchar2,
61: p_validation_start_date in date,
62: p_validation_end_date in date) is

Line 81: ben_pbn_shd.g_api_dml := true; -- Set the api dml status

77: (p_base_table_name => 'ben_pl_bnf_f',
78: p_base_key_column => 'pl_bnf_id',
79: p_base_key_value => p_rec.pl_bnf_id);
80: --
81: ben_pbn_shd.g_api_dml := true; -- Set the api dml status
82: --
83: -- Update the ben_pl_bnf_f Row
84: --
85: update ben_pl_bnf_f

Line 141: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status

137: where pl_bnf_id = p_rec.pl_bnf_id
138: and effective_start_date = p_validation_start_date
139: and effective_end_date = p_validation_end_date;
140: --
141: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
142: --
143: -- Set the effective start and end dates
144: --
145: p_rec.effective_start_date := p_validation_start_date;

Line 153: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status

149: hr_utility.set_location(' Leaving:'||l_proc, 15);
150: Exception
151: When hr_api.check_integrity_violated Then
152: -- A check constraint has been violated
153: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
154: ben_pbn_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated

Line 154: ben_pbn_shd.constraint_error

150: Exception
151: When hr_api.check_integrity_violated Then
152: -- A check constraint has been violated
153: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
154: ben_pbn_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status

Line 158: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status

154: ben_pbn_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
159: ben_pbn_shd.constraint_error
160: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
161: When Others Then
162: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status

Line 159: ben_pbn_shd.constraint_error

155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
159: ben_pbn_shd.constraint_error
160: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
161: When Others Then
162: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
163: Raise;

Line 162: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status

158: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
159: ben_pbn_shd.constraint_error
160: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
161: When Others Then
162: ben_pbn_shd.g_api_dml := false; -- Unset the api dml status
163: Raise;
164: End dt_update_dml;
165: --
166: -- ----------------------------------------------------------------------------

Line 198: (p_rec in out nocopy ben_pbn_shd.g_rec_type,

194: --
195: -- {End Of Comments}
196: -- ----------------------------------------------------------------------------
197: Procedure update_dml
198: (p_rec in out nocopy ben_pbn_shd.g_rec_type,
199: p_effective_date in date,
200: p_datetrack_mode in varchar2,
201: p_validation_start_date in date,
202: p_validation_end_date in date) is

Line 262: (p_rec in out nocopy ben_pbn_shd.g_rec_type,

258: --
259: -- {End Of Comments}
260: -- ----------------------------------------------------------------------------
261: Procedure dt_pre_update
262: (p_rec in out nocopy ben_pbn_shd.g_rec_type,
263: p_effective_date in date,
264: p_datetrack_mode in varchar2,
265: p_validation_start_date in date,
266: p_validation_end_date in date) is

Line 278: ben_pbn_shd.upd_effective_end_date

274: hr_utility.set_location(l_proc, 10);
275: --
276: -- Update the current effective end date
277: --
278: ben_pbn_shd.upd_effective_end_date
279: (p_effective_date => p_effective_date,
280: p_base_key_value => p_rec.pl_bnf_id,
281: p_new_effective_end_date => (p_validation_start_date - 1),
282: p_validation_start_date => p_validation_start_date,

Line 347: (p_rec in out nocopy ben_pbn_shd.g_rec_type,

343: --
344: -- {End Of Comments}
345: -- ----------------------------------------------------------------------------
346: Procedure pre_update
347: (p_rec in out nocopy ben_pbn_shd.g_rec_type,
348: p_effective_date in date,
349: p_datetrack_mode in varchar2,
350: p_validation_start_date in date,
351: p_validation_end_date in date) is

Line 403: (p_rec in ben_pbn_shd.g_rec_type,

399: --
400: -- {End Of Comments}
401: -- ----------------------------------------------------------------------------
402: Procedure post_update
403: (p_rec in ben_pbn_shd.g_rec_type,
404: p_effective_date in date,
405: p_datetrack_mode in varchar2,
406: p_validation_start_date in date,
407: p_validation_end_date in date) is

Line 477: ,p_effective_start_date_o =>ben_pbn_shd.g_old_rec.effective_start_date

473: ,p_effective_date =>p_effective_date
474: ,p_datetrack_mode =>p_datetrack_mode
475: ,p_validation_start_date =>p_validation_start_date
476: ,p_validation_end_date =>p_validation_end_date
477: ,p_effective_start_date_o =>ben_pbn_shd.g_old_rec.effective_start_date
478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date
479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id

Line 478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date

474: ,p_datetrack_mode =>p_datetrack_mode
475: ,p_validation_start_date =>p_validation_start_date
476: ,p_validation_end_date =>p_validation_end_date
477: ,p_effective_start_date_o =>ben_pbn_shd.g_old_rec.effective_start_date
478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date
479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id

Line 479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id

475: ,p_validation_start_date =>p_validation_start_date
476: ,p_validation_end_date =>p_validation_end_date
477: ,p_effective_start_date_o =>ben_pbn_shd.g_old_rec.effective_start_date
478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date
479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id

Line 480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id

476: ,p_validation_end_date =>p_validation_end_date
477: ,p_effective_start_date_o =>ben_pbn_shd.g_old_rec.effective_start_date
478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date
479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd

Line 481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id

477: ,p_effective_start_date_o =>ben_pbn_shd.g_old_rec.effective_start_date
478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date
479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num

Line 482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id

478: ,p_effective_end_date_o =>ben_pbn_shd.g_old_rec.effective_end_date
479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val

Line 483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id

479: ,p_business_group_id_o =>ben_pbn_shd.g_old_rec.business_group_id
480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom

Line 484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd

480: ,p_prtt_enrt_rslt_id_o =>ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id
481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt

Line 485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num

481: ,p_bnf_person_id_o =>ben_pbn_shd.g_old_rec.bnf_person_id
482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt

Line 486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val

482: ,p_organization_id_o =>ben_pbn_shd.g_old_rec.organization_id
483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt

Line 487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom

483: ,p_ttee_person_id_o =>ben_pbn_shd.g_old_rec.ttee_person_id
484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category

Line 488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt

484: ,p_prmry_cntngnt_cd_o =>ben_pbn_shd.g_old_rec.prmry_cntngnt_cd
485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1

Line 489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt

485: ,p_pct_dsgd_num_o =>ben_pbn_shd.g_old_rec.pct_dsgd_num
486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2

Line 490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt

486: ,p_amt_dsgd_val_o =>ben_pbn_shd.g_old_rec.amt_dsgd_val
487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3

Line 491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category

487: ,p_amt_dsgd_uom_o =>ben_pbn_shd.g_old_rec.amt_dsgd_uom
488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4

Line 492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1

488: ,p_dsgn_strt_dt_o =>ben_pbn_shd.g_old_rec.dsgn_strt_dt
489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5

Line 493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2

489: ,p_dsgn_thru_dt_o =>ben_pbn_shd.g_old_rec.dsgn_thru_dt
490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6

Line 494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3

490: ,p_addl_instrn_txt_o =>ben_pbn_shd.g_old_rec.addl_instrn_txt
491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7

Line 495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4

491: ,p_pbn_attribute_category_o =>ben_pbn_shd.g_old_rec.pbn_attribute_category
492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8

Line 496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5

492: ,p_pbn_attribute1_o =>ben_pbn_shd.g_old_rec.pbn_attribute1
493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9

Line 497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6

493: ,p_pbn_attribute2_o =>ben_pbn_shd.g_old_rec.pbn_attribute2
494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10

Line 498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7

494: ,p_pbn_attribute3_o =>ben_pbn_shd.g_old_rec.pbn_attribute3
495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11

Line 499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8

495: ,p_pbn_attribute4_o =>ben_pbn_shd.g_old_rec.pbn_attribute4
496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12

Line 500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9

496: ,p_pbn_attribute5_o =>ben_pbn_shd.g_old_rec.pbn_attribute5
497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13

Line 501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10

497: ,p_pbn_attribute6_o =>ben_pbn_shd.g_old_rec.pbn_attribute6
498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14

Line 502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11

498: ,p_pbn_attribute7_o =>ben_pbn_shd.g_old_rec.pbn_attribute7
499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15

Line 503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12

499: ,p_pbn_attribute8_o =>ben_pbn_shd.g_old_rec.pbn_attribute8
500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16

Line 504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13

500: ,p_pbn_attribute9_o =>ben_pbn_shd.g_old_rec.pbn_attribute9
501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17

Line 505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14

501: ,p_pbn_attribute10_o =>ben_pbn_shd.g_old_rec.pbn_attribute10
502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18

Line 506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15

502: ,p_pbn_attribute11_o =>ben_pbn_shd.g_old_rec.pbn_attribute11
503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19

Line 507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16

503: ,p_pbn_attribute12_o =>ben_pbn_shd.g_old_rec.pbn_attribute12
504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20

Line 508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17

504: ,p_pbn_attribute13_o =>ben_pbn_shd.g_old_rec.pbn_attribute13
505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21

Line 509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18

505: ,p_pbn_attribute14_o =>ben_pbn_shd.g_old_rec.pbn_attribute14
506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22

Line 510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19

506: ,p_pbn_attribute15_o =>ben_pbn_shd.g_old_rec.pbn_attribute15
507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23

Line 511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20

507: ,p_pbn_attribute16_o =>ben_pbn_shd.g_old_rec.pbn_attribute16
508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24

Line 512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21

508: ,p_pbn_attribute17_o =>ben_pbn_shd.g_old_rec.pbn_attribute17
509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25

Line 513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22

509: ,p_pbn_attribute18_o =>ben_pbn_shd.g_old_rec.pbn_attribute18
510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26

Line 514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23

510: ,p_pbn_attribute19_o =>ben_pbn_shd.g_old_rec.pbn_attribute19
511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27

Line 515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24

511: ,p_pbn_attribute20_o =>ben_pbn_shd.g_old_rec.pbn_attribute20
512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28

Line 516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25

512: ,p_pbn_attribute21_o =>ben_pbn_shd.g_old_rec.pbn_attribute21
513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29

Line 517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26

513: ,p_pbn_attribute22_o =>ben_pbn_shd.g_old_rec.pbn_attribute22
514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30

Line 518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27

514: ,p_pbn_attribute23_o =>ben_pbn_shd.g_old_rec.pbn_attribute23
515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id

Line 519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28

515: ,p_pbn_attribute24_o =>ben_pbn_shd.g_old_rec.pbn_attribute24
516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id

Line 520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29

516: ,p_pbn_attribute25_o =>ben_pbn_shd.g_old_rec.pbn_attribute25
517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id

Line 521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30

517: ,p_pbn_attribute26_o =>ben_pbn_shd.g_old_rec.pbn_attribute26
518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date

Line 522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id

518: ,p_pbn_attribute27_o =>ben_pbn_shd.g_old_rec.pbn_attribute27
519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date
526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number

Line 523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id

519: ,p_pbn_attribute28_o =>ben_pbn_shd.g_old_rec.pbn_attribute28
520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date
526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number
527: ,p_per_in_ler_id_o =>ben_pbn_shd.g_old_rec.per_in_ler_id

Line 524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id

520: ,p_pbn_attribute29_o =>ben_pbn_shd.g_old_rec.pbn_attribute29
521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date
526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number
527: ,p_per_in_ler_id_o =>ben_pbn_shd.g_old_rec.per_in_ler_id
528: );

Line 525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date

521: ,p_pbn_attribute30_o =>ben_pbn_shd.g_old_rec.pbn_attribute30
522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date
526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number
527: ,p_per_in_ler_id_o =>ben_pbn_shd.g_old_rec.per_in_ler_id
528: );
529: --

Line 526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number

522: ,p_request_id_o =>ben_pbn_shd.g_old_rec.request_id
523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date
526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number
527: ,p_per_in_ler_id_o =>ben_pbn_shd.g_old_rec.per_in_ler_id
528: );
529: --
530: exception

Line 527: ,p_per_in_ler_id_o =>ben_pbn_shd.g_old_rec.per_in_ler_id

523: ,p_program_application_id_o =>ben_pbn_shd.g_old_rec.program_application_id
524: ,p_program_id_o =>ben_pbn_shd.g_old_rec.program_id
525: ,p_program_update_date_o =>ben_pbn_shd.g_old_rec.program_update_date
526: ,p_object_version_number_o =>ben_pbn_shd.g_old_rec.object_version_number
527: ,p_per_in_ler_id_o =>ben_pbn_shd.g_old_rec.per_in_ler_id
528: );
529: --
530: exception
531: --

Line 589: Procedure convert_defs(p_rec in out nocopy ben_pbn_shd.g_rec_type) is

585: -- Internal Row Handler Use Only.
586: --
587: -- {End Of Comments}
588: -- ----------------------------------------------------------------------------
589: Procedure convert_defs(p_rec in out nocopy ben_pbn_shd.g_rec_type) is
590: --
591: l_proc varchar2(72) := g_package||'convert_defs';
592: --
593: Begin

Line 604: ben_pbn_shd.g_old_rec.business_group_id;

600: -- is being used then we must set to the 'current' argument value.
601: --
602: If (p_rec.business_group_id = hr_api.g_number) then
603: p_rec.business_group_id :=
604: ben_pbn_shd.g_old_rec.business_group_id;
605: End If;
606: If (p_rec.prtt_enrt_rslt_id = hr_api.g_number) then
607: p_rec.prtt_enrt_rslt_id :=
608: ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id;

Line 608: ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id;

604: ben_pbn_shd.g_old_rec.business_group_id;
605: End If;
606: If (p_rec.prtt_enrt_rslt_id = hr_api.g_number) then
607: p_rec.prtt_enrt_rslt_id :=
608: ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id;
609: End If;
610: If (p_rec.bnf_person_id = hr_api.g_number) then
611: p_rec.bnf_person_id :=
612: ben_pbn_shd.g_old_rec.bnf_person_id;

Line 612: ben_pbn_shd.g_old_rec.bnf_person_id;

608: ben_pbn_shd.g_old_rec.prtt_enrt_rslt_id;
609: End If;
610: If (p_rec.bnf_person_id = hr_api.g_number) then
611: p_rec.bnf_person_id :=
612: ben_pbn_shd.g_old_rec.bnf_person_id;
613: End If;
614: If (p_rec.organization_id = hr_api.g_number) then
615: p_rec.organization_id :=
616: ben_pbn_shd.g_old_rec.organization_id;

Line 616: ben_pbn_shd.g_old_rec.organization_id;

612: ben_pbn_shd.g_old_rec.bnf_person_id;
613: End If;
614: If (p_rec.organization_id = hr_api.g_number) then
615: p_rec.organization_id :=
616: ben_pbn_shd.g_old_rec.organization_id;
617: End If;
618: If (p_rec.ttee_person_id = hr_api.g_number) then
619: p_rec.ttee_person_id :=
620: ben_pbn_shd.g_old_rec.ttee_person_id;

Line 620: ben_pbn_shd.g_old_rec.ttee_person_id;

616: ben_pbn_shd.g_old_rec.organization_id;
617: End If;
618: If (p_rec.ttee_person_id = hr_api.g_number) then
619: p_rec.ttee_person_id :=
620: ben_pbn_shd.g_old_rec.ttee_person_id;
621: End If;
622: If (p_rec.prmry_cntngnt_cd = hr_api.g_varchar2) then
623: p_rec.prmry_cntngnt_cd :=
624: ben_pbn_shd.g_old_rec.prmry_cntngnt_cd;

Line 624: ben_pbn_shd.g_old_rec.prmry_cntngnt_cd;

620: ben_pbn_shd.g_old_rec.ttee_person_id;
621: End If;
622: If (p_rec.prmry_cntngnt_cd = hr_api.g_varchar2) then
623: p_rec.prmry_cntngnt_cd :=
624: ben_pbn_shd.g_old_rec.prmry_cntngnt_cd;
625: End If;
626: If (p_rec.pct_dsgd_num = hr_api.g_number) then
627: p_rec.pct_dsgd_num :=
628: ben_pbn_shd.g_old_rec.pct_dsgd_num;

Line 628: ben_pbn_shd.g_old_rec.pct_dsgd_num;

624: ben_pbn_shd.g_old_rec.prmry_cntngnt_cd;
625: End If;
626: If (p_rec.pct_dsgd_num = hr_api.g_number) then
627: p_rec.pct_dsgd_num :=
628: ben_pbn_shd.g_old_rec.pct_dsgd_num;
629: End If;
630: If (p_rec.amt_dsgd_val = hr_api.g_number) then
631: p_rec.amt_dsgd_val :=
632: ben_pbn_shd.g_old_rec.amt_dsgd_val;

Line 632: ben_pbn_shd.g_old_rec.amt_dsgd_val;

628: ben_pbn_shd.g_old_rec.pct_dsgd_num;
629: End If;
630: If (p_rec.amt_dsgd_val = hr_api.g_number) then
631: p_rec.amt_dsgd_val :=
632: ben_pbn_shd.g_old_rec.amt_dsgd_val;
633: End If;
634: If (p_rec.amt_dsgd_uom = hr_api.g_varchar2) then
635: p_rec.amt_dsgd_uom :=
636: ben_pbn_shd.g_old_rec.amt_dsgd_uom;

Line 636: ben_pbn_shd.g_old_rec.amt_dsgd_uom;

632: ben_pbn_shd.g_old_rec.amt_dsgd_val;
633: End If;
634: If (p_rec.amt_dsgd_uom = hr_api.g_varchar2) then
635: p_rec.amt_dsgd_uom :=
636: ben_pbn_shd.g_old_rec.amt_dsgd_uom;
637: End If;
638: If (p_rec.dsgn_strt_dt = hr_api.g_date) then
639: p_rec.dsgn_strt_dt :=
640: ben_pbn_shd.g_old_rec.dsgn_strt_dt;

Line 640: ben_pbn_shd.g_old_rec.dsgn_strt_dt;

636: ben_pbn_shd.g_old_rec.amt_dsgd_uom;
637: End If;
638: If (p_rec.dsgn_strt_dt = hr_api.g_date) then
639: p_rec.dsgn_strt_dt :=
640: ben_pbn_shd.g_old_rec.dsgn_strt_dt;
641: End If;
642: If (p_rec.dsgn_thru_dt = hr_api.g_date) then
643: p_rec.dsgn_thru_dt :=
644: ben_pbn_shd.g_old_rec.dsgn_thru_dt;

Line 644: ben_pbn_shd.g_old_rec.dsgn_thru_dt;

640: ben_pbn_shd.g_old_rec.dsgn_strt_dt;
641: End If;
642: If (p_rec.dsgn_thru_dt = hr_api.g_date) then
643: p_rec.dsgn_thru_dt :=
644: ben_pbn_shd.g_old_rec.dsgn_thru_dt;
645: End If;
646: If (p_rec.addl_instrn_txt = hr_api.g_varchar2) then
647: p_rec.addl_instrn_txt :=
648: ben_pbn_shd.g_old_rec.addl_instrn_txt;

Line 648: ben_pbn_shd.g_old_rec.addl_instrn_txt;

644: ben_pbn_shd.g_old_rec.dsgn_thru_dt;
645: End If;
646: If (p_rec.addl_instrn_txt = hr_api.g_varchar2) then
647: p_rec.addl_instrn_txt :=
648: ben_pbn_shd.g_old_rec.addl_instrn_txt;
649: End If;
650: If (p_rec.pbn_attribute_category = hr_api.g_varchar2) then
651: p_rec.pbn_attribute_category :=
652: ben_pbn_shd.g_old_rec.pbn_attribute_category;

Line 652: ben_pbn_shd.g_old_rec.pbn_attribute_category;

648: ben_pbn_shd.g_old_rec.addl_instrn_txt;
649: End If;
650: If (p_rec.pbn_attribute_category = hr_api.g_varchar2) then
651: p_rec.pbn_attribute_category :=
652: ben_pbn_shd.g_old_rec.pbn_attribute_category;
653: End If;
654: If (p_rec.pbn_attribute1 = hr_api.g_varchar2) then
655: p_rec.pbn_attribute1 :=
656: ben_pbn_shd.g_old_rec.pbn_attribute1;

Line 656: ben_pbn_shd.g_old_rec.pbn_attribute1;

652: ben_pbn_shd.g_old_rec.pbn_attribute_category;
653: End If;
654: If (p_rec.pbn_attribute1 = hr_api.g_varchar2) then
655: p_rec.pbn_attribute1 :=
656: ben_pbn_shd.g_old_rec.pbn_attribute1;
657: End If;
658: If (p_rec.pbn_attribute2 = hr_api.g_varchar2) then
659: p_rec.pbn_attribute2 :=
660: ben_pbn_shd.g_old_rec.pbn_attribute2;

Line 660: ben_pbn_shd.g_old_rec.pbn_attribute2;

656: ben_pbn_shd.g_old_rec.pbn_attribute1;
657: End If;
658: If (p_rec.pbn_attribute2 = hr_api.g_varchar2) then
659: p_rec.pbn_attribute2 :=
660: ben_pbn_shd.g_old_rec.pbn_attribute2;
661: End If;
662: If (p_rec.pbn_attribute3 = hr_api.g_varchar2) then
663: p_rec.pbn_attribute3 :=
664: ben_pbn_shd.g_old_rec.pbn_attribute3;

Line 664: ben_pbn_shd.g_old_rec.pbn_attribute3;

660: ben_pbn_shd.g_old_rec.pbn_attribute2;
661: End If;
662: If (p_rec.pbn_attribute3 = hr_api.g_varchar2) then
663: p_rec.pbn_attribute3 :=
664: ben_pbn_shd.g_old_rec.pbn_attribute3;
665: End If;
666: If (p_rec.pbn_attribute4 = hr_api.g_varchar2) then
667: p_rec.pbn_attribute4 :=
668: ben_pbn_shd.g_old_rec.pbn_attribute4;

Line 668: ben_pbn_shd.g_old_rec.pbn_attribute4;

664: ben_pbn_shd.g_old_rec.pbn_attribute3;
665: End If;
666: If (p_rec.pbn_attribute4 = hr_api.g_varchar2) then
667: p_rec.pbn_attribute4 :=
668: ben_pbn_shd.g_old_rec.pbn_attribute4;
669: End If;
670: If (p_rec.pbn_attribute5 = hr_api.g_varchar2) then
671: p_rec.pbn_attribute5 :=
672: ben_pbn_shd.g_old_rec.pbn_attribute5;

Line 672: ben_pbn_shd.g_old_rec.pbn_attribute5;

668: ben_pbn_shd.g_old_rec.pbn_attribute4;
669: End If;
670: If (p_rec.pbn_attribute5 = hr_api.g_varchar2) then
671: p_rec.pbn_attribute5 :=
672: ben_pbn_shd.g_old_rec.pbn_attribute5;
673: End If;
674: If (p_rec.pbn_attribute6 = hr_api.g_varchar2) then
675: p_rec.pbn_attribute6 :=
676: ben_pbn_shd.g_old_rec.pbn_attribute6;

Line 676: ben_pbn_shd.g_old_rec.pbn_attribute6;

672: ben_pbn_shd.g_old_rec.pbn_attribute5;
673: End If;
674: If (p_rec.pbn_attribute6 = hr_api.g_varchar2) then
675: p_rec.pbn_attribute6 :=
676: ben_pbn_shd.g_old_rec.pbn_attribute6;
677: End If;
678: If (p_rec.pbn_attribute7 = hr_api.g_varchar2) then
679: p_rec.pbn_attribute7 :=
680: ben_pbn_shd.g_old_rec.pbn_attribute7;

Line 680: ben_pbn_shd.g_old_rec.pbn_attribute7;

676: ben_pbn_shd.g_old_rec.pbn_attribute6;
677: End If;
678: If (p_rec.pbn_attribute7 = hr_api.g_varchar2) then
679: p_rec.pbn_attribute7 :=
680: ben_pbn_shd.g_old_rec.pbn_attribute7;
681: End If;
682: If (p_rec.pbn_attribute8 = hr_api.g_varchar2) then
683: p_rec.pbn_attribute8 :=
684: ben_pbn_shd.g_old_rec.pbn_attribute8;

Line 684: ben_pbn_shd.g_old_rec.pbn_attribute8;

680: ben_pbn_shd.g_old_rec.pbn_attribute7;
681: End If;
682: If (p_rec.pbn_attribute8 = hr_api.g_varchar2) then
683: p_rec.pbn_attribute8 :=
684: ben_pbn_shd.g_old_rec.pbn_attribute8;
685: End If;
686: If (p_rec.pbn_attribute9 = hr_api.g_varchar2) then
687: p_rec.pbn_attribute9 :=
688: ben_pbn_shd.g_old_rec.pbn_attribute9;

Line 688: ben_pbn_shd.g_old_rec.pbn_attribute9;

684: ben_pbn_shd.g_old_rec.pbn_attribute8;
685: End If;
686: If (p_rec.pbn_attribute9 = hr_api.g_varchar2) then
687: p_rec.pbn_attribute9 :=
688: ben_pbn_shd.g_old_rec.pbn_attribute9;
689: End If;
690: If (p_rec.pbn_attribute10 = hr_api.g_varchar2) then
691: p_rec.pbn_attribute10 :=
692: ben_pbn_shd.g_old_rec.pbn_attribute10;

Line 692: ben_pbn_shd.g_old_rec.pbn_attribute10;

688: ben_pbn_shd.g_old_rec.pbn_attribute9;
689: End If;
690: If (p_rec.pbn_attribute10 = hr_api.g_varchar2) then
691: p_rec.pbn_attribute10 :=
692: ben_pbn_shd.g_old_rec.pbn_attribute10;
693: End If;
694: If (p_rec.pbn_attribute11 = hr_api.g_varchar2) then
695: p_rec.pbn_attribute11 :=
696: ben_pbn_shd.g_old_rec.pbn_attribute11;

Line 696: ben_pbn_shd.g_old_rec.pbn_attribute11;

692: ben_pbn_shd.g_old_rec.pbn_attribute10;
693: End If;
694: If (p_rec.pbn_attribute11 = hr_api.g_varchar2) then
695: p_rec.pbn_attribute11 :=
696: ben_pbn_shd.g_old_rec.pbn_attribute11;
697: End If;
698: If (p_rec.pbn_attribute12 = hr_api.g_varchar2) then
699: p_rec.pbn_attribute12 :=
700: ben_pbn_shd.g_old_rec.pbn_attribute12;

Line 700: ben_pbn_shd.g_old_rec.pbn_attribute12;

696: ben_pbn_shd.g_old_rec.pbn_attribute11;
697: End If;
698: If (p_rec.pbn_attribute12 = hr_api.g_varchar2) then
699: p_rec.pbn_attribute12 :=
700: ben_pbn_shd.g_old_rec.pbn_attribute12;
701: End If;
702: If (p_rec.pbn_attribute13 = hr_api.g_varchar2) then
703: p_rec.pbn_attribute13 :=
704: ben_pbn_shd.g_old_rec.pbn_attribute13;

Line 704: ben_pbn_shd.g_old_rec.pbn_attribute13;

700: ben_pbn_shd.g_old_rec.pbn_attribute12;
701: End If;
702: If (p_rec.pbn_attribute13 = hr_api.g_varchar2) then
703: p_rec.pbn_attribute13 :=
704: ben_pbn_shd.g_old_rec.pbn_attribute13;
705: End If;
706: If (p_rec.pbn_attribute14 = hr_api.g_varchar2) then
707: p_rec.pbn_attribute14 :=
708: ben_pbn_shd.g_old_rec.pbn_attribute14;

Line 708: ben_pbn_shd.g_old_rec.pbn_attribute14;

704: ben_pbn_shd.g_old_rec.pbn_attribute13;
705: End If;
706: If (p_rec.pbn_attribute14 = hr_api.g_varchar2) then
707: p_rec.pbn_attribute14 :=
708: ben_pbn_shd.g_old_rec.pbn_attribute14;
709: End If;
710: If (p_rec.pbn_attribute15 = hr_api.g_varchar2) then
711: p_rec.pbn_attribute15 :=
712: ben_pbn_shd.g_old_rec.pbn_attribute15;

Line 712: ben_pbn_shd.g_old_rec.pbn_attribute15;

708: ben_pbn_shd.g_old_rec.pbn_attribute14;
709: End If;
710: If (p_rec.pbn_attribute15 = hr_api.g_varchar2) then
711: p_rec.pbn_attribute15 :=
712: ben_pbn_shd.g_old_rec.pbn_attribute15;
713: End If;
714: If (p_rec.pbn_attribute16 = hr_api.g_varchar2) then
715: p_rec.pbn_attribute16 :=
716: ben_pbn_shd.g_old_rec.pbn_attribute16;

Line 716: ben_pbn_shd.g_old_rec.pbn_attribute16;

712: ben_pbn_shd.g_old_rec.pbn_attribute15;
713: End If;
714: If (p_rec.pbn_attribute16 = hr_api.g_varchar2) then
715: p_rec.pbn_attribute16 :=
716: ben_pbn_shd.g_old_rec.pbn_attribute16;
717: End If;
718: If (p_rec.pbn_attribute17 = hr_api.g_varchar2) then
719: p_rec.pbn_attribute17 :=
720: ben_pbn_shd.g_old_rec.pbn_attribute17;

Line 720: ben_pbn_shd.g_old_rec.pbn_attribute17;

716: ben_pbn_shd.g_old_rec.pbn_attribute16;
717: End If;
718: If (p_rec.pbn_attribute17 = hr_api.g_varchar2) then
719: p_rec.pbn_attribute17 :=
720: ben_pbn_shd.g_old_rec.pbn_attribute17;
721: End If;
722: If (p_rec.pbn_attribute18 = hr_api.g_varchar2) then
723: p_rec.pbn_attribute18 :=
724: ben_pbn_shd.g_old_rec.pbn_attribute18;

Line 724: ben_pbn_shd.g_old_rec.pbn_attribute18;

720: ben_pbn_shd.g_old_rec.pbn_attribute17;
721: End If;
722: If (p_rec.pbn_attribute18 = hr_api.g_varchar2) then
723: p_rec.pbn_attribute18 :=
724: ben_pbn_shd.g_old_rec.pbn_attribute18;
725: End If;
726: If (p_rec.pbn_attribute19 = hr_api.g_varchar2) then
727: p_rec.pbn_attribute19 :=
728: ben_pbn_shd.g_old_rec.pbn_attribute19;

Line 728: ben_pbn_shd.g_old_rec.pbn_attribute19;

724: ben_pbn_shd.g_old_rec.pbn_attribute18;
725: End If;
726: If (p_rec.pbn_attribute19 = hr_api.g_varchar2) then
727: p_rec.pbn_attribute19 :=
728: ben_pbn_shd.g_old_rec.pbn_attribute19;
729: End If;
730: If (p_rec.pbn_attribute20 = hr_api.g_varchar2) then
731: p_rec.pbn_attribute20 :=
732: ben_pbn_shd.g_old_rec.pbn_attribute20;

Line 732: ben_pbn_shd.g_old_rec.pbn_attribute20;

728: ben_pbn_shd.g_old_rec.pbn_attribute19;
729: End If;
730: If (p_rec.pbn_attribute20 = hr_api.g_varchar2) then
731: p_rec.pbn_attribute20 :=
732: ben_pbn_shd.g_old_rec.pbn_attribute20;
733: End If;
734: If (p_rec.pbn_attribute21 = hr_api.g_varchar2) then
735: p_rec.pbn_attribute21 :=
736: ben_pbn_shd.g_old_rec.pbn_attribute21;

Line 736: ben_pbn_shd.g_old_rec.pbn_attribute21;

732: ben_pbn_shd.g_old_rec.pbn_attribute20;
733: End If;
734: If (p_rec.pbn_attribute21 = hr_api.g_varchar2) then
735: p_rec.pbn_attribute21 :=
736: ben_pbn_shd.g_old_rec.pbn_attribute21;
737: End If;
738: If (p_rec.pbn_attribute22 = hr_api.g_varchar2) then
739: p_rec.pbn_attribute22 :=
740: ben_pbn_shd.g_old_rec.pbn_attribute22;

Line 740: ben_pbn_shd.g_old_rec.pbn_attribute22;

736: ben_pbn_shd.g_old_rec.pbn_attribute21;
737: End If;
738: If (p_rec.pbn_attribute22 = hr_api.g_varchar2) then
739: p_rec.pbn_attribute22 :=
740: ben_pbn_shd.g_old_rec.pbn_attribute22;
741: End If;
742: If (p_rec.pbn_attribute23 = hr_api.g_varchar2) then
743: p_rec.pbn_attribute23 :=
744: ben_pbn_shd.g_old_rec.pbn_attribute23;

Line 744: ben_pbn_shd.g_old_rec.pbn_attribute23;

740: ben_pbn_shd.g_old_rec.pbn_attribute22;
741: End If;
742: If (p_rec.pbn_attribute23 = hr_api.g_varchar2) then
743: p_rec.pbn_attribute23 :=
744: ben_pbn_shd.g_old_rec.pbn_attribute23;
745: End If;
746: If (p_rec.pbn_attribute24 = hr_api.g_varchar2) then
747: p_rec.pbn_attribute24 :=
748: ben_pbn_shd.g_old_rec.pbn_attribute24;

Line 748: ben_pbn_shd.g_old_rec.pbn_attribute24;

744: ben_pbn_shd.g_old_rec.pbn_attribute23;
745: End If;
746: If (p_rec.pbn_attribute24 = hr_api.g_varchar2) then
747: p_rec.pbn_attribute24 :=
748: ben_pbn_shd.g_old_rec.pbn_attribute24;
749: End If;
750: If (p_rec.pbn_attribute25 = hr_api.g_varchar2) then
751: p_rec.pbn_attribute25 :=
752: ben_pbn_shd.g_old_rec.pbn_attribute25;

Line 752: ben_pbn_shd.g_old_rec.pbn_attribute25;

748: ben_pbn_shd.g_old_rec.pbn_attribute24;
749: End If;
750: If (p_rec.pbn_attribute25 = hr_api.g_varchar2) then
751: p_rec.pbn_attribute25 :=
752: ben_pbn_shd.g_old_rec.pbn_attribute25;
753: End If;
754: If (p_rec.pbn_attribute26 = hr_api.g_varchar2) then
755: p_rec.pbn_attribute26 :=
756: ben_pbn_shd.g_old_rec.pbn_attribute26;

Line 756: ben_pbn_shd.g_old_rec.pbn_attribute26;

752: ben_pbn_shd.g_old_rec.pbn_attribute25;
753: End If;
754: If (p_rec.pbn_attribute26 = hr_api.g_varchar2) then
755: p_rec.pbn_attribute26 :=
756: ben_pbn_shd.g_old_rec.pbn_attribute26;
757: End If;
758: If (p_rec.pbn_attribute27 = hr_api.g_varchar2) then
759: p_rec.pbn_attribute27 :=
760: ben_pbn_shd.g_old_rec.pbn_attribute27;

Line 760: ben_pbn_shd.g_old_rec.pbn_attribute27;

756: ben_pbn_shd.g_old_rec.pbn_attribute26;
757: End If;
758: If (p_rec.pbn_attribute27 = hr_api.g_varchar2) then
759: p_rec.pbn_attribute27 :=
760: ben_pbn_shd.g_old_rec.pbn_attribute27;
761: End If;
762: If (p_rec.pbn_attribute28 = hr_api.g_varchar2) then
763: p_rec.pbn_attribute28 :=
764: ben_pbn_shd.g_old_rec.pbn_attribute28;

Line 764: ben_pbn_shd.g_old_rec.pbn_attribute28;

760: ben_pbn_shd.g_old_rec.pbn_attribute27;
761: End If;
762: If (p_rec.pbn_attribute28 = hr_api.g_varchar2) then
763: p_rec.pbn_attribute28 :=
764: ben_pbn_shd.g_old_rec.pbn_attribute28;
765: End If;
766: If (p_rec.pbn_attribute29 = hr_api.g_varchar2) then
767: p_rec.pbn_attribute29 :=
768: ben_pbn_shd.g_old_rec.pbn_attribute29;

Line 768: ben_pbn_shd.g_old_rec.pbn_attribute29;

764: ben_pbn_shd.g_old_rec.pbn_attribute28;
765: End If;
766: If (p_rec.pbn_attribute29 = hr_api.g_varchar2) then
767: p_rec.pbn_attribute29 :=
768: ben_pbn_shd.g_old_rec.pbn_attribute29;
769: End If;
770: If (p_rec.pbn_attribute30 = hr_api.g_varchar2) then
771: p_rec.pbn_attribute30 :=
772: ben_pbn_shd.g_old_rec.pbn_attribute30;

Line 772: ben_pbn_shd.g_old_rec.pbn_attribute30;

768: ben_pbn_shd.g_old_rec.pbn_attribute29;
769: End If;
770: If (p_rec.pbn_attribute30 = hr_api.g_varchar2) then
771: p_rec.pbn_attribute30 :=
772: ben_pbn_shd.g_old_rec.pbn_attribute30;
773: End If;
774: If (p_rec.request_id = hr_api.g_number) then
775: p_rec.request_id :=
776: ben_pbn_shd.g_old_rec.request_id;

Line 776: ben_pbn_shd.g_old_rec.request_id;

772: ben_pbn_shd.g_old_rec.pbn_attribute30;
773: End If;
774: If (p_rec.request_id = hr_api.g_number) then
775: p_rec.request_id :=
776: ben_pbn_shd.g_old_rec.request_id;
777: End If;
778: If (p_rec.program_application_id = hr_api.g_number) then
779: p_rec.program_application_id :=
780: ben_pbn_shd.g_old_rec.program_application_id;

Line 780: ben_pbn_shd.g_old_rec.program_application_id;

776: ben_pbn_shd.g_old_rec.request_id;
777: End If;
778: If (p_rec.program_application_id = hr_api.g_number) then
779: p_rec.program_application_id :=
780: ben_pbn_shd.g_old_rec.program_application_id;
781: End If;
782: If (p_rec.program_id = hr_api.g_number) then
783: p_rec.program_id :=
784: ben_pbn_shd.g_old_rec.program_id;

Line 784: ben_pbn_shd.g_old_rec.program_id;

780: ben_pbn_shd.g_old_rec.program_application_id;
781: End If;
782: If (p_rec.program_id = hr_api.g_number) then
783: p_rec.program_id :=
784: ben_pbn_shd.g_old_rec.program_id;
785: End If;
786: If (p_rec.program_update_date = hr_api.g_date) then
787: p_rec.program_update_date :=
788: ben_pbn_shd.g_old_rec.program_update_date;

Line 788: ben_pbn_shd.g_old_rec.program_update_date;

784: ben_pbn_shd.g_old_rec.program_id;
785: End If;
786: If (p_rec.program_update_date = hr_api.g_date) then
787: p_rec.program_update_date :=
788: ben_pbn_shd.g_old_rec.program_update_date;
789: End If;
790: If (p_rec.per_in_ler_id = hr_api.g_number) then
791: p_rec.per_in_ler_id :=
792: ben_pbn_shd.g_old_rec.per_in_ler_id;

Line 792: ben_pbn_shd.g_old_rec.per_in_ler_id;

788: ben_pbn_shd.g_old_rec.program_update_date;
789: End If;
790: If (p_rec.per_in_ler_id = hr_api.g_number) then
791: p_rec.per_in_ler_id :=
792: ben_pbn_shd.g_old_rec.per_in_ler_id;
793: End If;
794: --
795: hr_utility.set_location(' Leaving:'||l_proc, 10);
796: --

Line 804: p_rec in out nocopy ben_pbn_shd.g_rec_type,

800: -- |---------------------------------< upd >----------------------------------|
801: -- ----------------------------------------------------------------------------
802: Procedure upd
803: (
804: p_rec in out nocopy ben_pbn_shd.g_rec_type,
805: p_effective_date in date,
806: p_datetrack_mode in varchar2
807: ) is
808: --

Line 822: ben_pbn_shd.lck

818: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);
819: --
820: -- We must lock the row which we need to update.
821: --
822: ben_pbn_shd.lck
823: (p_effective_date => p_effective_date,
824: p_datetrack_mode => p_datetrack_mode,
825: p_pl_bnf_id => p_rec.pl_bnf_id,
826: p_object_version_number => p_rec.object_version_number,

Line 933: l_rec ben_pbn_shd.g_rec_type;

929: p_effective_date in date,
930: p_datetrack_mode in varchar2
931: ) is
932: --
933: l_rec ben_pbn_shd.g_rec_type;
934: l_proc varchar2(72) := g_package||'upd';
935: --
936: Begin
937: hr_utility.set_location('Entering:'||l_proc, 5);

Line 943: ben_pbn_shd.convert_args

939: -- Call conversion function to turn arguments into the
940: -- l_rec structure.
941: --
942: l_rec :=
943: ben_pbn_shd.convert_args
944: (
945: p_pl_bnf_id,
946: null,
947: null,