DBA Data[Home] [Help]

APPS.BEN_CCT_UPD dependencies on BEN_CCT_SHD

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

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

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

Line 155: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

151: and effective_start_date = p_validation_start_date
152: and effective_end_date = p_validation_end_date
153: and userenv('LANG') in (language, source_lang);
154: --
155: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
156: --
157: -- Set the effective start and end dates
158: --
159: p_rec.effective_start_date := p_validation_start_date;

Line 167: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

163: hr_utility.set_location(' Leaving:'||l_proc, 15);
164: Exception
165: When hr_api.check_integrity_violated Then
166: -- A check constraint has been violated
167: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
168: ben_cct_shd.constraint_error
169: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
170: When hr_api.unique_integrity_violated Then
171: -- Unique integrity has been violated

Line 168: ben_cct_shd.constraint_error

164: Exception
165: When hr_api.check_integrity_violated Then
166: -- A check constraint has been violated
167: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
168: ben_cct_shd.constraint_error
169: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
170: When hr_api.unique_integrity_violated Then
171: -- Unique integrity has been violated
172: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

Line 172: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

168: ben_cct_shd.constraint_error
169: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
170: When hr_api.unique_integrity_violated Then
171: -- Unique integrity has been violated
172: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
173: ben_cct_shd.constraint_error
174: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
175: When Others Then
176: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

Line 173: ben_cct_shd.constraint_error

169: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
170: When hr_api.unique_integrity_violated Then
171: -- Unique integrity has been violated
172: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
173: ben_cct_shd.constraint_error
174: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
175: When Others Then
176: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
177: Raise;

Line 176: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

172: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
173: ben_cct_shd.constraint_error
174: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
175: When Others Then
176: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
177: Raise;
178: End dt_update_dml;
179: --
180: -- ----------------------------------------------------------------------------

