DBA Data[Home] [Help]

APPS.BEN_CPO_UPD dependencies on BEN_CPO_SHD

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

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

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

Line 131: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status

127: where popl_org_id = p_rec.popl_org_id
128: and effective_start_date = p_validation_start_date
129: and effective_end_date = p_validation_end_date;
130: --
131: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
132: --
133: -- Set the effective start and end dates
134: --
135: p_rec.effective_start_date := p_validation_start_date;

Line 143: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status

139: hr_utility.set_location(' Leaving:'||l_proc, 15);
140: Exception
141: When hr_api.check_integrity_violated Then
142: -- A check constraint has been violated
143: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
144: ben_cpo_shd.constraint_error
145: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
146: When hr_api.unique_integrity_violated Then
147: -- Unique integrity has been violated

Line 144: ben_cpo_shd.constraint_error

140: Exception
141: When hr_api.check_integrity_violated Then
142: -- A check constraint has been violated
143: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
144: ben_cpo_shd.constraint_error
145: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
146: When hr_api.unique_integrity_violated Then
147: -- Unique integrity has been violated
148: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status

Line 148: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status

144: ben_cpo_shd.constraint_error
145: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
146: When hr_api.unique_integrity_violated Then
147: -- Unique integrity has been violated
148: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
149: ben_cpo_shd.constraint_error
150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When Others Then
152: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status

Line 149: ben_cpo_shd.constraint_error

145: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
146: When hr_api.unique_integrity_violated Then
147: -- Unique integrity has been violated
148: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
149: ben_cpo_shd.constraint_error
150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When Others Then
152: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
153: Raise;

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

148: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
149: ben_cpo_shd.constraint_error
150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When Others Then
152: ben_cpo_shd.g_api_dml := false; -- Unset the api dml status
153: Raise;
154: End dt_update_dml;
155: --
156: -- ----------------------------------------------------------------------------

