DBA Data[Home] [Help]

APPS.BEN_PRD_UPD dependencies on BEN_PRD_SHD

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

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_update_dml
58: (p_rec in out nocopy ben_prd_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_prd_shd.g_api_dml := true; -- Set the api dml status

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

Line 140: ben_prd_shd.g_api_dml := false; -- Unset the api dml status

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

Line 152: ben_prd_shd.g_api_dml := false; -- Unset the api dml status

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

Line 153: ben_prd_shd.constraint_error

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

Line 157: ben_prd_shd.g_api_dml := false; -- Unset the api dml status

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

Line 158: ben_prd_shd.constraint_error

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

Line 161: ben_prd_shd.g_api_dml := false; -- Unset the api dml status

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

Line 197: (p_rec in out nocopy ben_prd_shd.g_rec_type,

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

Line 261: (p_rec in out nocopy ben_prd_shd.g_rec_type,

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

Line 277: ben_prd_shd.upd_effective_end_date

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

Line 346: (p_rec in out nocopy ben_prd_shd.g_rec_type,

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

Line 402: (p_rec in ben_prd_shd.g_rec_type,

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

Line 475: ,p_effective_start_date_o =>ben_prd_shd.g_old_rec.effective_start_date

471: ,p_effective_date =>p_effective_date
472: ,p_datetrack_mode =>p_datetrack_mode
473: ,p_validation_start_date =>p_validation_start_date
474: ,p_validation_end_date =>p_validation_end_date
475: ,p_effective_start_date_o =>ben_prd_shd.g_old_rec.effective_start_date
476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date
477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag

Line 476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date

472: ,p_datetrack_mode =>p_datetrack_mode
473: ,p_validation_start_date =>p_validation_start_date
474: ,p_validation_end_date =>p_validation_end_date
475: ,p_effective_start_date_o =>ben_prd_shd.g_old_rec.effective_start_date
476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date
477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag

Line 477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag

473: ,p_validation_start_date =>p_validation_start_date
474: ,p_validation_end_date =>p_validation_end_date
475: ,p_effective_start_date_o =>ben_prd_shd.g_old_rec.effective_start_date
476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date
477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag

Line 478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag

474: ,p_validation_end_date =>p_validation_end_date
475: ,p_effective_start_date_o =>ben_prd_shd.g_old_rec.effective_start_date
476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date
477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag

Line 479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag

475: ,p_effective_start_date_o =>ben_prd_shd.g_old_rec.effective_start_date
476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date
477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt

Line 480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag

476: ,p_effective_end_date_o =>ben_prd_shd.g_old_rec.effective_end_date
477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt

Line 481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag

477: ,p_use_parnt_ded_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num

Line 482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag

478: ,p_asn_on_chc_of_parnt_flag_o =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num

Line 483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt

479: ,p_use_parnt_prtl_mo_cd_flag_o =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag

Line 484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt

480: ,p_alloc_sme_as_parnt_flag_o =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag

Line 485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num

481: ,p_use_parnt_pymt_sched_flag_o =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag

Line 486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num

482: ,p_no_cmbnd_mx_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id

Line 487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag

483: ,p_cmbnd_mx_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id

Line 488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag

484: ,p_cmbnd_mn_amt_o =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id

Line 489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag

485: ,p_cmbnd_mx_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category

Line 490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id

486: ,p_cmbnd_mn_pct_num_o =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1

Line 491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id

487: ,p_no_cmbnd_mn_amt_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2

Line 492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id

488: ,p_no_cmbnd_mn_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3

Line 493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category

489: ,p_no_cmbnd_mx_pct_dfnd_flag_o =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4

Line 494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1

490: ,p_parnt_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5

Line 495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2

491: ,p_chld_acty_base_rt_id_o =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6

Line 496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3

492: ,p_business_group_id_o =>ben_prd_shd.g_old_rec.business_group_id
493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7

Line 497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4

493: ,p_prd_attribute_category_o =>ben_prd_shd.g_old_rec.prd_attribute_category
494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8

Line 498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5

494: ,p_prd_attribute1_o =>ben_prd_shd.g_old_rec.prd_attribute1
495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9

Line 499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6

495: ,p_prd_attribute2_o =>ben_prd_shd.g_old_rec.prd_attribute2
496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10

Line 500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7

496: ,p_prd_attribute3_o =>ben_prd_shd.g_old_rec.prd_attribute3
497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11

Line 501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8

497: ,p_prd_attribute4_o =>ben_prd_shd.g_old_rec.prd_attribute4
498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12

Line 502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9

498: ,p_prd_attribute5_o =>ben_prd_shd.g_old_rec.prd_attribute5
499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13

Line 503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10

499: ,p_prd_attribute6_o =>ben_prd_shd.g_old_rec.prd_attribute6
500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14

Line 504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11

500: ,p_prd_attribute7_o =>ben_prd_shd.g_old_rec.prd_attribute7
501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15

Line 505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12

501: ,p_prd_attribute8_o =>ben_prd_shd.g_old_rec.prd_attribute8
502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16

Line 506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13

502: ,p_prd_attribute9_o =>ben_prd_shd.g_old_rec.prd_attribute9
503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17

Line 507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14

503: ,p_prd_attribute10_o =>ben_prd_shd.g_old_rec.prd_attribute10
504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18

Line 508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15

504: ,p_prd_attribute11_o =>ben_prd_shd.g_old_rec.prd_attribute11
505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19

Line 509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16

505: ,p_prd_attribute12_o =>ben_prd_shd.g_old_rec.prd_attribute12
506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20

Line 510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17

506: ,p_prd_attribute13_o =>ben_prd_shd.g_old_rec.prd_attribute13
507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21

Line 511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18

507: ,p_prd_attribute14_o =>ben_prd_shd.g_old_rec.prd_attribute14
508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22

Line 512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19

508: ,p_prd_attribute15_o =>ben_prd_shd.g_old_rec.prd_attribute15
509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23

Line 513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20

509: ,p_prd_attribute16_o =>ben_prd_shd.g_old_rec.prd_attribute16
510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24

Line 514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21

510: ,p_prd_attribute17_o =>ben_prd_shd.g_old_rec.prd_attribute17
511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25

Line 515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22

511: ,p_prd_attribute18_o =>ben_prd_shd.g_old_rec.prd_attribute18
512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26

Line 516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23

512: ,p_prd_attribute19_o =>ben_prd_shd.g_old_rec.prd_attribute19
513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27

Line 517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24

513: ,p_prd_attribute20_o =>ben_prd_shd.g_old_rec.prd_attribute20
514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28

Line 518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25

514: ,p_prd_attribute21_o =>ben_prd_shd.g_old_rec.prd_attribute21
515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29

Line 519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26

515: ,p_prd_attribute22_o =>ben_prd_shd.g_old_rec.prd_attribute22
516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29
523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30

Line 520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27

516: ,p_prd_attribute23_o =>ben_prd_shd.g_old_rec.prd_attribute23
517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29
523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30
524: ,p_object_version_number_o =>ben_prd_shd.g_old_rec.object_version_number

Line 521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28

517: ,p_prd_attribute24_o =>ben_prd_shd.g_old_rec.prd_attribute24
518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29
523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30
524: ,p_object_version_number_o =>ben_prd_shd.g_old_rec.object_version_number
525: );

Line 522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29

518: ,p_prd_attribute25_o =>ben_prd_shd.g_old_rec.prd_attribute25
519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29
523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30
524: ,p_object_version_number_o =>ben_prd_shd.g_old_rec.object_version_number
525: );
526: --

Line 523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30

519: ,p_prd_attribute26_o =>ben_prd_shd.g_old_rec.prd_attribute26
520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29
523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30
524: ,p_object_version_number_o =>ben_prd_shd.g_old_rec.object_version_number
525: );
526: --
527: exception

Line 524: ,p_object_version_number_o =>ben_prd_shd.g_old_rec.object_version_number

520: ,p_prd_attribute27_o =>ben_prd_shd.g_old_rec.prd_attribute27
521: ,p_prd_attribute28_o =>ben_prd_shd.g_old_rec.prd_attribute28
522: ,p_prd_attribute29_o =>ben_prd_shd.g_old_rec.prd_attribute29
523: ,p_prd_attribute30_o =>ben_prd_shd.g_old_rec.prd_attribute30
524: ,p_object_version_number_o =>ben_prd_shd.g_old_rec.object_version_number
525: );
526: --
527: exception
528: --

Line 586: Procedure convert_defs(p_rec in out nocopy ben_prd_shd.g_rec_type) is

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

Line 601: ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag;

597: -- is being used then we must set to the 'current' argument value.
598: --
599: If (p_rec.use_parnt_ded_sched_flag = hr_api.g_varchar2) then
600: p_rec.use_parnt_ded_sched_flag :=
601: ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag;
602: End If;
603: If (p_rec.asn_on_chc_of_parnt_flag = hr_api.g_varchar2) then
604: p_rec.asn_on_chc_of_parnt_flag :=
605: ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag;

Line 605: ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag;

601: ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag;
602: End If;
603: If (p_rec.asn_on_chc_of_parnt_flag = hr_api.g_varchar2) then
604: p_rec.asn_on_chc_of_parnt_flag :=
605: ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag;
606: End If;
607: If (p_rec.use_parnt_prtl_mo_cd_flag = hr_api.g_varchar2) then
608: p_rec.use_parnt_prtl_mo_cd_flag :=
609: ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag;

Line 609: ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag;

605: ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag;
606: End If;
607: If (p_rec.use_parnt_prtl_mo_cd_flag = hr_api.g_varchar2) then
608: p_rec.use_parnt_prtl_mo_cd_flag :=
609: ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag;
610: End If;
611: If (p_rec.alloc_sme_as_parnt_flag = hr_api.g_varchar2) then
612: p_rec.alloc_sme_as_parnt_flag :=
613: ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag;

Line 613: ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag;

609: ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag;
610: End If;
611: If (p_rec.alloc_sme_as_parnt_flag = hr_api.g_varchar2) then
612: p_rec.alloc_sme_as_parnt_flag :=
613: ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag;
614: End If;
615: If (p_rec.use_parnt_pymt_sched_flag = hr_api.g_varchar2) then
616: p_rec.use_parnt_pymt_sched_flag :=
617: ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag;

Line 617: ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag;

613: ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag;
614: End If;
615: If (p_rec.use_parnt_pymt_sched_flag = hr_api.g_varchar2) then
616: p_rec.use_parnt_pymt_sched_flag :=
617: ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag;
618: End If;
619: If (p_rec.no_cmbnd_mx_amt_dfnd_flag = hr_api.g_varchar2) then
620: p_rec.no_cmbnd_mx_amt_dfnd_flag :=
621: ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag;

Line 621: ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag;

617: ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag;
618: End If;
619: If (p_rec.no_cmbnd_mx_amt_dfnd_flag = hr_api.g_varchar2) then
620: p_rec.no_cmbnd_mx_amt_dfnd_flag :=
621: ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag;
622: End If;
623: If (p_rec.cmbnd_mx_amt = hr_api.g_number) then
624: p_rec.cmbnd_mx_amt :=
625: ben_prd_shd.g_old_rec.cmbnd_mx_amt;

Line 625: ben_prd_shd.g_old_rec.cmbnd_mx_amt;

621: ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag;
622: End If;
623: If (p_rec.cmbnd_mx_amt = hr_api.g_number) then
624: p_rec.cmbnd_mx_amt :=
625: ben_prd_shd.g_old_rec.cmbnd_mx_amt;
626: End If;
627: If (p_rec.cmbnd_mn_amt = hr_api.g_number) then
628: p_rec.cmbnd_mn_amt :=
629: ben_prd_shd.g_old_rec.cmbnd_mn_amt;

Line 629: ben_prd_shd.g_old_rec.cmbnd_mn_amt;

625: ben_prd_shd.g_old_rec.cmbnd_mx_amt;
626: End If;
627: If (p_rec.cmbnd_mn_amt = hr_api.g_number) then
628: p_rec.cmbnd_mn_amt :=
629: ben_prd_shd.g_old_rec.cmbnd_mn_amt;
630: End If;
631: If (p_rec.cmbnd_mx_pct_num = hr_api.g_number) then
632: p_rec.cmbnd_mx_pct_num :=
633: ben_prd_shd.g_old_rec.cmbnd_mx_pct_num;

Line 633: ben_prd_shd.g_old_rec.cmbnd_mx_pct_num;

629: ben_prd_shd.g_old_rec.cmbnd_mn_amt;
630: End If;
631: If (p_rec.cmbnd_mx_pct_num = hr_api.g_number) then
632: p_rec.cmbnd_mx_pct_num :=
633: ben_prd_shd.g_old_rec.cmbnd_mx_pct_num;
634: End If;
635: If (p_rec.cmbnd_mn_pct_num = hr_api.g_number) then
636: p_rec.cmbnd_mn_pct_num :=
637: ben_prd_shd.g_old_rec.cmbnd_mn_pct_num;

Line 637: ben_prd_shd.g_old_rec.cmbnd_mn_pct_num;

633: ben_prd_shd.g_old_rec.cmbnd_mx_pct_num;
634: End If;
635: If (p_rec.cmbnd_mn_pct_num = hr_api.g_number) then
636: p_rec.cmbnd_mn_pct_num :=
637: ben_prd_shd.g_old_rec.cmbnd_mn_pct_num;
638: End If;
639: If (p_rec.no_cmbnd_mn_amt_dfnd_flag = hr_api.g_varchar2) then
640: p_rec.no_cmbnd_mn_amt_dfnd_flag :=
641: ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag;

Line 641: ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag;

637: ben_prd_shd.g_old_rec.cmbnd_mn_pct_num;
638: End If;
639: If (p_rec.no_cmbnd_mn_amt_dfnd_flag = hr_api.g_varchar2) then
640: p_rec.no_cmbnd_mn_amt_dfnd_flag :=
641: ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag;
642: End If;
643: If (p_rec.no_cmbnd_mn_pct_dfnd_flag = hr_api.g_varchar2) then
644: p_rec.no_cmbnd_mn_pct_dfnd_flag :=
645: ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag;

Line 645: ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag;

641: ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag;
642: End If;
643: If (p_rec.no_cmbnd_mn_pct_dfnd_flag = hr_api.g_varchar2) then
644: p_rec.no_cmbnd_mn_pct_dfnd_flag :=
645: ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag;
646: End If;
647: If (p_rec.no_cmbnd_mx_pct_dfnd_flag = hr_api.g_varchar2) then
648: p_rec.no_cmbnd_mx_pct_dfnd_flag :=
649: ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag;

Line 649: ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag;

645: ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag;
646: End If;
647: If (p_rec.no_cmbnd_mx_pct_dfnd_flag = hr_api.g_varchar2) then
648: p_rec.no_cmbnd_mx_pct_dfnd_flag :=
649: ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag;
650: End If;
651: If (p_rec.parnt_acty_base_rt_id = hr_api.g_number) then
652: p_rec.parnt_acty_base_rt_id :=
653: ben_prd_shd.g_old_rec.parnt_acty_base_rt_id;

Line 653: ben_prd_shd.g_old_rec.parnt_acty_base_rt_id;

649: ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag;
650: End If;
651: If (p_rec.parnt_acty_base_rt_id = hr_api.g_number) then
652: p_rec.parnt_acty_base_rt_id :=
653: ben_prd_shd.g_old_rec.parnt_acty_base_rt_id;
654: End If;
655: If (p_rec.chld_acty_base_rt_id = hr_api.g_number) then
656: p_rec.chld_acty_base_rt_id :=
657: ben_prd_shd.g_old_rec.chld_acty_base_rt_id;

Line 657: ben_prd_shd.g_old_rec.chld_acty_base_rt_id;

653: ben_prd_shd.g_old_rec.parnt_acty_base_rt_id;
654: End If;
655: If (p_rec.chld_acty_base_rt_id = hr_api.g_number) then
656: p_rec.chld_acty_base_rt_id :=
657: ben_prd_shd.g_old_rec.chld_acty_base_rt_id;
658: End If;
659: If (p_rec.business_group_id = hr_api.g_number) then
660: p_rec.business_group_id :=
661: ben_prd_shd.g_old_rec.business_group_id;

Line 661: ben_prd_shd.g_old_rec.business_group_id;

657: ben_prd_shd.g_old_rec.chld_acty_base_rt_id;
658: End If;
659: If (p_rec.business_group_id = hr_api.g_number) then
660: p_rec.business_group_id :=
661: ben_prd_shd.g_old_rec.business_group_id;
662: End If;
663: If (p_rec.prd_attribute_category = hr_api.g_varchar2) then
664: p_rec.prd_attribute_category :=
665: ben_prd_shd.g_old_rec.prd_attribute_category;

Line 665: ben_prd_shd.g_old_rec.prd_attribute_category;

661: ben_prd_shd.g_old_rec.business_group_id;
662: End If;
663: If (p_rec.prd_attribute_category = hr_api.g_varchar2) then
664: p_rec.prd_attribute_category :=
665: ben_prd_shd.g_old_rec.prd_attribute_category;
666: End If;
667: If (p_rec.prd_attribute1 = hr_api.g_varchar2) then
668: p_rec.prd_attribute1 :=
669: ben_prd_shd.g_old_rec.prd_attribute1;

Line 669: ben_prd_shd.g_old_rec.prd_attribute1;

665: ben_prd_shd.g_old_rec.prd_attribute_category;
666: End If;
667: If (p_rec.prd_attribute1 = hr_api.g_varchar2) then
668: p_rec.prd_attribute1 :=
669: ben_prd_shd.g_old_rec.prd_attribute1;
670: End If;
671: If (p_rec.prd_attribute2 = hr_api.g_varchar2) then
672: p_rec.prd_attribute2 :=
673: ben_prd_shd.g_old_rec.prd_attribute2;

Line 673: ben_prd_shd.g_old_rec.prd_attribute2;

669: ben_prd_shd.g_old_rec.prd_attribute1;
670: End If;
671: If (p_rec.prd_attribute2 = hr_api.g_varchar2) then
672: p_rec.prd_attribute2 :=
673: ben_prd_shd.g_old_rec.prd_attribute2;
674: End If;
675: If (p_rec.prd_attribute3 = hr_api.g_varchar2) then
676: p_rec.prd_attribute3 :=
677: ben_prd_shd.g_old_rec.prd_attribute3;

Line 677: ben_prd_shd.g_old_rec.prd_attribute3;

673: ben_prd_shd.g_old_rec.prd_attribute2;
674: End If;
675: If (p_rec.prd_attribute3 = hr_api.g_varchar2) then
676: p_rec.prd_attribute3 :=
677: ben_prd_shd.g_old_rec.prd_attribute3;
678: End If;
679: If (p_rec.prd_attribute4 = hr_api.g_varchar2) then
680: p_rec.prd_attribute4 :=
681: ben_prd_shd.g_old_rec.prd_attribute4;

Line 681: ben_prd_shd.g_old_rec.prd_attribute4;

677: ben_prd_shd.g_old_rec.prd_attribute3;
678: End If;
679: If (p_rec.prd_attribute4 = hr_api.g_varchar2) then
680: p_rec.prd_attribute4 :=
681: ben_prd_shd.g_old_rec.prd_attribute4;
682: End If;
683: If (p_rec.prd_attribute5 = hr_api.g_varchar2) then
684: p_rec.prd_attribute5 :=
685: ben_prd_shd.g_old_rec.prd_attribute5;

Line 685: ben_prd_shd.g_old_rec.prd_attribute5;

681: ben_prd_shd.g_old_rec.prd_attribute4;
682: End If;
683: If (p_rec.prd_attribute5 = hr_api.g_varchar2) then
684: p_rec.prd_attribute5 :=
685: ben_prd_shd.g_old_rec.prd_attribute5;
686: End If;
687: If (p_rec.prd_attribute6 = hr_api.g_varchar2) then
688: p_rec.prd_attribute6 :=
689: ben_prd_shd.g_old_rec.prd_attribute6;

Line 689: ben_prd_shd.g_old_rec.prd_attribute6;

685: ben_prd_shd.g_old_rec.prd_attribute5;
686: End If;
687: If (p_rec.prd_attribute6 = hr_api.g_varchar2) then
688: p_rec.prd_attribute6 :=
689: ben_prd_shd.g_old_rec.prd_attribute6;
690: End If;
691: If (p_rec.prd_attribute7 = hr_api.g_varchar2) then
692: p_rec.prd_attribute7 :=
693: ben_prd_shd.g_old_rec.prd_attribute7;

Line 693: ben_prd_shd.g_old_rec.prd_attribute7;

689: ben_prd_shd.g_old_rec.prd_attribute6;
690: End If;
691: If (p_rec.prd_attribute7 = hr_api.g_varchar2) then
692: p_rec.prd_attribute7 :=
693: ben_prd_shd.g_old_rec.prd_attribute7;
694: End If;
695: If (p_rec.prd_attribute8 = hr_api.g_varchar2) then
696: p_rec.prd_attribute8 :=
697: ben_prd_shd.g_old_rec.prd_attribute8;

Line 697: ben_prd_shd.g_old_rec.prd_attribute8;

693: ben_prd_shd.g_old_rec.prd_attribute7;
694: End If;
695: If (p_rec.prd_attribute8 = hr_api.g_varchar2) then
696: p_rec.prd_attribute8 :=
697: ben_prd_shd.g_old_rec.prd_attribute8;
698: End If;
699: If (p_rec.prd_attribute9 = hr_api.g_varchar2) then
700: p_rec.prd_attribute9 :=
701: ben_prd_shd.g_old_rec.prd_attribute9;

Line 701: ben_prd_shd.g_old_rec.prd_attribute9;

697: ben_prd_shd.g_old_rec.prd_attribute8;
698: End If;
699: If (p_rec.prd_attribute9 = hr_api.g_varchar2) then
700: p_rec.prd_attribute9 :=
701: ben_prd_shd.g_old_rec.prd_attribute9;
702: End If;
703: If (p_rec.prd_attribute10 = hr_api.g_varchar2) then
704: p_rec.prd_attribute10 :=
705: ben_prd_shd.g_old_rec.prd_attribute10;

Line 705: ben_prd_shd.g_old_rec.prd_attribute10;

701: ben_prd_shd.g_old_rec.prd_attribute9;
702: End If;
703: If (p_rec.prd_attribute10 = hr_api.g_varchar2) then
704: p_rec.prd_attribute10 :=
705: ben_prd_shd.g_old_rec.prd_attribute10;
706: End If;
707: If (p_rec.prd_attribute11 = hr_api.g_varchar2) then
708: p_rec.prd_attribute11 :=
709: ben_prd_shd.g_old_rec.prd_attribute11;

Line 709: ben_prd_shd.g_old_rec.prd_attribute11;

705: ben_prd_shd.g_old_rec.prd_attribute10;
706: End If;
707: If (p_rec.prd_attribute11 = hr_api.g_varchar2) then
708: p_rec.prd_attribute11 :=
709: ben_prd_shd.g_old_rec.prd_attribute11;
710: End If;
711: If (p_rec.prd_attribute12 = hr_api.g_varchar2) then
712: p_rec.prd_attribute12 :=
713: ben_prd_shd.g_old_rec.prd_attribute12;

Line 713: ben_prd_shd.g_old_rec.prd_attribute12;

709: ben_prd_shd.g_old_rec.prd_attribute11;
710: End If;
711: If (p_rec.prd_attribute12 = hr_api.g_varchar2) then
712: p_rec.prd_attribute12 :=
713: ben_prd_shd.g_old_rec.prd_attribute12;
714: End If;
715: If (p_rec.prd_attribute13 = hr_api.g_varchar2) then
716: p_rec.prd_attribute13 :=
717: ben_prd_shd.g_old_rec.prd_attribute13;

Line 717: ben_prd_shd.g_old_rec.prd_attribute13;

713: ben_prd_shd.g_old_rec.prd_attribute12;
714: End If;
715: If (p_rec.prd_attribute13 = hr_api.g_varchar2) then
716: p_rec.prd_attribute13 :=
717: ben_prd_shd.g_old_rec.prd_attribute13;
718: End If;
719: If (p_rec.prd_attribute14 = hr_api.g_varchar2) then
720: p_rec.prd_attribute14 :=
721: ben_prd_shd.g_old_rec.prd_attribute14;

Line 721: ben_prd_shd.g_old_rec.prd_attribute14;

717: ben_prd_shd.g_old_rec.prd_attribute13;
718: End If;
719: If (p_rec.prd_attribute14 = hr_api.g_varchar2) then
720: p_rec.prd_attribute14 :=
721: ben_prd_shd.g_old_rec.prd_attribute14;
722: End If;
723: If (p_rec.prd_attribute15 = hr_api.g_varchar2) then
724: p_rec.prd_attribute15 :=
725: ben_prd_shd.g_old_rec.prd_attribute15;

Line 725: ben_prd_shd.g_old_rec.prd_attribute15;

721: ben_prd_shd.g_old_rec.prd_attribute14;
722: End If;
723: If (p_rec.prd_attribute15 = hr_api.g_varchar2) then
724: p_rec.prd_attribute15 :=
725: ben_prd_shd.g_old_rec.prd_attribute15;
726: End If;
727: If (p_rec.prd_attribute16 = hr_api.g_varchar2) then
728: p_rec.prd_attribute16 :=
729: ben_prd_shd.g_old_rec.prd_attribute16;

Line 729: ben_prd_shd.g_old_rec.prd_attribute16;

725: ben_prd_shd.g_old_rec.prd_attribute15;
726: End If;
727: If (p_rec.prd_attribute16 = hr_api.g_varchar2) then
728: p_rec.prd_attribute16 :=
729: ben_prd_shd.g_old_rec.prd_attribute16;
730: End If;
731: If (p_rec.prd_attribute17 = hr_api.g_varchar2) then
732: p_rec.prd_attribute17 :=
733: ben_prd_shd.g_old_rec.prd_attribute17;

Line 733: ben_prd_shd.g_old_rec.prd_attribute17;

729: ben_prd_shd.g_old_rec.prd_attribute16;
730: End If;
731: If (p_rec.prd_attribute17 = hr_api.g_varchar2) then
732: p_rec.prd_attribute17 :=
733: ben_prd_shd.g_old_rec.prd_attribute17;
734: End If;
735: If (p_rec.prd_attribute18 = hr_api.g_varchar2) then
736: p_rec.prd_attribute18 :=
737: ben_prd_shd.g_old_rec.prd_attribute18;

Line 737: ben_prd_shd.g_old_rec.prd_attribute18;

733: ben_prd_shd.g_old_rec.prd_attribute17;
734: End If;
735: If (p_rec.prd_attribute18 = hr_api.g_varchar2) then
736: p_rec.prd_attribute18 :=
737: ben_prd_shd.g_old_rec.prd_attribute18;
738: End If;
739: If (p_rec.prd_attribute19 = hr_api.g_varchar2) then
740: p_rec.prd_attribute19 :=
741: ben_prd_shd.g_old_rec.prd_attribute19;

Line 741: ben_prd_shd.g_old_rec.prd_attribute19;

737: ben_prd_shd.g_old_rec.prd_attribute18;
738: End If;
739: If (p_rec.prd_attribute19 = hr_api.g_varchar2) then
740: p_rec.prd_attribute19 :=
741: ben_prd_shd.g_old_rec.prd_attribute19;
742: End If;
743: If (p_rec.prd_attribute20 = hr_api.g_varchar2) then
744: p_rec.prd_attribute20 :=
745: ben_prd_shd.g_old_rec.prd_attribute20;

Line 745: ben_prd_shd.g_old_rec.prd_attribute20;

741: ben_prd_shd.g_old_rec.prd_attribute19;
742: End If;
743: If (p_rec.prd_attribute20 = hr_api.g_varchar2) then
744: p_rec.prd_attribute20 :=
745: ben_prd_shd.g_old_rec.prd_attribute20;
746: End If;
747: If (p_rec.prd_attribute21 = hr_api.g_varchar2) then
748: p_rec.prd_attribute21 :=
749: ben_prd_shd.g_old_rec.prd_attribute21;

Line 749: ben_prd_shd.g_old_rec.prd_attribute21;

745: ben_prd_shd.g_old_rec.prd_attribute20;
746: End If;
747: If (p_rec.prd_attribute21 = hr_api.g_varchar2) then
748: p_rec.prd_attribute21 :=
749: ben_prd_shd.g_old_rec.prd_attribute21;
750: End If;
751: If (p_rec.prd_attribute22 = hr_api.g_varchar2) then
752: p_rec.prd_attribute22 :=
753: ben_prd_shd.g_old_rec.prd_attribute22;

Line 753: ben_prd_shd.g_old_rec.prd_attribute22;

749: ben_prd_shd.g_old_rec.prd_attribute21;
750: End If;
751: If (p_rec.prd_attribute22 = hr_api.g_varchar2) then
752: p_rec.prd_attribute22 :=
753: ben_prd_shd.g_old_rec.prd_attribute22;
754: End If;
755: If (p_rec.prd_attribute23 = hr_api.g_varchar2) then
756: p_rec.prd_attribute23 :=
757: ben_prd_shd.g_old_rec.prd_attribute23;

Line 757: ben_prd_shd.g_old_rec.prd_attribute23;

753: ben_prd_shd.g_old_rec.prd_attribute22;
754: End If;
755: If (p_rec.prd_attribute23 = hr_api.g_varchar2) then
756: p_rec.prd_attribute23 :=
757: ben_prd_shd.g_old_rec.prd_attribute23;
758: End If;
759: If (p_rec.prd_attribute24 = hr_api.g_varchar2) then
760: p_rec.prd_attribute24 :=
761: ben_prd_shd.g_old_rec.prd_attribute24;

Line 761: ben_prd_shd.g_old_rec.prd_attribute24;

757: ben_prd_shd.g_old_rec.prd_attribute23;
758: End If;
759: If (p_rec.prd_attribute24 = hr_api.g_varchar2) then
760: p_rec.prd_attribute24 :=
761: ben_prd_shd.g_old_rec.prd_attribute24;
762: End If;
763: If (p_rec.prd_attribute25 = hr_api.g_varchar2) then
764: p_rec.prd_attribute25 :=
765: ben_prd_shd.g_old_rec.prd_attribute25;

Line 765: ben_prd_shd.g_old_rec.prd_attribute25;

761: ben_prd_shd.g_old_rec.prd_attribute24;
762: End If;
763: If (p_rec.prd_attribute25 = hr_api.g_varchar2) then
764: p_rec.prd_attribute25 :=
765: ben_prd_shd.g_old_rec.prd_attribute25;
766: End If;
767: If (p_rec.prd_attribute26 = hr_api.g_varchar2) then
768: p_rec.prd_attribute26 :=
769: ben_prd_shd.g_old_rec.prd_attribute26;

Line 769: ben_prd_shd.g_old_rec.prd_attribute26;

765: ben_prd_shd.g_old_rec.prd_attribute25;
766: End If;
767: If (p_rec.prd_attribute26 = hr_api.g_varchar2) then
768: p_rec.prd_attribute26 :=
769: ben_prd_shd.g_old_rec.prd_attribute26;
770: End If;
771: If (p_rec.prd_attribute27 = hr_api.g_varchar2) then
772: p_rec.prd_attribute27 :=
773: ben_prd_shd.g_old_rec.prd_attribute27;

Line 773: ben_prd_shd.g_old_rec.prd_attribute27;

769: ben_prd_shd.g_old_rec.prd_attribute26;
770: End If;
771: If (p_rec.prd_attribute27 = hr_api.g_varchar2) then
772: p_rec.prd_attribute27 :=
773: ben_prd_shd.g_old_rec.prd_attribute27;
774: End If;
775: If (p_rec.prd_attribute28 = hr_api.g_varchar2) then
776: p_rec.prd_attribute28 :=
777: ben_prd_shd.g_old_rec.prd_attribute28;

Line 777: ben_prd_shd.g_old_rec.prd_attribute28;

773: ben_prd_shd.g_old_rec.prd_attribute27;
774: End If;
775: If (p_rec.prd_attribute28 = hr_api.g_varchar2) then
776: p_rec.prd_attribute28 :=
777: ben_prd_shd.g_old_rec.prd_attribute28;
778: End If;
779: If (p_rec.prd_attribute29 = hr_api.g_varchar2) then
780: p_rec.prd_attribute29 :=
781: ben_prd_shd.g_old_rec.prd_attribute29;

Line 781: ben_prd_shd.g_old_rec.prd_attribute29;

777: ben_prd_shd.g_old_rec.prd_attribute28;
778: End If;
779: If (p_rec.prd_attribute29 = hr_api.g_varchar2) then
780: p_rec.prd_attribute29 :=
781: ben_prd_shd.g_old_rec.prd_attribute29;
782: End If;
783: If (p_rec.prd_attribute30 = hr_api.g_varchar2) then
784: p_rec.prd_attribute30 :=
785: ben_prd_shd.g_old_rec.prd_attribute30;

Line 785: ben_prd_shd.g_old_rec.prd_attribute30;

781: ben_prd_shd.g_old_rec.prd_attribute29;
782: End If;
783: If (p_rec.prd_attribute30 = hr_api.g_varchar2) then
784: p_rec.prd_attribute30 :=
785: ben_prd_shd.g_old_rec.prd_attribute30;
786: End If;
787:
788: --
789: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 798: p_rec in out nocopy ben_prd_shd.g_rec_type,

794: -- |---------------------------------< upd >----------------------------------|
795: -- ----------------------------------------------------------------------------
796: Procedure upd
797: (
798: p_rec in out nocopy ben_prd_shd.g_rec_type,
799: p_effective_date in date,
800: p_datetrack_mode in varchar2
801: ) is
802: --

Line 816: ben_prd_shd.lck

812: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);
813: --
814: -- We must lock the row which we need to update.
815: --
816: ben_prd_shd.lck
817: (p_effective_date => p_effective_date,
818: p_datetrack_mode => p_datetrack_mode,
819: p_paird_rt_id => p_rec.paird_rt_id,
820: p_object_version_number => p_rec.object_version_number,

Line 926: l_rec ben_prd_shd.g_rec_type;

922: p_effective_date in date,
923: p_datetrack_mode in varchar2
924: ) is
925: --
926: l_rec ben_prd_shd.g_rec_type;
927: l_proc varchar2(72) := g_package||'upd';
928: --
929: Begin
930: hr_utility.set_location('Entering:'||l_proc, 5);

Line 936: ben_prd_shd.convert_args

932: -- Call conversion function to turn arguments into the
933: -- l_rec structure.
934: --
935: l_rec :=
936: ben_prd_shd.convert_args
937: (
938: p_paird_rt_id,
939: null,
940: null,