Line 212: (p_rec in out nocopy ben_cct_shd.g_rec_type,

208: --
209: -- {End Of Comments}
210: -- ----------------------------------------------------------------------------
211: Procedure update_dml
212: (p_rec in out nocopy ben_cct_shd.g_rec_type,
213: p_effective_date in date,
214: p_datetrack_mode in varchar2,
215: p_validation_start_date in date,
216: p_validation_end_date in date) is

Line 276: (p_rec in out nocopy ben_cct_shd.g_rec_type,

272: --
273: -- {End Of Comments}
274: -- ----------------------------------------------------------------------------
275: Procedure dt_pre_update
276: (p_rec in out nocopy ben_cct_shd.g_rec_type,
277: p_effective_date in date,
278: p_datetrack_mode in varchar2,
279: p_validation_start_date in date,
280: p_validation_end_date in date) is

Line 292: ben_cct_shd.upd_effective_end_date

288: hr_utility.set_location(l_proc, 10);
289: --
290: -- Update the current effective end date
291: --
292: ben_cct_shd.upd_effective_end_date
293: (p_effective_date => p_effective_date,
294: p_base_key_value => p_rec.cm_typ_id,
295: p_new_effective_end_date => (p_validation_start_date - 1),
296: p_validation_start_date => p_validation_start_date,

Line 361: (p_rec in out nocopy ben_cct_shd.g_rec_type,

357: --
358: -- {End Of Comments}
359: -- ----------------------------------------------------------------------------
360: Procedure pre_update
361: (p_rec in out nocopy ben_cct_shd.g_rec_type,
362: p_effective_date in date,
363: p_datetrack_mode in varchar2,
364: p_validation_start_date in date,
365: p_validation_end_date in date) is

Line 417: (p_rec in ben_cct_shd.g_rec_type,

413: --
414: -- {End Of Comments}
415: -- ----------------------------------------------------------------------------
416: Procedure post_update
417: (p_rec in ben_cct_shd.g_rec_type,
418: p_effective_date in date,
419: p_datetrack_mode in varchar2,
420: p_validation_start_date in date,
421: p_validation_end_date in date) is

Line 490: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date

486: ,p_effective_date =>p_effective_date
487: ,p_datetrack_mode =>p_datetrack_mode
488: ,p_validation_start_date =>p_validation_start_date
489: ,p_validation_end_date =>p_validation_end_date
490: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag

Line 491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date

487: ,p_datetrack_mode =>p_datetrack_mode
488: ,p_validation_start_date =>p_validation_start_date
489: ,p_validation_end_date =>p_validation_end_date
490: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl

Line 492: ,p_name_o =>ben_cct_shd.g_old_rec.name

488: ,p_validation_start_date =>p_validation_start_date
489: ,p_validation_end_date =>p_validation_end_date
490: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd

Line 493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt

489: ,p_validation_end_date =>p_validation_end_date
490: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag

Line 494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag

490: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name

Line 495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl

491: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd

Line 496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd

492: ,p_name_o =>ben_cct_shd.g_old_rec.name
493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag

Line 497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag

493: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val

Line 498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name

494: ,p_inactive_flag_o =>ben_cct_shd.g_old_rec.inactive_flag
495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd

Line 499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd

495: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl

Line 500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag

496: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag

Line 501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val

497: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl

Line 502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd

498: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd

Line 503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl

499: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id

Line 504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag

500: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id

Line 505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl

501: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category

Line 506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd

502: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd
503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1

Line 507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id

503: ,p_to_be_sent_dt_rl_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_rl
504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10

Line 508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id

504: ,p_inspn_rqd_flag_o =>ben_cct_shd.g_old_rec.inspn_rqd_flag
505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11

Line 509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category

505: ,p_inspn_rqd_rl_o =>ben_cct_shd.g_old_rec.inspn_rqd_rl
506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12

Line 510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1

506: ,p_rcpent_cd_o =>ben_cct_shd.g_old_rec.rcpent_cd
507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13

Line 511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10

507: ,p_parnt_cm_typ_id_o =>ben_cct_shd.g_old_rec.parnt_cm_typ_id
508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14

Line 512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11

508: ,p_business_group_id_o =>ben_cct_shd.g_old_rec.business_group_id
509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15

Line 513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12

509: ,p_cct_attribute_category_o =>ben_cct_shd.g_old_rec.cct_attribute_category
510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16

Line 514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13

510: ,p_cct_attribute1_o =>ben_cct_shd.g_old_rec.cct_attribute1
511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17

Line 515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14

511: ,p_cct_attribute10_o =>ben_cct_shd.g_old_rec.cct_attribute10
512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18

Line 516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15

512: ,p_cct_attribute11_o =>ben_cct_shd.g_old_rec.cct_attribute11
513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19

Line 517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16

513: ,p_cct_attribute12_o =>ben_cct_shd.g_old_rec.cct_attribute12
514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2

Line 518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17

514: ,p_cct_attribute13_o =>ben_cct_shd.g_old_rec.cct_attribute13
515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20

Line 519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18

515: ,p_cct_attribute14_o =>ben_cct_shd.g_old_rec.cct_attribute14
516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21

Line 520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19

516: ,p_cct_attribute15_o =>ben_cct_shd.g_old_rec.cct_attribute15
517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22

Line 521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2

517: ,p_cct_attribute16_o =>ben_cct_shd.g_old_rec.cct_attribute16
518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23

Line 522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20

518: ,p_cct_attribute17_o =>ben_cct_shd.g_old_rec.cct_attribute17
519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24

Line 523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21

519: ,p_cct_attribute18_o =>ben_cct_shd.g_old_rec.cct_attribute18
520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25

Line 524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22

520: ,p_cct_attribute19_o =>ben_cct_shd.g_old_rec.cct_attribute19
521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26

Line 525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23

521: ,p_cct_attribute2_o =>ben_cct_shd.g_old_rec.cct_attribute2
522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27

Line 526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24

522: ,p_cct_attribute20_o =>ben_cct_shd.g_old_rec.cct_attribute20
523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28

Line 527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25

523: ,p_cct_attribute21_o =>ben_cct_shd.g_old_rec.cct_attribute21
524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29

Line 528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26

524: ,p_cct_attribute22_o =>ben_cct_shd.g_old_rec.cct_attribute22
525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3

Line 529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27

525: ,p_cct_attribute23_o =>ben_cct_shd.g_old_rec.cct_attribute23
526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30

Line 530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28

526: ,p_cct_attribute24_o =>ben_cct_shd.g_old_rec.cct_attribute24
527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4

Line 531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29

527: ,p_cct_attribute25_o =>ben_cct_shd.g_old_rec.cct_attribute25
528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5

Line 532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3

528: ,p_cct_attribute26_o =>ben_cct_shd.g_old_rec.cct_attribute26
529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6

Line 533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30

529: ,p_cct_attribute27_o =>ben_cct_shd.g_old_rec.cct_attribute27
530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7

Line 534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4

530: ,p_cct_attribute28_o =>ben_cct_shd.g_old_rec.cct_attribute28
531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8

Line 535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5

531: ,p_cct_attribute29_o =>ben_cct_shd.g_old_rec.cct_attribute29
532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8
539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9

Line 536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6

532: ,p_cct_attribute3_o =>ben_cct_shd.g_old_rec.cct_attribute3
533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8
539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9
540: ,p_object_version_number_o =>ben_cct_shd.g_old_rec.object_version_number);

Line 537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7

533: ,p_cct_attribute30_o =>ben_cct_shd.g_old_rec.cct_attribute30
534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8
539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9
540: ,p_object_version_number_o =>ben_cct_shd.g_old_rec.object_version_number);
541: --

Line 538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8

534: ,p_cct_attribute4_o =>ben_cct_shd.g_old_rec.cct_attribute4
535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8
539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9
540: ,p_object_version_number_o =>ben_cct_shd.g_old_rec.object_version_number);
541: --
542: exception

Line 539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9

535: ,p_cct_attribute5_o =>ben_cct_shd.g_old_rec.cct_attribute5
536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8
539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9
540: ,p_object_version_number_o =>ben_cct_shd.g_old_rec.object_version_number);
541: --
542: exception
543: --

Line 540: ,p_object_version_number_o =>ben_cct_shd.g_old_rec.object_version_number);