Line 188: (p_rec in out nocopy ben_cpo_shd.g_rec_type,

184: --
185: -- {End Of Comments}
186: -- ----------------------------------------------------------------------------
187: Procedure update_dml
188: (p_rec in out nocopy ben_cpo_shd.g_rec_type,
189: p_effective_date in date,
190: p_datetrack_mode in varchar2,
191: p_validation_start_date in date,
192: p_validation_end_date in date) is

Line 252: (p_rec in out nocopy ben_cpo_shd.g_rec_type,

248: --
249: -- {End Of Comments}
250: -- ----------------------------------------------------------------------------
251: Procedure dt_pre_update
252: (p_rec in out nocopy ben_cpo_shd.g_rec_type,
253: p_effective_date in date,
254: p_datetrack_mode in varchar2,
255: p_validation_start_date in date,
256: p_validation_end_date in date) is

Line 268: ben_cpo_shd.upd_effective_end_date

264: hr_utility.set_location(l_proc, 10);
265: --
266: -- Update the current effective end date
267: --
268: ben_cpo_shd.upd_effective_end_date
269: (p_effective_date => p_effective_date,
270: p_base_key_value => p_rec.popl_org_id,
271: p_new_effective_end_date => (p_validation_start_date - 1),
272: p_validation_start_date => p_validation_start_date,

Line 337: (p_rec in out nocopy ben_cpo_shd.g_rec_type,

333: --
334: -- {End Of Comments}
335: -- ----------------------------------------------------------------------------
336: Procedure pre_update
337: (p_rec in out nocopy ben_cpo_shd.g_rec_type,
338: p_effective_date in date,
339: p_datetrack_mode in varchar2,
340: p_validation_start_date in date,
341: p_validation_end_date in date) is

Line 393: (p_rec in ben_cpo_shd.g_rec_type,

389: --
390: -- {End Of Comments}
391: -- ----------------------------------------------------------------------------
392: Procedure post_update
393: (p_rec in ben_cpo_shd.g_rec_type,
394: p_effective_date in date,
395: p_datetrack_mode in varchar2,
396: p_validation_start_date in date,
397: p_validation_end_date in date) is

Line 457: ,p_effective_start_date_o => ben_cpo_shd.g_old_rec.effective_start_date

453: ,p_effective_date => p_effective_date
454: ,p_datetrack_mode => p_datetrack_mode
455: ,p_validation_start_date => p_validation_start_date
456: ,p_validation_end_date => p_validation_end_date
457: ,p_effective_start_date_o => ben_cpo_shd.g_old_rec.effective_start_date
458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date
459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp

Line 458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date

454: ,p_datetrack_mode => p_datetrack_mode
455: ,p_validation_start_date => p_validation_start_date
456: ,p_validation_end_date => p_validation_end_date
457: ,p_effective_start_date_o => ben_cpo_shd.g_old_rec.effective_start_date
458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date
459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id

Line 459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id

455: ,p_validation_start_date => p_validation_start_date
456: ,p_validation_end_date => p_validation_end_date
457: ,p_effective_start_date_o => ben_cpo_shd.g_old_rec.effective_start_date
458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date
459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id

Line 460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num

456: ,p_validation_end_date => p_validation_end_date
457: ,p_effective_start_date_o => ben_cpo_shd.g_old_rec.effective_start_date
458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date
459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id

Line 461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp

457: ,p_effective_start_date_o => ben_cpo_shd.g_old_rec.effective_start_date
458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date
459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id

Line 462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id

458: ,p_effective_end_date_o => ben_cpo_shd.g_old_rec.effective_end_date
459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category

Line 463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id

459: ,p_business_group_id_o => ben_cpo_shd.g_old_rec.business_group_id
460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1

Line 464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id

460: ,p_cstmr_num_o => ben_cpo_shd.g_old_rec.cstmr_num
461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2

Line 465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id

461: ,p_plcy_r_grp_o => ben_cpo_shd.g_old_rec.plcy_r_grp
462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3

Line 466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category

462: ,p_pgm_id_o => ben_cpo_shd.g_old_rec.pgm_id
463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4

Line 467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1

463: ,p_pl_id_o => ben_cpo_shd.g_old_rec.pl_id
464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5

Line 468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2

464: ,p_organization_id_o => ben_cpo_shd.g_old_rec.organization_id
465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6

Line 469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3

465: ,p_person_id_o => ben_cpo_shd.g_old_rec.person_id
466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7

Line 470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4

466: ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8

Line 471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5

467: ,p_cpo_attribute1_o => ben_cpo_shd.g_old_rec.cpo_attribute1
468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9

Line 472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6

468: ,p_cpo_attribute2_o => ben_cpo_shd.g_old_rec.cpo_attribute2
469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10

Line 473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7

469: ,p_cpo_attribute3_o => ben_cpo_shd.g_old_rec.cpo_attribute3
470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11

Line 474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8

470: ,p_cpo_attribute4_o => ben_cpo_shd.g_old_rec.cpo_attribute4
471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12

Line 475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9

471: ,p_cpo_attribute5_o => ben_cpo_shd.g_old_rec.cpo_attribute5
472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13

Line 476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10

472: ,p_cpo_attribute6_o => ben_cpo_shd.g_old_rec.cpo_attribute6
473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14

Line 477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11

473: ,p_cpo_attribute7_o => ben_cpo_shd.g_old_rec.cpo_attribute7
474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15

Line 478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12

474: ,p_cpo_attribute8_o => ben_cpo_shd.g_old_rec.cpo_attribute8
475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16

Line 479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13

475: ,p_cpo_attribute9_o => ben_cpo_shd.g_old_rec.cpo_attribute9
476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17

Line 480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14

476: ,p_cpo_attribute10_o => ben_cpo_shd.g_old_rec.cpo_attribute10
477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18

Line 481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15

477: ,p_cpo_attribute11_o => ben_cpo_shd.g_old_rec.cpo_attribute11
478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19

Line 482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16

478: ,p_cpo_attribute12_o => ben_cpo_shd.g_old_rec.cpo_attribute12
479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20

Line 483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17

479: ,p_cpo_attribute13_o => ben_cpo_shd.g_old_rec.cpo_attribute13
480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21

Line 484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18

480: ,p_cpo_attribute14_o => ben_cpo_shd.g_old_rec.cpo_attribute14
481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22

Line 485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19

481: ,p_cpo_attribute15_o => ben_cpo_shd.g_old_rec.cpo_attribute15
482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23

Line 486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20

482: ,p_cpo_attribute16_o => ben_cpo_shd.g_old_rec.cpo_attribute16
483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24

Line 487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21

483: ,p_cpo_attribute17_o => ben_cpo_shd.g_old_rec.cpo_attribute17
484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25

Line 488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22

484: ,p_cpo_attribute18_o => ben_cpo_shd.g_old_rec.cpo_attribute18
485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26

Line 489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23

485: ,p_cpo_attribute19_o => ben_cpo_shd.g_old_rec.cpo_attribute19
486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27

Line 490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24

486: ,p_cpo_attribute20_o => ben_cpo_shd.g_old_rec.cpo_attribute20
487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28

Line 491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25

487: ,p_cpo_attribute21_o => ben_cpo_shd.g_old_rec.cpo_attribute21
488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29

Line 492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26

488: ,p_cpo_attribute22_o => ben_cpo_shd.g_old_rec.cpo_attribute22
489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29
496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30

Line 493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27

489: ,p_cpo_attribute23_o => ben_cpo_shd.g_old_rec.cpo_attribute23
490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29
496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30
497: ,p_object_version_number_o => ben_cpo_shd.g_old_rec.object_version_number

Line 494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28

490: ,p_cpo_attribute24_o => ben_cpo_shd.g_old_rec.cpo_attribute24
491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29
496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30
497: ,p_object_version_number_o => ben_cpo_shd.g_old_rec.object_version_number
498: );

Line 495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29

491: ,p_cpo_attribute25_o => ben_cpo_shd.g_old_rec.cpo_attribute25
492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29
496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30
497: ,p_object_version_number_o => ben_cpo_shd.g_old_rec.object_version_number
498: );
499: --

Line 496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30

492: ,p_cpo_attribute26_o => ben_cpo_shd.g_old_rec.cpo_attribute26
493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29
496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30
497: ,p_object_version_number_o => ben_cpo_shd.g_old_rec.object_version_number
498: );
499: --
500: exception

Line 497: ,p_object_version_number_o => ben_cpo_shd.g_old_rec.object_version_number

493: ,p_cpo_attribute27_o => ben_cpo_shd.g_old_rec.cpo_attribute27
494: ,p_cpo_attribute28_o => ben_cpo_shd.g_old_rec.cpo_attribute28
495: ,p_cpo_attribute29_o => ben_cpo_shd.g_old_rec.cpo_attribute29
496: ,p_cpo_attribute30_o => ben_cpo_shd.g_old_rec.cpo_attribute30
497: ,p_object_version_number_o => ben_cpo_shd.g_old_rec.object_version_number
498: );
499: --
500: exception
501: --

Line 558: Procedure convert_defs(p_rec in out nocopy ben_cpo_shd.g_rec_type) is

554: -- Internal Row Handler Use Only.
555: --
556: -- {End Of Comments}
557: -- ----------------------------------------------------------------------------
558: Procedure convert_defs(p_rec in out nocopy ben_cpo_shd.g_rec_type) is
559: --
560: l_proc varchar2(72) := g_package||'convert_defs';
561: --
562: Begin

Line 573: ben_cpo_shd.g_old_rec.business_group_id;

569: -- is being used then we must set to the 'current' argument value.
570: --
571: If (p_rec.business_group_id = hr_api.g_number) then
572: p_rec.business_group_id :=
573: ben_cpo_shd.g_old_rec.business_group_id;
574: End If;
575: If (p_rec.cstmr_num = hr_api.g_number) then
576: p_rec.cstmr_num :=
577: ben_cpo_shd.g_old_rec.cstmr_num;

Line 577: ben_cpo_shd.g_old_rec.cstmr_num;

573: ben_cpo_shd.g_old_rec.business_group_id;
574: End If;
575: If (p_rec.cstmr_num = hr_api.g_number) then
576: p_rec.cstmr_num :=
577: ben_cpo_shd.g_old_rec.cstmr_num;
578: End If;
579: If (p_rec.plcy_r_grp = hr_api.g_varchar2) then
580: p_rec.plcy_r_grp :=
581: ben_cpo_shd.g_old_rec.plcy_r_grp;

Line 581: ben_cpo_shd.g_old_rec.plcy_r_grp;

577: ben_cpo_shd.g_old_rec.cstmr_num;
578: End If;
579: If (p_rec.plcy_r_grp = hr_api.g_varchar2) then
580: p_rec.plcy_r_grp :=
581: ben_cpo_shd.g_old_rec.plcy_r_grp;
582: End If;
583: If (p_rec.pgm_id = hr_api.g_number) then
584: p_rec.pgm_id :=
585: ben_cpo_shd.g_old_rec.pgm_id;

Line 585: ben_cpo_shd.g_old_rec.pgm_id;

581: ben_cpo_shd.g_old_rec.plcy_r_grp;
582: End If;
583: If (p_rec.pgm_id = hr_api.g_number) then
584: p_rec.pgm_id :=
585: ben_cpo_shd.g_old_rec.pgm_id;
586: End If;
587: If (p_rec.pl_id = hr_api.g_number) then
588: p_rec.pl_id :=
589: ben_cpo_shd.g_old_rec.pl_id;

Line 589: ben_cpo_shd.g_old_rec.pl_id;

585: ben_cpo_shd.g_old_rec.pgm_id;
586: End If;
587: If (p_rec.pl_id = hr_api.g_number) then
588: p_rec.pl_id :=
589: ben_cpo_shd.g_old_rec.pl_id;
590: End If;
591: If (p_rec.organization_id = hr_api.g_number) then
592: p_rec.organization_id :=
593: ben_cpo_shd.g_old_rec.organization_id;

Line 593: ben_cpo_shd.g_old_rec.organization_id;

589: ben_cpo_shd.g_old_rec.pl_id;
590: End If;
591: If (p_rec.organization_id = hr_api.g_number) then
592: p_rec.organization_id :=
593: ben_cpo_shd.g_old_rec.organization_id;
594: End If;
595: If (p_rec.cpo_attribute_category = hr_api.g_varchar2) then
596: p_rec.cpo_attribute_category :=
597: ben_cpo_shd.g_old_rec.cpo_attribute_category;

Line 597: ben_cpo_shd.g_old_rec.cpo_attribute_category;

593: ben_cpo_shd.g_old_rec.organization_id;
594: End If;
595: If (p_rec.cpo_attribute_category = hr_api.g_varchar2) then
596: p_rec.cpo_attribute_category :=
597: ben_cpo_shd.g_old_rec.cpo_attribute_category;
598: End If;
599: If (p_rec.cpo_attribute1 = hr_api.g_varchar2) then
600: p_rec.cpo_attribute1 :=
601: ben_cpo_shd.g_old_rec.cpo_attribute1;

Line 601: ben_cpo_shd.g_old_rec.cpo_attribute1;

597: ben_cpo_shd.g_old_rec.cpo_attribute_category;
598: End If;
599: If (p_rec.cpo_attribute1 = hr_api.g_varchar2) then
600: p_rec.cpo_attribute1 :=
601: ben_cpo_shd.g_old_rec.cpo_attribute1;
602: End If;
603: If (p_rec.cpo_attribute2 = hr_api.g_varchar2) then
604: p_rec.cpo_attribute2 :=
605: ben_cpo_shd.g_old_rec.cpo_attribute2;

Line 605: ben_cpo_shd.g_old_rec.cpo_attribute2;

601: ben_cpo_shd.g_old_rec.cpo_attribute1;
602: End If;
603: If (p_rec.cpo_attribute2 = hr_api.g_varchar2) then
604: p_rec.cpo_attribute2 :=
605: ben_cpo_shd.g_old_rec.cpo_attribute2;
606: End If;
607: If (p_rec.cpo_attribute3 = hr_api.g_varchar2) then
608: p_rec.cpo_attribute3 :=
609: ben_cpo_shd.g_old_rec.cpo_attribute3;

Line 609: ben_cpo_shd.g_old_rec.cpo_attribute3;

605: ben_cpo_shd.g_old_rec.cpo_attribute2;
606: End If;
607: If (p_rec.cpo_attribute3 = hr_api.g_varchar2) then
608: p_rec.cpo_attribute3 :=
609: ben_cpo_shd.g_old_rec.cpo_attribute3;
610: End If;
611: If (p_rec.cpo_attribute4 = hr_api.g_varchar2) then
612: p_rec.cpo_attribute4 :=
613: ben_cpo_shd.g_old_rec.cpo_attribute4;

Line 613: ben_cpo_shd.g_old_rec.cpo_attribute4;

609: ben_cpo_shd.g_old_rec.cpo_attribute3;
610: End If;
611: If (p_rec.cpo_attribute4 = hr_api.g_varchar2) then
612: p_rec.cpo_attribute4 :=
613: ben_cpo_shd.g_old_rec.cpo_attribute4;
614: End If;
615: If (p_rec.cpo_attribute5 = hr_api.g_varchar2) then
616: p_rec.cpo_attribute5 :=
617: ben_cpo_shd.g_old_rec.cpo_attribute5;

Line 617: ben_cpo_shd.g_old_rec.cpo_attribute5;

613: ben_cpo_shd.g_old_rec.cpo_attribute4;
614: End If;
615: If (p_rec.cpo_attribute5 = hr_api.g_varchar2) then
616: p_rec.cpo_attribute5 :=
617: ben_cpo_shd.g_old_rec.cpo_attribute5;
618: End If;
619: If (p_rec.cpo_attribute6 = hr_api.g_varchar2) then
620: p_rec.cpo_attribute6 :=
621: ben_cpo_shd.g_old_rec.cpo_attribute6;

Line 621: ben_cpo_shd.g_old_rec.cpo_attribute6;

617: ben_cpo_shd.g_old_rec.cpo_attribute5;
618: End If;
619: If (p_rec.cpo_attribute6 = hr_api.g_varchar2) then
620: p_rec.cpo_attribute6 :=
621: ben_cpo_shd.g_old_rec.cpo_attribute6;
622: End If;
623: If (p_rec.cpo_attribute7 = hr_api.g_varchar2) then
624: p_rec.cpo_attribute7 :=
625: ben_cpo_shd.g_old_rec.cpo_attribute7;

Line 625: ben_cpo_shd.g_old_rec.cpo_attribute7;

621: ben_cpo_shd.g_old_rec.cpo_attribute6;
622: End If;
623: If (p_rec.cpo_attribute7 = hr_api.g_varchar2) then
624: p_rec.cpo_attribute7 :=
625: ben_cpo_shd.g_old_rec.cpo_attribute7;
626: End If;
627: If (p_rec.cpo_attribute8 = hr_api.g_varchar2) then
628: p_rec.cpo_attribute8 :=
629: ben_cpo_shd.g_old_rec.cpo_attribute8;

Line 629: ben_cpo_shd.g_old_rec.cpo_attribute8;

625: ben_cpo_shd.g_old_rec.cpo_attribute7;
626: End If;
627: If (p_rec.cpo_attribute8 = hr_api.g_varchar2) then
628: p_rec.cpo_attribute8 :=
629: ben_cpo_shd.g_old_rec.cpo_attribute8;
630: End If;
631: If (p_rec.cpo_attribute9 = hr_api.g_varchar2) then
632: p_rec.cpo_attribute9 :=
633: ben_cpo_shd.g_old_rec.cpo_attribute9;

Line 633: ben_cpo_shd.g_old_rec.cpo_attribute9;

629: ben_cpo_shd.g_old_rec.cpo_attribute8;
630: End If;
631: If (p_rec.cpo_attribute9 = hr_api.g_varchar2) then
632: p_rec.cpo_attribute9 :=
633: ben_cpo_shd.g_old_rec.cpo_attribute9;
634: End If;
635: If (p_rec.cpo_attribute10 = hr_api.g_varchar2) then
636: p_rec.cpo_attribute10 :=
637: ben_cpo_shd.g_old_rec.cpo_attribute10;

Line 637: ben_cpo_shd.g_old_rec.cpo_attribute10;

633: ben_cpo_shd.g_old_rec.cpo_attribute9;
634: End If;
635: If (p_rec.cpo_attribute10 = hr_api.g_varchar2) then
636: p_rec.cpo_attribute10 :=
637: ben_cpo_shd.g_old_rec.cpo_attribute10;
638: End If;
639: If (p_rec.cpo_attribute11 = hr_api.g_varchar2) then
640: p_rec.cpo_attribute11 :=
641: ben_cpo_shd.g_old_rec.cpo_attribute11;

Line 641: ben_cpo_shd.g_old_rec.cpo_attribute11;

637: ben_cpo_shd.g_old_rec.cpo_attribute10;
638: End If;
639: If (p_rec.cpo_attribute11 = hr_api.g_varchar2) then
640: p_rec.cpo_attribute11 :=
641: ben_cpo_shd.g_old_rec.cpo_attribute11;
642: End If;
643: If (p_rec.cpo_attribute12 = hr_api.g_varchar2) then
644: p_rec.cpo_attribute12 :=
645: ben_cpo_shd.g_old_rec.cpo_attribute12;

Line 645: ben_cpo_shd.g_old_rec.cpo_attribute12;

641: ben_cpo_shd.g_old_rec.cpo_attribute11;
642: End If;
643: If (p_rec.cpo_attribute12 = hr_api.g_varchar2) then
644: p_rec.cpo_attribute12 :=
645: ben_cpo_shd.g_old_rec.cpo_attribute12;
646: End If;
647: If (p_rec.cpo_attribute13 = hr_api.g_varchar2) then
648: p_rec.cpo_attribute13 :=
649: ben_cpo_shd.g_old_rec.cpo_attribute13;

Line 649: ben_cpo_shd.g_old_rec.cpo_attribute13;

645: ben_cpo_shd.g_old_rec.cpo_attribute12;
646: End If;
647: If (p_rec.cpo_attribute13 = hr_api.g_varchar2) then
648: p_rec.cpo_attribute13 :=
649: ben_cpo_shd.g_old_rec.cpo_attribute13;
650: End If;
651: If (p_rec.cpo_attribute14 = hr_api.g_varchar2) then
652: p_rec.cpo_attribute14 :=
653: ben_cpo_shd.g_old_rec.cpo_attribute14;

Line 653: ben_cpo_shd.g_old_rec.cpo_attribute14;

649: ben_cpo_shd.g_old_rec.cpo_attribute13;
650: End If;
651: If (p_rec.cpo_attribute14 = hr_api.g_varchar2) then
652: p_rec.cpo_attribute14 :=
653: ben_cpo_shd.g_old_rec.cpo_attribute14;
654: End If;
655: If (p_rec.cpo_attribute15 = hr_api.g_varchar2) then
656: p_rec.cpo_attribute15 :=
657: ben_cpo_shd.g_old_rec.cpo_attribute15;

Line 657: ben_cpo_shd.g_old_rec.cpo_attribute15;

653: ben_cpo_shd.g_old_rec.cpo_attribute14;
654: End If;
655: If (p_rec.cpo_attribute15 = hr_api.g_varchar2) then
656: p_rec.cpo_attribute15 :=
657: ben_cpo_shd.g_old_rec.cpo_attribute15;
658: End If;
659: If (p_rec.cpo_attribute16 = hr_api.g_varchar2) then
660: p_rec.cpo_attribute16 :=
661: ben_cpo_shd.g_old_rec.cpo_attribute16;

Line 661: ben_cpo_shd.g_old_rec.cpo_attribute16;

657: ben_cpo_shd.g_old_rec.cpo_attribute15;
658: End If;
659: If (p_rec.cpo_attribute16 = hr_api.g_varchar2) then
660: p_rec.cpo_attribute16 :=
661: ben_cpo_shd.g_old_rec.cpo_attribute16;
662: End If;
663: If (p_rec.cpo_attribute17 = hr_api.g_varchar2) then
664: p_rec.cpo_attribute17 :=
665: ben_cpo_shd.g_old_rec.cpo_attribute17;

Line 665: ben_cpo_shd.g_old_rec.cpo_attribute17;

661: ben_cpo_shd.g_old_rec.cpo_attribute16;
662: End If;
663: If (p_rec.cpo_attribute17 = hr_api.g_varchar2) then
664: p_rec.cpo_attribute17 :=
665: ben_cpo_shd.g_old_rec.cpo_attribute17;
666: End If;
667: If (p_rec.cpo_attribute18 = hr_api.g_varchar2) then
668: p_rec.cpo_attribute18 :=
669: ben_cpo_shd.g_old_rec.cpo_attribute18;

Line 669: ben_cpo_shd.g_old_rec.cpo_attribute18;

665: ben_cpo_shd.g_old_rec.cpo_attribute17;
666: End If;
667: If (p_rec.cpo_attribute18 = hr_api.g_varchar2) then
668: p_rec.cpo_attribute18 :=
669: ben_cpo_shd.g_old_rec.cpo_attribute18;
670: End If;
671: If (p_rec.cpo_attribute19 = hr_api.g_varchar2) then
672: p_rec.cpo_attribute19 :=
673: ben_cpo_shd.g_old_rec.cpo_attribute19;

Line 673: ben_cpo_shd.g_old_rec.cpo_attribute19;

669: ben_cpo_shd.g_old_rec.cpo_attribute18;
670: End If;
671: If (p_rec.cpo_attribute19 = hr_api.g_varchar2) then
672: p_rec.cpo_attribute19 :=
673: ben_cpo_shd.g_old_rec.cpo_attribute19;
674: End If;
675: If (p_rec.cpo_attribute20 = hr_api.g_varchar2) then
676: p_rec.cpo_attribute20 :=
677: ben_cpo_shd.g_old_rec.cpo_attribute20;

Line 677: ben_cpo_shd.g_old_rec.cpo_attribute20;

673: ben_cpo_shd.g_old_rec.cpo_attribute19;
674: End If;
675: If (p_rec.cpo_attribute20 = hr_api.g_varchar2) then
676: p_rec.cpo_attribute20 :=
677: ben_cpo_shd.g_old_rec.cpo_attribute20;
678: End If;
679: If (p_rec.cpo_attribute21 = hr_api.g_varchar2) then
680: p_rec.cpo_attribute21 :=
681: ben_cpo_shd.g_old_rec.cpo_attribute21;

Line 681: ben_cpo_shd.g_old_rec.cpo_attribute21;

677: ben_cpo_shd.g_old_rec.cpo_attribute20;
678: End If;
679: If (p_rec.cpo_attribute21 = hr_api.g_varchar2) then
680: p_rec.cpo_attribute21 :=
681: ben_cpo_shd.g_old_rec.cpo_attribute21;
682: End If;
683: If (p_rec.cpo_attribute22 = hr_api.g_varchar2) then
684: p_rec.cpo_attribute22 :=
685: ben_cpo_shd.g_old_rec.cpo_attribute22;

Line 685: ben_cpo_shd.g_old_rec.cpo_attribute22;

681: ben_cpo_shd.g_old_rec.cpo_attribute21;
682: End If;
683: If (p_rec.cpo_attribute22 = hr_api.g_varchar2) then
684: p_rec.cpo_attribute22 :=
685: ben_cpo_shd.g_old_rec.cpo_attribute22;
686: End If;
687: If (p_rec.cpo_attribute23 = hr_api.g_varchar2) then
688: p_rec.cpo_attribute23 :=
689: ben_cpo_shd.g_old_rec.cpo_attribute23;

Line 689: ben_cpo_shd.g_old_rec.cpo_attribute23;

685: ben_cpo_shd.g_old_rec.cpo_attribute22;
686: End If;
687: If (p_rec.cpo_attribute23 = hr_api.g_varchar2) then
688: p_rec.cpo_attribute23 :=
689: ben_cpo_shd.g_old_rec.cpo_attribute23;
690: End If;
691: If (p_rec.cpo_attribute24 = hr_api.g_varchar2) then
692: p_rec.cpo_attribute24 :=
693: ben_cpo_shd.g_old_rec.cpo_attribute24;

Line 693: ben_cpo_shd.g_old_rec.cpo_attribute24;

689: ben_cpo_shd.g_old_rec.cpo_attribute23;
690: End If;
691: If (p_rec.cpo_attribute24 = hr_api.g_varchar2) then
692: p_rec.cpo_attribute24 :=
693: ben_cpo_shd.g_old_rec.cpo_attribute24;
694: End If;
695: If (p_rec.cpo_attribute25 = hr_api.g_varchar2) then
696: p_rec.cpo_attribute25 :=
697: ben_cpo_shd.g_old_rec.cpo_attribute25;

Line 697: ben_cpo_shd.g_old_rec.cpo_attribute25;

693: ben_cpo_shd.g_old_rec.cpo_attribute24;
694: End If;
695: If (p_rec.cpo_attribute25 = hr_api.g_varchar2) then
696: p_rec.cpo_attribute25 :=
697: ben_cpo_shd.g_old_rec.cpo_attribute25;
698: End If;
699: If (p_rec.cpo_attribute26 = hr_api.g_varchar2) then
700: p_rec.cpo_attribute26 :=
701: ben_cpo_shd.g_old_rec.cpo_attribute26;

Line 701: ben_cpo_shd.g_old_rec.cpo_attribute26;

697: ben_cpo_shd.g_old_rec.cpo_attribute25;
698: End If;
699: If (p_rec.cpo_attribute26 = hr_api.g_varchar2) then
700: p_rec.cpo_attribute26 :=
701: ben_cpo_shd.g_old_rec.cpo_attribute26;
702: End If;
703: If (p_rec.cpo_attribute27 = hr_api.g_varchar2) then
704: p_rec.cpo_attribute27 :=
705: ben_cpo_shd.g_old_rec.cpo_attribute27;

Line 705: ben_cpo_shd.g_old_rec.cpo_attribute27;

701: ben_cpo_shd.g_old_rec.cpo_attribute26;
702: End If;
703: If (p_rec.cpo_attribute27 = hr_api.g_varchar2) then
704: p_rec.cpo_attribute27 :=
705: ben_cpo_shd.g_old_rec.cpo_attribute27;
706: End If;
707: If (p_rec.cpo_attribute28 = hr_api.g_varchar2) then
708: p_rec.cpo_attribute28 :=
709: ben_cpo_shd.g_old_rec.cpo_attribute28;

Line 709: ben_cpo_shd.g_old_rec.cpo_attribute28;

705: ben_cpo_shd.g_old_rec.cpo_attribute27;
706: End If;
707: If (p_rec.cpo_attribute28 = hr_api.g_varchar2) then
708: p_rec.cpo_attribute28 :=
709: ben_cpo_shd.g_old_rec.cpo_attribute28;
710: End If;
711: If (p_rec.cpo_attribute29 = hr_api.g_varchar2) then
712: p_rec.cpo_attribute29 :=
713: ben_cpo_shd.g_old_rec.cpo_attribute29;

Line 713: ben_cpo_shd.g_old_rec.cpo_attribute29;

709: ben_cpo_shd.g_old_rec.cpo_attribute28;
710: End If;
711: If (p_rec.cpo_attribute29 = hr_api.g_varchar2) then
712: p_rec.cpo_attribute29 :=
713: ben_cpo_shd.g_old_rec.cpo_attribute29;
714: End If;
715: If (p_rec.cpo_attribute30 = hr_api.g_varchar2) then
716: p_rec.cpo_attribute30 :=
717: ben_cpo_shd.g_old_rec.cpo_attribute30;

Line 717: ben_cpo_shd.g_old_rec.cpo_attribute30;

713: ben_cpo_shd.g_old_rec.cpo_attribute29;
714: End If;
715: If (p_rec.cpo_attribute30 = hr_api.g_varchar2) then
716: p_rec.cpo_attribute30 :=
717: ben_cpo_shd.g_old_rec.cpo_attribute30;
718: End If;
719:
720: --
721: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 730: p_rec in out nocopy ben_cpo_shd.g_rec_type,

726: -- |---------------------------------< upd >----------------------------------|
727: -- ----------------------------------------------------------------------------
728: Procedure upd
729: (
730: p_rec in out nocopy ben_cpo_shd.g_rec_type,
731: p_effective_date in date,
732: p_datetrack_mode in varchar2
733: ) is
734: --

Line 748: ben_cpo_shd.lck

744: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);
745: --
746: -- We must lock the row which we need to update.
747: --
748: ben_cpo_shd.lck
749: (p_effective_date => p_effective_date,
750: p_datetrack_mode => p_datetrack_mode,
751: p_popl_org_id => p_rec.popl_org_id,
752: p_object_version_number => p_rec.object_version_number,

Line 849: l_rec ben_cpo_shd.g_rec_type;

845: p_effective_date in date,
846: p_datetrack_mode in varchar2
847: ) is
848: --
849: l_rec ben_cpo_shd.g_rec_type;
850: l_proc varchar2(72) := g_package||'upd';
851: --
852: Begin
853: hr_utility.set_location('Entering:'||l_proc, 5);

Line 859: ben_cpo_shd.convert_args

855: -- Call conversion function to turn arguments into the
856: -- l_rec structure.
857: --
858: l_rec :=
859: ben_cpo_shd.convert_args
860: (
861: p_popl_org_id,
862: null,
863: null,