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 154: ben_cct_shd.g_api_dml := false; -- Unset the api dml status

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

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

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

Line 167: ben_cct_shd.constraint_error

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

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

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

Line 172: ben_cct_shd.constraint_error

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

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

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

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

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

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

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

Line 291: ben_cct_shd.upd_effective_end_date

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

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

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

Line 416: (p_rec in ben_cct_shd.g_rec_type,

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

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

484: ,p_effective_date =>p_effective_date
485: ,p_datetrack_mode =>p_datetrack_mode
486: ,p_validation_start_date =>p_validation_start_date
487: ,p_validation_end_date =>p_validation_end_date
488: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
489: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl

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

485: ,p_datetrack_mode =>p_datetrack_mode
486: ,p_validation_start_date =>p_validation_start_date
487: ,p_validation_end_date =>p_validation_end_date
488: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
489: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd

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

486: ,p_validation_start_date =>p_validation_start_date
487: ,p_validation_end_date =>p_validation_end_date
488: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
489: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
494: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag

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

487: ,p_validation_end_date =>p_validation_end_date
488: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
489: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
494: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
495: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name

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

488: ,p_effective_start_date_o =>ben_cct_shd.g_old_rec.effective_start_date
489: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
494: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
495: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
496: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd

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

489: ,p_effective_end_date_o =>ben_cct_shd.g_old_rec.effective_end_date
490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
494: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
495: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
496: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
497: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag

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

490: ,p_name_o =>ben_cct_shd.g_old_rec.name
491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
494: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
495: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
496: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
497: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
498: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val

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

491: ,p_desc_txt_o =>ben_cct_shd.g_old_rec.desc_txt
492: ,p_cm_typ_rl_o =>ben_cct_shd.g_old_rec.cm_typ_rl
493: ,p_cm_usg_cd_o =>ben_cct_shd.g_old_rec.cm_usg_cd
494: ,p_whnvr_trgrd_flag_o =>ben_cct_shd.g_old_rec.whnvr_trgrd_flag
495: ,p_shrt_name_o =>ben_cct_shd.g_old_rec.shrt_name
496: ,p_pc_kit_cd_o =>ben_cct_shd.g_old_rec.pc_kit_cd
497: ,p_trk_mlg_flag_o =>ben_cct_shd.g_old_rec.trk_mlg_flag
498: ,p_mx_num_avlbl_val_o =>ben_cct_shd.g_old_rec.mx_num_avlbl_val
499: ,p_to_be_sent_dt_cd_o =>ben_cct_shd.g_old_rec.to_be_sent_dt_cd

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Line 613: ben_cct_shd.g_old_rec.name;

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

Line 617: ben_cct_shd.g_old_rec.desc_txt;

613: ben_cct_shd.g_old_rec.name;
614: End If;
615: If (p_rec.desc_txt = hr_api.g_varchar2) then
616: p_rec.desc_txt :=
617: ben_cct_shd.g_old_rec.desc_txt;
618: End If;
619: If (p_rec.cm_typ_rl = hr_api.g_number) then
620: p_rec.cm_typ_rl :=
621: ben_cct_shd.g_old_rec.cm_typ_rl;

Line 621: ben_cct_shd.g_old_rec.cm_typ_rl;

617: ben_cct_shd.g_old_rec.desc_txt;
618: End If;
619: If (p_rec.cm_typ_rl = hr_api.g_number) then
620: p_rec.cm_typ_rl :=
621: ben_cct_shd.g_old_rec.cm_typ_rl;
622: End If;
623: If (p_rec.cm_usg_cd = hr_api.g_varchar2) then
624: p_rec.cm_usg_cd :=
625: ben_cct_shd.g_old_rec.cm_usg_cd;

Line 625: ben_cct_shd.g_old_rec.cm_usg_cd;

621: ben_cct_shd.g_old_rec.cm_typ_rl;
622: End If;
623: If (p_rec.cm_usg_cd = hr_api.g_varchar2) then
624: p_rec.cm_usg_cd :=
625: ben_cct_shd.g_old_rec.cm_usg_cd;
626: End If;
627: If (p_rec.whnvr_trgrd_flag = hr_api.g_varchar2) then
628: p_rec.whnvr_trgrd_flag :=
629: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;

Line 629: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;

625: ben_cct_shd.g_old_rec.cm_usg_cd;
626: End If;
627: If (p_rec.whnvr_trgrd_flag = hr_api.g_varchar2) then
628: p_rec.whnvr_trgrd_flag :=
629: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;
630: End If;
631: If (p_rec.shrt_name = hr_api.g_varchar2) then
632: p_rec.shrt_name :=
633: ben_cct_shd.g_old_rec.shrt_name;

Line 633: ben_cct_shd.g_old_rec.shrt_name;

629: ben_cct_shd.g_old_rec.whnvr_trgrd_flag;
630: End If;
631: If (p_rec.shrt_name = hr_api.g_varchar2) then
632: p_rec.shrt_name :=
633: ben_cct_shd.g_old_rec.shrt_name;
634: End If;
635: If (p_rec.pc_kit_cd = hr_api.g_varchar2) then
636: p_rec.pc_kit_cd :=
637: ben_cct_shd.g_old_rec.pc_kit_cd;

Line 637: ben_cct_shd.g_old_rec.pc_kit_cd;

633: ben_cct_shd.g_old_rec.shrt_name;
634: End If;
635: If (p_rec.pc_kit_cd = hr_api.g_varchar2) then
636: p_rec.pc_kit_cd :=
637: ben_cct_shd.g_old_rec.pc_kit_cd;
638: End If;
639: If (p_rec.trk_mlg_flag = hr_api.g_varchar2) then
640: p_rec.trk_mlg_flag :=
641: ben_cct_shd.g_old_rec.trk_mlg_flag;

Line 641: ben_cct_shd.g_old_rec.trk_mlg_flag;

637: ben_cct_shd.g_old_rec.pc_kit_cd;
638: End If;
639: If (p_rec.trk_mlg_flag = hr_api.g_varchar2) then
640: p_rec.trk_mlg_flag :=
641: ben_cct_shd.g_old_rec.trk_mlg_flag;
642: End If;
643: If (p_rec.mx_num_avlbl_val = hr_api.g_number) then
644: p_rec.mx_num_avlbl_val :=
645: ben_cct_shd.g_old_rec.mx_num_avlbl_val;

Line 645: ben_cct_shd.g_old_rec.mx_num_avlbl_val;

641: ben_cct_shd.g_old_rec.trk_mlg_flag;
642: End If;
643: If (p_rec.mx_num_avlbl_val = hr_api.g_number) then
644: p_rec.mx_num_avlbl_val :=
645: ben_cct_shd.g_old_rec.mx_num_avlbl_val;
646: End If;
647: If (p_rec.to_be_sent_dt_cd = hr_api.g_varchar2) then
648: p_rec.to_be_sent_dt_cd :=
649: ben_cct_shd.g_old_rec.to_be_sent_dt_cd;

Line 649: ben_cct_shd.g_old_rec.to_be_sent_dt_cd;

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

Line 653: ben_cct_shd.g_old_rec.to_be_sent_dt_rl;

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

Line 657: ben_cct_shd.g_old_rec.inspn_rqd_flag;

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

Line 661: ben_cct_shd.g_old_rec.inspn_rqd_rl;

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

Line 665: ben_cct_shd.g_old_rec.rcpent_cd;

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

Line 669: ben_cct_shd.g_old_rec.parnt_cm_typ_id;

665: ben_cct_shd.g_old_rec.rcpent_cd;
666: End If;
667: If (p_rec.parnt_cm_typ_id = hr_api.g_number) then
668: p_rec.parnt_cm_typ_id :=
669: ben_cct_shd.g_old_rec.parnt_cm_typ_id;
670: End If;
671: If (p_rec.business_group_id = hr_api.g_number) then
672: p_rec.business_group_id :=
673: ben_cct_shd.g_old_rec.business_group_id;

Line 673: ben_cct_shd.g_old_rec.business_group_id;

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

Line 677: ben_cct_shd.g_old_rec.cct_attribute_category;

673: ben_cct_shd.g_old_rec.business_group_id;
674: End If;
675: If (p_rec.cct_attribute_category = hr_api.g_varchar2) then
676: p_rec.cct_attribute_category :=
677: ben_cct_shd.g_old_rec.cct_attribute_category;
678: End If;
679: If (p_rec.cct_attribute1 = hr_api.g_varchar2) then
680: p_rec.cct_attribute1 :=
681: ben_cct_shd.g_old_rec.cct_attribute1;

Line 681: ben_cct_shd.g_old_rec.cct_attribute1;

677: ben_cct_shd.g_old_rec.cct_attribute_category;
678: End If;
679: If (p_rec.cct_attribute1 = hr_api.g_varchar2) then
680: p_rec.cct_attribute1 :=
681: ben_cct_shd.g_old_rec.cct_attribute1;
682: End If;
683: If (p_rec.cct_attribute10 = hr_api.g_varchar2) then
684: p_rec.cct_attribute10 :=
685: ben_cct_shd.g_old_rec.cct_attribute10;

Line 685: ben_cct_shd.g_old_rec.cct_attribute10;

681: ben_cct_shd.g_old_rec.cct_attribute1;
682: End If;
683: If (p_rec.cct_attribute10 = hr_api.g_varchar2) then
684: p_rec.cct_attribute10 :=
685: ben_cct_shd.g_old_rec.cct_attribute10;
686: End If;
687: If (p_rec.cct_attribute11 = hr_api.g_varchar2) then
688: p_rec.cct_attribute11 :=
689: ben_cct_shd.g_old_rec.cct_attribute11;

Line 689: ben_cct_shd.g_old_rec.cct_attribute11;

685: ben_cct_shd.g_old_rec.cct_attribute10;
686: End If;
687: If (p_rec.cct_attribute11 = hr_api.g_varchar2) then
688: p_rec.cct_attribute11 :=
689: ben_cct_shd.g_old_rec.cct_attribute11;
690: End If;
691: If (p_rec.cct_attribute12 = hr_api.g_varchar2) then
692: p_rec.cct_attribute12 :=
693: ben_cct_shd.g_old_rec.cct_attribute12;

Line 693: ben_cct_shd.g_old_rec.cct_attribute12;

689: ben_cct_shd.g_old_rec.cct_attribute11;
690: End If;
691: If (p_rec.cct_attribute12 = hr_api.g_varchar2) then
692: p_rec.cct_attribute12 :=
693: ben_cct_shd.g_old_rec.cct_attribute12;
694: End If;
695: If (p_rec.cct_attribute13 = hr_api.g_varchar2) then
696: p_rec.cct_attribute13 :=
697: ben_cct_shd.g_old_rec.cct_attribute13;

Line 697: ben_cct_shd.g_old_rec.cct_attribute13;

693: ben_cct_shd.g_old_rec.cct_attribute12;
694: End If;
695: If (p_rec.cct_attribute13 = hr_api.g_varchar2) then
696: p_rec.cct_attribute13 :=
697: ben_cct_shd.g_old_rec.cct_attribute13;
698: End If;
699: If (p_rec.cct_attribute14 = hr_api.g_varchar2) then
700: p_rec.cct_attribute14 :=
701: ben_cct_shd.g_old_rec.cct_attribute14;

Line 701: ben_cct_shd.g_old_rec.cct_attribute14;

697: ben_cct_shd.g_old_rec.cct_attribute13;
698: End If;
699: If (p_rec.cct_attribute14 = hr_api.g_varchar2) then
700: p_rec.cct_attribute14 :=
701: ben_cct_shd.g_old_rec.cct_attribute14;
702: End If;
703: If (p_rec.cct_attribute15 = hr_api.g_varchar2) then
704: p_rec.cct_attribute15 :=
705: ben_cct_shd.g_old_rec.cct_attribute15;

Line 705: ben_cct_shd.g_old_rec.cct_attribute15;

701: ben_cct_shd.g_old_rec.cct_attribute14;
702: End If;
703: If (p_rec.cct_attribute15 = hr_api.g_varchar2) then
704: p_rec.cct_attribute15 :=
705: ben_cct_shd.g_old_rec.cct_attribute15;
706: End If;
707: If (p_rec.cct_attribute16 = hr_api.g_varchar2) then
708: p_rec.cct_attribute16 :=
709: ben_cct_shd.g_old_rec.cct_attribute16;

Line 709: ben_cct_shd.g_old_rec.cct_attribute16;

705: ben_cct_shd.g_old_rec.cct_attribute15;
706: End If;
707: If (p_rec.cct_attribute16 = hr_api.g_varchar2) then
708: p_rec.cct_attribute16 :=
709: ben_cct_shd.g_old_rec.cct_attribute16;
710: End If;
711: If (p_rec.cct_attribute17 = hr_api.g_varchar2) then
712: p_rec.cct_attribute17 :=
713: ben_cct_shd.g_old_rec.cct_attribute17;

Line 713: ben_cct_shd.g_old_rec.cct_attribute17;

709: ben_cct_shd.g_old_rec.cct_attribute16;
710: End If;
711: If (p_rec.cct_attribute17 = hr_api.g_varchar2) then
712: p_rec.cct_attribute17 :=
713: ben_cct_shd.g_old_rec.cct_attribute17;
714: End If;
715: If (p_rec.cct_attribute18 = hr_api.g_varchar2) then
716: p_rec.cct_attribute18 :=
717: ben_cct_shd.g_old_rec.cct_attribute18;

Line 717: ben_cct_shd.g_old_rec.cct_attribute18;

713: ben_cct_shd.g_old_rec.cct_attribute17;
714: End If;
715: If (p_rec.cct_attribute18 = hr_api.g_varchar2) then
716: p_rec.cct_attribute18 :=
717: ben_cct_shd.g_old_rec.cct_attribute18;
718: End If;
719: If (p_rec.cct_attribute19 = hr_api.g_varchar2) then
720: p_rec.cct_attribute19 :=
721: ben_cct_shd.g_old_rec.cct_attribute19;

Line 721: ben_cct_shd.g_old_rec.cct_attribute19;

717: ben_cct_shd.g_old_rec.cct_attribute18;
718: End If;
719: If (p_rec.cct_attribute19 = hr_api.g_varchar2) then
720: p_rec.cct_attribute19 :=
721: ben_cct_shd.g_old_rec.cct_attribute19;
722: End If;
723: If (p_rec.cct_attribute2 = hr_api.g_varchar2) then
724: p_rec.cct_attribute2 :=
725: ben_cct_shd.g_old_rec.cct_attribute2;

Line 725: ben_cct_shd.g_old_rec.cct_attribute2;

721: ben_cct_shd.g_old_rec.cct_attribute19;
722: End If;
723: If (p_rec.cct_attribute2 = hr_api.g_varchar2) then
724: p_rec.cct_attribute2 :=
725: ben_cct_shd.g_old_rec.cct_attribute2;
726: End If;
727: If (p_rec.cct_attribute20 = hr_api.g_varchar2) then
728: p_rec.cct_attribute20 :=
729: ben_cct_shd.g_old_rec.cct_attribute20;

Line 729: ben_cct_shd.g_old_rec.cct_attribute20;

725: ben_cct_shd.g_old_rec.cct_attribute2;
726: End If;
727: If (p_rec.cct_attribute20 = hr_api.g_varchar2) then
728: p_rec.cct_attribute20 :=
729: ben_cct_shd.g_old_rec.cct_attribute20;
730: End If;
731: If (p_rec.cct_attribute21 = hr_api.g_varchar2) then
732: p_rec.cct_attribute21 :=
733: ben_cct_shd.g_old_rec.cct_attribute21;

Line 733: ben_cct_shd.g_old_rec.cct_attribute21;

729: ben_cct_shd.g_old_rec.cct_attribute20;
730: End If;
731: If (p_rec.cct_attribute21 = hr_api.g_varchar2) then
732: p_rec.cct_attribute21 :=
733: ben_cct_shd.g_old_rec.cct_attribute21;
734: End If;
735: If (p_rec.cct_attribute22 = hr_api.g_varchar2) then
736: p_rec.cct_attribute22 :=
737: ben_cct_shd.g_old_rec.cct_attribute22;

Line 737: ben_cct_shd.g_old_rec.cct_attribute22;

733: ben_cct_shd.g_old_rec.cct_attribute21;
734: End If;
735: If (p_rec.cct_attribute22 = hr_api.g_varchar2) then
736: p_rec.cct_attribute22 :=
737: ben_cct_shd.g_old_rec.cct_attribute22;
738: End If;
739: If (p_rec.cct_attribute23 = hr_api.g_varchar2) then
740: p_rec.cct_attribute23 :=
741: ben_cct_shd.g_old_rec.cct_attribute23;

Line 741: ben_cct_shd.g_old_rec.cct_attribute23;

737: ben_cct_shd.g_old_rec.cct_attribute22;
738: End If;
739: If (p_rec.cct_attribute23 = hr_api.g_varchar2) then
740: p_rec.cct_attribute23 :=
741: ben_cct_shd.g_old_rec.cct_attribute23;
742: End If;
743: If (p_rec.cct_attribute24 = hr_api.g_varchar2) then
744: p_rec.cct_attribute24 :=
745: ben_cct_shd.g_old_rec.cct_attribute24;

Line 745: ben_cct_shd.g_old_rec.cct_attribute24;

741: ben_cct_shd.g_old_rec.cct_attribute23;
742: End If;
743: If (p_rec.cct_attribute24 = hr_api.g_varchar2) then
744: p_rec.cct_attribute24 :=
745: ben_cct_shd.g_old_rec.cct_attribute24;
746: End If;
747: If (p_rec.cct_attribute25 = hr_api.g_varchar2) then
748: p_rec.cct_attribute25 :=
749: ben_cct_shd.g_old_rec.cct_attribute25;

Line 749: ben_cct_shd.g_old_rec.cct_attribute25;

745: ben_cct_shd.g_old_rec.cct_attribute24;
746: End If;
747: If (p_rec.cct_attribute25 = hr_api.g_varchar2) then
748: p_rec.cct_attribute25 :=
749: ben_cct_shd.g_old_rec.cct_attribute25;
750: End If;
751: If (p_rec.cct_attribute26 = hr_api.g_varchar2) then
752: p_rec.cct_attribute26 :=
753: ben_cct_shd.g_old_rec.cct_attribute26;

Line 753: ben_cct_shd.g_old_rec.cct_attribute26;

749: ben_cct_shd.g_old_rec.cct_attribute25;
750: End If;
751: If (p_rec.cct_attribute26 = hr_api.g_varchar2) then
752: p_rec.cct_attribute26 :=
753: ben_cct_shd.g_old_rec.cct_attribute26;
754: End If;
755: If (p_rec.cct_attribute27 = hr_api.g_varchar2) then
756: p_rec.cct_attribute27 :=
757: ben_cct_shd.g_old_rec.cct_attribute27;

Line 757: ben_cct_shd.g_old_rec.cct_attribute27;

753: ben_cct_shd.g_old_rec.cct_attribute26;
754: End If;
755: If (p_rec.cct_attribute27 = hr_api.g_varchar2) then
756: p_rec.cct_attribute27 :=
757: ben_cct_shd.g_old_rec.cct_attribute27;
758: End If;
759: If (p_rec.cct_attribute28 = hr_api.g_varchar2) then
760: p_rec.cct_attribute28 :=
761: ben_cct_shd.g_old_rec.cct_attribute28;

Line 761: ben_cct_shd.g_old_rec.cct_attribute28;

757: ben_cct_shd.g_old_rec.cct_attribute27;
758: End If;
759: If (p_rec.cct_attribute28 = hr_api.g_varchar2) then
760: p_rec.cct_attribute28 :=
761: ben_cct_shd.g_old_rec.cct_attribute28;
762: End If;
763: If (p_rec.cct_attribute29 = hr_api.g_varchar2) then
764: p_rec.cct_attribute29 :=
765: ben_cct_shd.g_old_rec.cct_attribute29;

Line 765: ben_cct_shd.g_old_rec.cct_attribute29;

761: ben_cct_shd.g_old_rec.cct_attribute28;
762: End If;
763: If (p_rec.cct_attribute29 = hr_api.g_varchar2) then
764: p_rec.cct_attribute29 :=
765: ben_cct_shd.g_old_rec.cct_attribute29;
766: End If;
767: If (p_rec.cct_attribute3 = hr_api.g_varchar2) then
768: p_rec.cct_attribute3 :=
769: ben_cct_shd.g_old_rec.cct_attribute3;

Line 769: ben_cct_shd.g_old_rec.cct_attribute3;

765: ben_cct_shd.g_old_rec.cct_attribute29;
766: End If;
767: If (p_rec.cct_attribute3 = hr_api.g_varchar2) then
768: p_rec.cct_attribute3 :=
769: ben_cct_shd.g_old_rec.cct_attribute3;
770: End If;
771: If (p_rec.cct_attribute30 = hr_api.g_varchar2) then
772: p_rec.cct_attribute30 :=
773: ben_cct_shd.g_old_rec.cct_attribute30;

Line 773: ben_cct_shd.g_old_rec.cct_attribute30;

769: ben_cct_shd.g_old_rec.cct_attribute3;
770: End If;
771: If (p_rec.cct_attribute30 = hr_api.g_varchar2) then
772: p_rec.cct_attribute30 :=
773: ben_cct_shd.g_old_rec.cct_attribute30;
774: End If;
775: If (p_rec.cct_attribute4 = hr_api.g_varchar2) then
776: p_rec.cct_attribute4 :=
777: ben_cct_shd.g_old_rec.cct_attribute4;

Line 777: ben_cct_shd.g_old_rec.cct_attribute4;

773: ben_cct_shd.g_old_rec.cct_attribute30;
774: End If;
775: If (p_rec.cct_attribute4 = hr_api.g_varchar2) then
776: p_rec.cct_attribute4 :=
777: ben_cct_shd.g_old_rec.cct_attribute4;
778: End If;
779: If (p_rec.cct_attribute5 = hr_api.g_varchar2) then
780: p_rec.cct_attribute5 :=
781: ben_cct_shd.g_old_rec.cct_attribute5;

Line 781: ben_cct_shd.g_old_rec.cct_attribute5;

777: ben_cct_shd.g_old_rec.cct_attribute4;
778: End If;
779: If (p_rec.cct_attribute5 = hr_api.g_varchar2) then
780: p_rec.cct_attribute5 :=
781: ben_cct_shd.g_old_rec.cct_attribute5;
782: End If;
783: If (p_rec.cct_attribute6 = hr_api.g_varchar2) then
784: p_rec.cct_attribute6 :=
785: ben_cct_shd.g_old_rec.cct_attribute6;

Line 785: ben_cct_shd.g_old_rec.cct_attribute6;

781: ben_cct_shd.g_old_rec.cct_attribute5;
782: End If;
783: If (p_rec.cct_attribute6 = hr_api.g_varchar2) then
784: p_rec.cct_attribute6 :=
785: ben_cct_shd.g_old_rec.cct_attribute6;
786: End If;
787: If (p_rec.cct_attribute7 = hr_api.g_varchar2) then
788: p_rec.cct_attribute7 :=
789: ben_cct_shd.g_old_rec.cct_attribute7;

Line 789: ben_cct_shd.g_old_rec.cct_attribute7;

785: ben_cct_shd.g_old_rec.cct_attribute6;
786: End If;
787: If (p_rec.cct_attribute7 = hr_api.g_varchar2) then
788: p_rec.cct_attribute7 :=
789: ben_cct_shd.g_old_rec.cct_attribute7;
790: End If;
791: If (p_rec.cct_attribute8 = hr_api.g_varchar2) then
792: p_rec.cct_attribute8 :=
793: ben_cct_shd.g_old_rec.cct_attribute8;

Line 793: ben_cct_shd.g_old_rec.cct_attribute8;

789: ben_cct_shd.g_old_rec.cct_attribute7;
790: End If;
791: If (p_rec.cct_attribute8 = hr_api.g_varchar2) then
792: p_rec.cct_attribute8 :=
793: ben_cct_shd.g_old_rec.cct_attribute8;
794: End If;
795: If (p_rec.cct_attribute9 = hr_api.g_varchar2) then
796: p_rec.cct_attribute9 :=
797: ben_cct_shd.g_old_rec.cct_attribute9;

Line 797: ben_cct_shd.g_old_rec.cct_attribute9;

793: ben_cct_shd.g_old_rec.cct_attribute8;
794: End If;
795: If (p_rec.cct_attribute9 = hr_api.g_varchar2) then
796: p_rec.cct_attribute9 :=
797: ben_cct_shd.g_old_rec.cct_attribute9;
798: End If;
799: --
800: hr_utility.set_location(' Leaving:'||l_proc, 10);
801: --

Line 809: p_rec in out nocopy ben_cct_shd.g_rec_type,

805: -- |---------------------------------< upd >----------------------------------|
806: -- ----------------------------------------------------------------------------
807: Procedure upd
808: (
809: p_rec in out nocopy ben_cct_shd.g_rec_type,
810: p_effective_date in date,
811: p_datetrack_mode in varchar2
812: ) is
813: --

Line 827: ben_cct_shd.lck

823: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);
824: --
825: -- We must lock the row which we need to update.
826: --
827: ben_cct_shd.lck
828: (p_effective_date => p_effective_date,
829: p_datetrack_mode => p_datetrack_mode,
830: p_cm_typ_id => p_rec.cm_typ_id,
831: p_object_version_number => p_rec.object_version_number,

Line 937: l_rec ben_cct_shd.g_rec_type;

933: p_effective_date in date,
934: p_datetrack_mode in varchar2
935: ) is
936: --
937: l_rec ben_cct_shd.g_rec_type;
938: l_proc varchar2(72) := g_package||'upd';
939: --
940: Begin
941: hr_utility.set_location('Entering:'||l_proc, 5);

Line 947: ben_cct_shd.convert_args

943: -- Call conversion function to turn arguments into the
944: -- l_rec structure.
945: --
946: l_rec :=
947: ben_cct_shd.convert_args
948: (
949: p_cm_typ_id,
950: null,
951: null,