536: ,p_cct_attribute6_o =>ben_cct_shd.g_old_rec.cct_attribute6
537: ,p_cct_attribute7_o =>ben_cct_shd.g_old_rec.cct_attribute7
538: ,p_cct_attribute8_o =>ben_cct_shd.g_old_rec.cct_attribute8
539: ,p_cct_attribute9_o =>ben_cct_shd.g_old_rec.cct_attribute9
540: ,p_object_version_number_o =>ben_cct_shd.g_old_rec.object_version_number);
541: --
542: exception
543: --
544: when hr_api.cannot_find_prog_unit then

Line 601: Procedure convert_defs(p_rec in out nocopy ben_cct_shd.g_rec_type) is

597: -- Internal Row Handler Use Only.
598: --
599: -- {End Of Comments}
600: -- ----------------------------------------------------------------------------
601: Procedure convert_defs(p_rec in out nocopy ben_cct_shd.g_rec_type) is
602: --
603: l_proc varchar2(72) := g_package||'convert_defs';
604: --
605: Begin

Line 616: ben_cct_shd.g_old_rec.name;

612: -- is being used then we must set to the 'current' argument value.
613: --
614: If (p_rec.name = hr_api.g_varchar2) then
615: p_rec.name :=
616: ben_cct_shd.g_old_rec.name;
617: End If;
618: If (p_rec.desc_txt = hr_api.g_varchar2) then
619: p_rec.desc_txt :=
620: ben_cct_shd.g_old_rec.desc_txt;

Line 620: ben_cct_shd.g_old_rec.desc_txt;

616: ben_cct_shd.g_old_rec.name;
617: End If;
618: If (p_rec.desc_txt = hr_api.g_varchar2) then
619: p_rec.desc_txt :=
620: ben_cct_shd.g_old_rec.desc_txt;
621: End If;
622: If (p_rec.inactive_flag = hr_api.g_varchar2) then
623: p_rec.inactive_flag :=
624: ben_cct_shd.g_old_rec.inactive_flag;

Line 624: ben_cct_shd.g_old_rec.inactive_flag;

620: ben_cct_shd.g_old_rec.desc_txt;
621: End If;
622: If (p_rec.inactive_flag = hr_api.g_varchar2) then
623: p_rec.inactive_flag :=
624: ben_cct_shd.g_old_rec.inactive_flag;
625: End If;
626: If (p_rec.cm_typ_rl = hr_api.g_number) then
627: p_rec.cm_typ_rl :=
628: ben_cct_shd.g_old_rec.cm_typ_rl;

Line 628: ben_cct_shd.g_old_rec.cm_typ_rl;

624: ben_cct_shd.g_old_rec.inactive_flag;
625: End If;
626: If (p_rec.cm_typ_rl = hr_api.g_number) then
627: p_rec.cm_typ_rl :=
628: ben_cct_shd.g_old_rec.cm_typ_rl;
629: End If;
630: If (p_rec.cm_usg_cd = hr_api.g_varchar2) then
631: p_rec.cm_usg_cd :=
632: ben_cct_shd.g_old_rec.cm_usg_cd;

Line 632: ben_cct_shd.g_old_rec.cm_usg_cd;

628: ben_cct_shd.g_old_rec.cm_typ_rl;
629: End If;
630: If (p_rec.cm_usg_cd = hr_api.g_varchar2) then
631: p_rec.cm_usg_cd :=
632: ben_cct_shd.g_old_rec.cm_usg_cd;
633: End If;
634: If (p_rec.whnvr_trgrd_flag = hr_api.g_varchar2) then
635: p_rec.whnvr_trgrd_flag :=
636: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;

Line 636: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;

632: ben_cct_shd.g_old_rec.cm_usg_cd;
633: End If;
634: If (p_rec.whnvr_trgrd_flag = hr_api.g_varchar2) then
635: p_rec.whnvr_trgrd_flag :=
636: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;
637: End If;
638: If (p_rec.shrt_name = hr_api.g_varchar2) then
639: p_rec.shrt_name :=
640: ben_cct_shd.g_old_rec.shrt_name;

Line 640: ben_cct_shd.g_old_rec.shrt_name;

636: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;
637: End If;
638: If (p_rec.shrt_name = hr_api.g_varchar2) then
639: p_rec.shrt_name :=
640: ben_cct_shd.g_old_rec.shrt_name;
641: End If;
642: If (p_rec.pc_kit_cd = hr_api.g_varchar2) then
643: p_rec.pc_kit_cd :=
644: ben_cct_shd.g_old_rec.pc_kit_cd;

Line 644: ben_cct_shd.g_old_rec.pc_kit_cd;

640: ben_cct_shd.g_old_rec.shrt_name;
641: End If;
642: If (p_rec.pc_kit_cd = hr_api.g_varchar2) then
643: p_rec.pc_kit_cd :=
644: ben_cct_shd.g_old_rec.pc_kit_cd;
645: End If;
646: If (p_rec.trk_mlg_flag = hr_api.g_varchar2) then
647: p_rec.trk_mlg_flag :=
648: ben_cct_shd.g_old_rec.trk_mlg_flag;

Line 648: ben_cct_shd.g_old_rec.trk_mlg_flag;

644: ben_cct_shd.g_old_rec.pc_kit_cd;
645: End If;
646: If (p_rec.trk_mlg_flag = hr_api.g_varchar2) then
647: p_rec.trk_mlg_flag :=
648: ben_cct_shd.g_old_rec.trk_mlg_flag;
649: End If;
650: If (p_rec.mx_num_avlbl_val = hr_api.g_number) then
651: p_rec.mx_num_avlbl_val :=
652: ben_cct_shd.g_old_rec.mx_num_avlbl_val;

Line 652: ben_cct_shd.g_old_rec.mx_num_avlbl_val;

648: ben_cct_shd.g_old_rec.trk_mlg_flag;
649: End If;
650: If (p_rec.mx_num_avlbl_val = hr_api.g_number) then
651: p_rec.mx_num_avlbl_val :=
652: ben_cct_shd.g_old_rec.mx_num_avlbl_val;
653: End If;
654: If (p_rec.to_be_sent_dt_cd = hr_api.g_varchar2) then
655: p_rec.to_be_sent_dt_cd :=
656: ben_cct_shd.g_old_rec.to_be_sent_dt_cd;

Line 656: ben_cct_shd.g_old_rec.to_be_sent_dt_cd;

652: ben_cct_shd.g_old_rec.mx_num_avlbl_val;
653: End If;
654: If (p_rec.to_be_sent_dt_cd = hr_api.g_varchar2) then
655: p_rec.to_be_sent_dt_cd :=
656: ben_cct_shd.g_old_rec.to_be_sent_dt_cd;
657: End If;
658: If (p_rec.to_be_sent_dt_rl = hr_api.g_number) then
659: p_rec.to_be_sent_dt_rl :=
660: ben_cct_shd.g_old_rec.to_be_sent_dt_rl;

Line 660: ben_cct_shd.g_old_rec.to_be_sent_dt_rl;

656: ben_cct_shd.g_old_rec.to_be_sent_dt_cd;
657: End If;
658: If (p_rec.to_be_sent_dt_rl = hr_api.g_number) then
659: p_rec.to_be_sent_dt_rl :=
660: ben_cct_shd.g_old_rec.to_be_sent_dt_rl;
661: End If;
662: If (p_rec.inspn_rqd_flag = hr_api.g_varchar2) then
663: p_rec.inspn_rqd_flag :=
664: ben_cct_shd.g_old_rec.inspn_rqd_flag;

Line 664: ben_cct_shd.g_old_rec.inspn_rqd_flag;

660: ben_cct_shd.g_old_rec.to_be_sent_dt_rl;
661: End If;
662: If (p_rec.inspn_rqd_flag = hr_api.g_varchar2) then
663: p_rec.inspn_rqd_flag :=
664: ben_cct_shd.g_old_rec.inspn_rqd_flag;
665: End If;
666: If (p_rec.inspn_rqd_rl = hr_api.g_number) then
667: p_rec.inspn_rqd_rl :=
668: ben_cct_shd.g_old_rec.inspn_rqd_rl;

Line 668: ben_cct_shd.g_old_rec.inspn_rqd_rl;

664: ben_cct_shd.g_old_rec.inspn_rqd_flag;
665: End If;
666: If (p_rec.inspn_rqd_rl = hr_api.g_number) then
667: p_rec.inspn_rqd_rl :=
668: ben_cct_shd.g_old_rec.inspn_rqd_rl;
669: End If;
670: If (p_rec.rcpent_cd = hr_api.g_varchar2) then
671: p_rec.rcpent_cd :=
672: ben_cct_shd.g_old_rec.rcpent_cd;

Line 672: ben_cct_shd.g_old_rec.rcpent_cd;

668: ben_cct_shd.g_old_rec.inspn_rqd_rl;
669: End If;
670: If (p_rec.rcpent_cd = hr_api.g_varchar2) then
671: p_rec.rcpent_cd :=
672: ben_cct_shd.g_old_rec.rcpent_cd;
673: End If;
674: If (p_rec.parnt_cm_typ_id = hr_api.g_number) then
675: p_rec.parnt_cm_typ_id :=
676: ben_cct_shd.g_old_rec.parnt_cm_typ_id;

Line 676: ben_cct_shd.g_old_rec.parnt_cm_typ_id;

672: ben_cct_shd.g_old_rec.rcpent_cd;
673: End If;
674: If (p_rec.parnt_cm_typ_id = hr_api.g_number) then
675: p_rec.parnt_cm_typ_id :=
676: ben_cct_shd.g_old_rec.parnt_cm_typ_id;
677: End If;
678: If (p_rec.business_group_id = hr_api.g_number) then
679: p_rec.business_group_id :=
680: ben_cct_shd.g_old_rec.business_group_id;

Line 680: ben_cct_shd.g_old_rec.business_group_id;

676: ben_cct_shd.g_old_rec.parnt_cm_typ_id;
677: End If;
678: If (p_rec.business_group_id = hr_api.g_number) then
679: p_rec.business_group_id :=
680: ben_cct_shd.g_old_rec.business_group_id;
681: End If;
682: If (p_rec.cct_attribute_category = hr_api.g_varchar2) then
683: p_rec.cct_attribute_category :=
684: ben_cct_shd.g_old_rec.cct_attribute_category;

Line 684: ben_cct_shd.g_old_rec.cct_attribute_category;

680: ben_cct_shd.g_old_rec.business_group_id;
681: End If;
682: If (p_rec.cct_attribute_category = hr_api.g_varchar2) then
683: p_rec.cct_attribute_category :=
684: ben_cct_shd.g_old_rec.cct_attribute_category;
685: End If;
686: If (p_rec.cct_attribute1 = hr_api.g_varchar2) then
687: p_rec.cct_attribute1 :=
688: ben_cct_shd.g_old_rec.cct_attribute1;

Line 688: ben_cct_shd.g_old_rec.cct_attribute1;

684: ben_cct_shd.g_old_rec.cct_attribute_category;
685: End If;
686: If (p_rec.cct_attribute1 = hr_api.g_varchar2) then
687: p_rec.cct_attribute1 :=
688: ben_cct_shd.g_old_rec.cct_attribute1;
689: End If;
690: If (p_rec.cct_attribute10 = hr_api.g_varchar2) then
691: p_rec.cct_attribute10 :=
692: ben_cct_shd.g_old_rec.cct_attribute10;

Line 692: ben_cct_shd.g_old_rec.cct_attribute10;

688: ben_cct_shd.g_old_rec.cct_attribute1;
689: End If;
690: If (p_rec.cct_attribute10 = hr_api.g_varchar2) then
691: p_rec.cct_attribute10 :=
692: ben_cct_shd.g_old_rec.cct_attribute10;
693: End If;
694: If (p_rec.cct_attribute11 = hr_api.g_varchar2) then
695: p_rec.cct_attribute11 :=
696: ben_cct_shd.g_old_rec.cct_attribute11;

Line 696: ben_cct_shd.g_old_rec.cct_attribute11;

692: ben_cct_shd.g_old_rec.cct_attribute10;
693: End If;
694: If (p_rec.cct_attribute11 = hr_api.g_varchar2) then
695: p_rec.cct_attribute11 :=
696: ben_cct_shd.g_old_rec.cct_attribute11;
697: End If;
698: If (p_rec.cct_attribute12 = hr_api.g_varchar2) then
699: p_rec.cct_attribute12 :=
700: ben_cct_shd.g_old_rec.cct_attribute12;

Line 700: ben_cct_shd.g_old_rec.cct_attribute12;

696: ben_cct_shd.g_old_rec.cct_attribute11;
697: End If;
698: If (p_rec.cct_attribute12 = hr_api.g_varchar2) then
699: p_rec.cct_attribute12 :=
700: ben_cct_shd.g_old_rec.cct_attribute12;
701: End If;
702: If (p_rec.cct_attribute13 = hr_api.g_varchar2) then
703: p_rec.cct_attribute13 :=
704: ben_cct_shd.g_old_rec.cct_attribute13;

Line 704: ben_cct_shd.g_old_rec.cct_attribute13;

700: ben_cct_shd.g_old_rec.cct_attribute12;
701: End If;
702: If (p_rec.cct_attribute13 = hr_api.g_varchar2) then
703: p_rec.cct_attribute13 :=
704: ben_cct_shd.g_old_rec.cct_attribute13;
705: End If;
706: If (p_rec.cct_attribute14 = hr_api.g_varchar2) then
707: p_rec.cct_attribute14 :=
708: ben_cct_shd.g_old_rec.cct_attribute14;

Line 708: ben_cct_shd.g_old_rec.cct_attribute14;

704: ben_cct_shd.g_old_rec.cct_attribute13;
705: End If;
706: If (p_rec.cct_attribute14 = hr_api.g_varchar2) then
707: p_rec.cct_attribute14 :=
708: ben_cct_shd.g_old_rec.cct_attribute14;
709: End If;
710: If (p_rec.cct_attribute15 = hr_api.g_varchar2) then
711: p_rec.cct_attribute15 :=
712: ben_cct_shd.g_old_rec.cct_attribute15;

Line 712: ben_cct_shd.g_old_rec.cct_attribute15;

708: ben_cct_shd.g_old_rec.cct_attribute14;
709: End If;
710: If (p_rec.cct_attribute15 = hr_api.g_varchar2) then
711: p_rec.cct_attribute15 :=
712: ben_cct_shd.g_old_rec.cct_attribute15;
713: End If;
714: If (p_rec.cct_attribute16 = hr_api.g_varchar2) then
715: p_rec.cct_attribute16 :=
716: ben_cct_shd.g_old_rec.cct_attribute16;

Line 716: ben_cct_shd.g_old_rec.cct_attribute16;

712: ben_cct_shd.g_old_rec.cct_attribute15;
713: End If;
714: If (p_rec.cct_attribute16 = hr_api.g_varchar2) then
715: p_rec.cct_attribute16 :=
716: ben_cct_shd.g_old_rec.cct_attribute16;
717: End If;
718: If (p_rec.cct_attribute17 = hr_api.g_varchar2) then
719: p_rec.cct_attribute17 :=
720: ben_cct_shd.g_old_rec.cct_attribute17;

Line 720: ben_cct_shd.g_old_rec.cct_attribute17;

716: ben_cct_shd.g_old_rec.cct_attribute16;
717: End If;
718: If (p_rec.cct_attribute17 = hr_api.g_varchar2) then
719: p_rec.cct_attribute17 :=
720: ben_cct_shd.g_old_rec.cct_attribute17;
721: End If;
722: If (p_rec.cct_attribute18 = hr_api.g_varchar2) then
723: p_rec.cct_attribute18 :=
724: ben_cct_shd.g_old_rec.cct_attribute18;

Line 724: ben_cct_shd.g_old_rec.cct_attribute18;

720: ben_cct_shd.g_old_rec.cct_attribute17;
721: End If;
722: If (p_rec.cct_attribute18 = hr_api.g_varchar2) then
723: p_rec.cct_attribute18 :=
724: ben_cct_shd.g_old_rec.cct_attribute18;
725: End If;
726: If (p_rec.cct_attribute19 = hr_api.g_varchar2) then
727: p_rec.cct_attribute19 :=
728: ben_cct_shd.g_old_rec.cct_attribute19;

Line 728: ben_cct_shd.g_old_rec.cct_attribute19;

724: ben_cct_shd.g_old_rec.cct_attribute18;
725: End If;
726: If (p_rec.cct_attribute19 = hr_api.g_varchar2) then
727: p_rec.cct_attribute19 :=
728: ben_cct_shd.g_old_rec.cct_attribute19;
729: End If;
730: If (p_rec.cct_attribute2 = hr_api.g_varchar2) then
731: p_rec.cct_attribute2 :=
732: ben_cct_shd.g_old_rec.cct_attribute2;

Line 732: ben_cct_shd.g_old_rec.cct_attribute2;

728: ben_cct_shd.g_old_rec.cct_attribute19;
729: End If;
730: If (p_rec.cct_attribute2 = hr_api.g_varchar2) then
731: p_rec.cct_attribute2 :=
732: ben_cct_shd.g_old_rec.cct_attribute2;
733: End If;
734: If (p_rec.cct_attribute20 = hr_api.g_varchar2) then
735: p_rec.cct_attribute20 :=
736: ben_cct_shd.g_old_rec.cct_attribute20;

Line 736: ben_cct_shd.g_old_rec.cct_attribute20;

732: ben_cct_shd.g_old_rec.cct_attribute2;
733: End If;
734: If (p_rec.cct_attribute20 = hr_api.g_varchar2) then
735: p_rec.cct_attribute20 :=
736: ben_cct_shd.g_old_rec.cct_attribute20;
737: End If;
738: If (p_rec.cct_attribute21 = hr_api.g_varchar2) then
739: p_rec.cct_attribute21 :=
740: ben_cct_shd.g_old_rec.cct_attribute21;

Line 740: ben_cct_shd.g_old_rec.cct_attribute21;

736: ben_cct_shd.g_old_rec.cct_attribute20;
737: End If;
738: If (p_rec.cct_attribute21 = hr_api.g_varchar2) then
739: p_rec.cct_attribute21 :=
740: ben_cct_shd.g_old_rec.cct_attribute21;
741: End If;
742: If (p_rec.cct_attribute22 = hr_api.g_varchar2) then
743: p_rec.cct_attribute22 :=
744: ben_cct_shd.g_old_rec.cct_attribute22;

Line 744: ben_cct_shd.g_old_rec.cct_attribute22;

740: ben_cct_shd.g_old_rec.cct_attribute21;
741: End If;
742: If (p_rec.cct_attribute22 = hr_api.g_varchar2) then
743: p_rec.cct_attribute22 :=
744: ben_cct_shd.g_old_rec.cct_attribute22;
745: End If;
746: If (p_rec.cct_attribute23 = hr_api.g_varchar2) then
747: p_rec.cct_attribute23 :=
748: ben_cct_shd.g_old_rec.cct_attribute23;

Line 748: ben_cct_shd.g_old_rec.cct_attribute23;

744: ben_cct_shd.g_old_rec.cct_attribute22;
745: End If;
746: If (p_rec.cct_attribute23 = hr_api.g_varchar2) then
747: p_rec.cct_attribute23 :=
748: ben_cct_shd.g_old_rec.cct_attribute23;
749: End If;
750: If (p_rec.cct_attribute24 = hr_api.g_varchar2) then
751: p_rec.cct_attribute24 :=
752: ben_cct_shd.g_old_rec.cct_attribute24;

Line 752: ben_cct_shd.g_old_rec.cct_attribute24;

748: ben_cct_shd.g_old_rec.cct_attribute23;
749: End If;
750: If (p_rec.cct_attribute24 = hr_api.g_varchar2) then
751: p_rec.cct_attribute24 :=
752: ben_cct_shd.g_old_rec.cct_attribute24;
753: End If;
754: If (p_rec.cct_attribute25 = hr_api.g_varchar2) then
755: p_rec.cct_attribute25 :=
756: ben_cct_shd.g_old_rec.cct_attribute25;

Line 756: ben_cct_shd.g_old_rec.cct_attribute25;

752: ben_cct_shd.g_old_rec.cct_attribute24;
753: End If;
754: If (p_rec.cct_attribute25 = hr_api.g_varchar2) then
755: p_rec.cct_attribute25 :=
756: ben_cct_shd.g_old_rec.cct_attribute25;
757: End If;
758: If (p_rec.cct_attribute26 = hr_api.g_varchar2) then
759: p_rec.cct_attribute26 :=
760: ben_cct_shd.g_old_rec.cct_attribute26;

Line 760: ben_cct_shd.g_old_rec.cct_attribute26;

756: ben_cct_shd.g_old_rec.cct_attribute25;
757: End If;
758: If (p_rec.cct_attribute26 = hr_api.g_varchar2) then
759: p_rec.cct_attribute26 :=
760: ben_cct_shd.g_old_rec.cct_attribute26;
761: End If;
762: If (p_rec.cct_attribute27 = hr_api.g_varchar2) then
763: p_rec.cct_attribute27 :=
764: ben_cct_shd.g_old_rec.cct_attribute27;

Line 764: ben_cct_shd.g_old_rec.cct_attribute27;

760: ben_cct_shd.g_old_rec.cct_attribute26;
761: End If;
762: If (p_rec.cct_attribute27 = hr_api.g_varchar2) then
763: p_rec.cct_attribute27 :=
764: ben_cct_shd.g_old_rec.cct_attribute27;
765: End If;
766: If (p_rec.cct_attribute28 = hr_api.g_varchar2) then
767: p_rec.cct_attribute28 :=
768: ben_cct_shd.g_old_rec.cct_attribute28;

Line 768: ben_cct_shd.g_old_rec.cct_attribute28;

764: ben_cct_shd.g_old_rec.cct_attribute27;
765: End If;
766: If (p_rec.cct_attribute28 = hr_api.g_varchar2) then
767: p_rec.cct_attribute28 :=
768: ben_cct_shd.g_old_rec.cct_attribute28;
769: End If;
770: If (p_rec.cct_attribute29 = hr_api.g_varchar2) then
771: p_rec.cct_attribute29 :=
772: ben_cct_shd.g_old_rec.cct_attribute29;

Line 772: ben_cct_shd.g_old_rec.cct_attribute29;

768: ben_cct_shd.g_old_rec.cct_attribute28;
769: End If;
770: If (p_rec.cct_attribute29 = hr_api.g_varchar2) then
771: p_rec.cct_attribute29 :=
772: ben_cct_shd.g_old_rec.cct_attribute29;
773: End If;
774: If (p_rec.cct_attribute3 = hr_api.g_varchar2) then
775: p_rec.cct_attribute3 :=
776: ben_cct_shd.g_old_rec.cct_attribute3;

Line 776: ben_cct_shd.g_old_rec.cct_attribute3;

772: ben_cct_shd.g_old_rec.cct_attribute29;
773: End If;
774: If (p_rec.cct_attribute3 = hr_api.g_varchar2) then
775: p_rec.cct_attribute3 :=
776: ben_cct_shd.g_old_rec.cct_attribute3;
777: End If;
778: If (p_rec.cct_attribute30 = hr_api.g_varchar2) then
779: p_rec.cct_attribute30 :=
780: ben_cct_shd.g_old_rec.cct_attribute30;

Line 780: ben_cct_shd.g_old_rec.cct_attribute30;

776: ben_cct_shd.g_old_rec.cct_attribute3;
777: End If;
778: If (p_rec.cct_attribute30 = hr_api.g_varchar2) then
779: p_rec.cct_attribute30 :=
780: ben_cct_shd.g_old_rec.cct_attribute30;
781: End If;
782: If (p_rec.cct_attribute4 = hr_api.g_varchar2) then
783: p_rec.cct_attribute4 :=
784: ben_cct_shd.g_old_rec.cct_attribute4;

Line 784: ben_cct_shd.g_old_rec.cct_attribute4;

780: ben_cct_shd.g_old_rec.cct_attribute30;
781: End If;
782: If (p_rec.cct_attribute4 = hr_api.g_varchar2) then
783: p_rec.cct_attribute4 :=
784: ben_cct_shd.g_old_rec.cct_attribute4;
785: End If;
786: If (p_rec.cct_attribute5 = hr_api.g_varchar2) then
787: p_rec.cct_attribute5 :=
788: ben_cct_shd.g_old_rec.cct_attribute5;

Line 788: ben_cct_shd.g_old_rec.cct_attribute5;

784: ben_cct_shd.g_old_rec.cct_attribute4;
785: End If;
786: If (p_rec.cct_attribute5 = hr_api.g_varchar2) then
787: p_rec.cct_attribute5 :=
788: ben_cct_shd.g_old_rec.cct_attribute5;
789: End If;
790: If (p_rec.cct_attribute6 = hr_api.g_varchar2) then
791: p_rec.cct_attribute6 :=
792: ben_cct_shd.g_old_rec.cct_attribute6;

Line 792: ben_cct_shd.g_old_rec.cct_attribute6;

788: ben_cct_shd.g_old_rec.cct_attribute5;
789: End If;
790: If (p_rec.cct_attribute6 = hr_api.g_varchar2) then
791: p_rec.cct_attribute6 :=
792: ben_cct_shd.g_old_rec.cct_attribute6;
793: End If;
794: If (p_rec.cct_attribute7 = hr_api.g_varchar2) then
795: p_rec.cct_attribute7 :=
796: ben_cct_shd.g_old_rec.cct_attribute7;

Line 796: ben_cct_shd.g_old_rec.cct_attribute7;

792: ben_cct_shd.g_old_rec.cct_attribute6;
793: End If;
794: If (p_rec.cct_attribute7 = hr_api.g_varchar2) then
795: p_rec.cct_attribute7 :=
796: ben_cct_shd.g_old_rec.cct_attribute7;
797: End If;
798: If (p_rec.cct_attribute8 = hr_api.g_varchar2) then
799: p_rec.cct_attribute8 :=
800: ben_cct_shd.g_old_rec.cct_attribute8;

Line 800: ben_cct_shd.g_old_rec.cct_attribute8;

796: ben_cct_shd.g_old_rec.cct_attribute7;
797: End If;
798: If (p_rec.cct_attribute8 = hr_api.g_varchar2) then
799: p_rec.cct_attribute8 :=
800: ben_cct_shd.g_old_rec.cct_attribute8;
801: End If;
802: If (p_rec.cct_attribute9 = hr_api.g_varchar2) then
803: p_rec.cct_attribute9 :=
804: ben_cct_shd.g_old_rec.cct_attribute9;

Line 804: ben_cct_shd.g_old_rec.cct_attribute9;

800: ben_cct_shd.g_old_rec.cct_attribute8;
801: End If;
802: If (p_rec.cct_attribute9 = hr_api.g_varchar2) then
803: p_rec.cct_attribute9 :=
804: ben_cct_shd.g_old_rec.cct_attribute9;
805: End If;
806: --
807: hr_utility.set_location(' Leaving:'||l_proc, 10);
808: --

Line 816: p_rec in out nocopy ben_cct_shd.g_rec_type,

812: -- |---------------------------------< upd >----------------------------------|
813: -- ----------------------------------------------------------------------------
814: Procedure upd
815: (
816: p_rec in out nocopy ben_cct_shd.g_rec_type,
817: p_effective_date in date,
818: p_datetrack_mode in varchar2
819: ) is
820: --

Line 834: ben_cct_shd.lck

830: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);
831: --
832: -- We must lock the row which we need to update.
833: --
834: ben_cct_shd.lck
835: (p_effective_date => p_effective_date,
836: p_datetrack_mode => p_datetrack_mode,
837: p_cm_typ_id => p_rec.cm_typ_id,
838: p_object_version_number => p_rec.object_version_number,

Line 945: l_rec ben_cct_shd.g_rec_type;

941: p_effective_date in date,
942: p_datetrack_mode in varchar2
943: ) is
944: --
945: l_rec ben_cct_shd.g_rec_type;
946: l_proc varchar2(72) := g_package||'upd';
947: --
948: Begin
949: hr_utility.set_location('Entering:'||l_proc, 5);

Line 955: ben_cct_shd.convert_args

951: -- Call conversion function to turn arguments into the
952: -- l_rec structure.
953: --
954: l_rec :=
955: ben_cct_shd.convert_args
956: (
957: p_cm_typ_id,
958: null,
959: null,