DBA Data[Home] [Help]

APPS.BEN_AGF_UPD dependencies on BEN_AGF_SHD

Line 54: Procedure update_dml(p_rec in out nocopy ben_agf_shd.g_rec_type) is

50: -- Internal Row Handler Use Only.
51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml(p_rec in out nocopy ben_agf_shd.g_rec_type) is
55: --
56: l_proc varchar2(72) := g_package||'update_dml';
57: --
58: Begin

Line 65: ben_agf_shd.g_api_dml := true; -- Set the api dml status

61: -- Increment the object version
62: --
63: p_rec.object_version_number := p_rec.object_version_number + 1;
64: --
65: ben_agf_shd.g_api_dml := true; -- Set the api dml status
66: --
67: -- Update the ben_age_fctr Row
68: --
69: update ben_age_fctr

Line 119: ben_agf_shd.g_api_dml := false; -- Unset the api dml status

115: agf_attribute30 = p_rec.agf_attribute30,
116: object_version_number = p_rec.object_version_number
117: where age_fctr_id = p_rec.age_fctr_id;
118: --
119: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
120: --
121: hr_utility.set_location(' Leaving:'||l_proc, 10);
122: --
123: Exception

Line 126: ben_agf_shd.g_api_dml := false; -- Unset the api dml status

122: --
123: Exception
124: When hr_api.check_integrity_violated Then
125: -- A check constraint has been violated
126: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
127: ben_agf_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated

Line 127: ben_agf_shd.constraint_error

123: Exception
124: When hr_api.check_integrity_violated Then
125: -- A check constraint has been violated
126: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
127: ben_agf_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated
131: ben_agf_shd.g_api_dml := false; -- Unset the api dml status

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

127: ben_agf_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated
131: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
132: ben_agf_shd.constraint_error
133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated

Line 132: ben_agf_shd.constraint_error

128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated
131: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
132: ben_agf_shd.constraint_error
133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated
136: ben_agf_shd.g_api_dml := false; -- Unset the api dml status

Line 136: ben_agf_shd.g_api_dml := false; -- Unset the api dml status

132: ben_agf_shd.constraint_error
133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated
136: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
137: ben_agf_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When Others Then
140: ben_agf_shd.g_api_dml := false; -- Unset the api dml status

Line 137: ben_agf_shd.constraint_error

133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated
136: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
137: ben_agf_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When Others Then
140: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
141: Raise;

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

136: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
137: ben_agf_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When Others Then
140: ben_agf_shd.g_api_dml := false; -- Unset the api dml status
141: Raise;
142: End update_dml;
143: --
144: -- ----------------------------------------------------------------------------

Line 176: Procedure pre_update(p_rec in ben_agf_shd.g_rec_type) is

172: -- Internal Row Handler Use Only.
173: --
174: -- {End Of Comments}
175: -- ----------------------------------------------------------------------------
176: Procedure pre_update(p_rec in ben_agf_shd.g_rec_type) is
177: --
178: l_proc varchar2(72) := g_package||'pre_update';
179: --
180: Begin

Line 219: p_effective_date in date,p_rec in ben_agf_shd.g_rec_type) is

215: --
216: -- {End Of Comments}
217: -- ----------------------------------------------------------------------------
218: Procedure post_update(
219: p_effective_date in date,p_rec in ben_agf_shd.g_rec_type) is
220: --
221: l_proc varchar2(72) := g_package||'post_update';
222: --
223: Begin

Line 280: ,p_name_o =>ben_agf_shd.g_old_rec.name

276: ,p_agf_attribute29 =>p_rec.agf_attribute29
277: ,p_agf_attribute30 =>p_rec.agf_attribute30
278: ,p_object_version_number =>p_rec.object_version_number
279: ,p_effective_date =>p_effective_date
280: ,p_name_o =>ben_agf_shd.g_old_rec.name
281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num
282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag

Line 281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num

277: ,p_agf_attribute30 =>p_rec.agf_attribute30
278: ,p_object_version_number =>p_rec.object_version_number
279: ,p_effective_date =>p_effective_date
280: ,p_name_o =>ben_agf_shd.g_old_rec.name
281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num
282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag

Line 282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num

278: ,p_object_version_number =>p_rec.object_version_number
279: ,p_effective_date =>p_effective_date
280: ,p_name_o =>ben_agf_shd.g_old_rec.name
281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num
282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd

Line 283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom

279: ,p_effective_date =>p_effective_date
280: ,p_name_o =>ben_agf_shd.g_old_rec.name
281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num
282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd

Line 284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag

280: ,p_name_o =>ben_agf_shd.g_old_rec.name
281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num
282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl

Line 285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag

281: ,p_mx_age_num_o =>ben_agf_shd.g_old_rec.mx_age_num
282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd

Line 286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd

282: ,p_mn_age_num_o =>ben_agf_shd.g_old_rec.mn_age_num
283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl

Line 287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd

283: ,p_age_uom_o =>ben_agf_shd.g_old_rec.age_uom
284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl

Line 288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl

284: ,p_no_mn_age_flag_o =>ben_agf_shd.g_old_rec.no_mn_age_flag
285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id

Line 289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd

285: ,p_no_mx_age_flag_o =>ben_agf_shd.g_old_rec.no_mx_age_flag
286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category

Line 290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl

286: ,p_age_to_use_cd_o =>ben_agf_shd.g_old_rec.age_to_use_cd
287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1

Line 291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl

287: ,p_age_det_cd_o =>ben_agf_shd.g_old_rec.age_det_cd
288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2

Line 292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id

288: ,p_age_det_rl_o =>ben_agf_shd.g_old_rec.age_det_rl
289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3

Line 293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category

289: ,p_rndg_cd_o =>ben_agf_shd.g_old_rec.rndg_cd
290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4

Line 294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1

290: ,p_rndg_rl_o =>ben_agf_shd.g_old_rec.rndg_rl
291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5

Line 295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2

291: ,p_age_calc_rl_o =>ben_agf_shd.g_old_rec.age_calc_rl
292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6

Line 296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3

292: ,p_business_group_id_o =>ben_agf_shd.g_old_rec.business_group_id
293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7

Line 297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4

293: ,p_agf_attribute_category_o =>ben_agf_shd.g_old_rec.agf_attribute_category
294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8

Line 298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5

294: ,p_agf_attribute1_o =>ben_agf_shd.g_old_rec.agf_attribute1
295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9

Line 299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6

295: ,p_agf_attribute2_o =>ben_agf_shd.g_old_rec.agf_attribute2
296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10

Line 300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7

296: ,p_agf_attribute3_o =>ben_agf_shd.g_old_rec.agf_attribute3
297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11

Line 301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8

297: ,p_agf_attribute4_o =>ben_agf_shd.g_old_rec.agf_attribute4
298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12

Line 302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9

298: ,p_agf_attribute5_o =>ben_agf_shd.g_old_rec.agf_attribute5
299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13

Line 303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10

299: ,p_agf_attribute6_o =>ben_agf_shd.g_old_rec.agf_attribute6
300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14

Line 304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11

300: ,p_agf_attribute7_o =>ben_agf_shd.g_old_rec.agf_attribute7
301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15

Line 305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12

301: ,p_agf_attribute8_o =>ben_agf_shd.g_old_rec.agf_attribute8
302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16

Line 306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13

302: ,p_agf_attribute9_o =>ben_agf_shd.g_old_rec.agf_attribute9
303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17

Line 307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14

303: ,p_agf_attribute10_o =>ben_agf_shd.g_old_rec.agf_attribute10
304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18

Line 308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15

304: ,p_agf_attribute11_o =>ben_agf_shd.g_old_rec.agf_attribute11
305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19

Line 309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16

305: ,p_agf_attribute12_o =>ben_agf_shd.g_old_rec.agf_attribute12
306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20

Line 310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17

306: ,p_agf_attribute13_o =>ben_agf_shd.g_old_rec.agf_attribute13
307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21

Line 311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18

307: ,p_agf_attribute14_o =>ben_agf_shd.g_old_rec.agf_attribute14
308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22

Line 312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19

308: ,p_agf_attribute15_o =>ben_agf_shd.g_old_rec.agf_attribute15
309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23

Line 313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20

309: ,p_agf_attribute16_o =>ben_agf_shd.g_old_rec.agf_attribute16
310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24

Line 314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21

310: ,p_agf_attribute17_o =>ben_agf_shd.g_old_rec.agf_attribute17
311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25

Line 315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22

311: ,p_agf_attribute18_o =>ben_agf_shd.g_old_rec.agf_attribute18
312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26

Line 316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23

312: ,p_agf_attribute19_o =>ben_agf_shd.g_old_rec.agf_attribute19
313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27

Line 317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24

313: ,p_agf_attribute20_o =>ben_agf_shd.g_old_rec.agf_attribute20
314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28

Line 318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25

314: ,p_agf_attribute21_o =>ben_agf_shd.g_old_rec.agf_attribute21
315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29

Line 319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26

315: ,p_agf_attribute22_o =>ben_agf_shd.g_old_rec.agf_attribute22
316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29
323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30

Line 320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27

316: ,p_agf_attribute23_o =>ben_agf_shd.g_old_rec.agf_attribute23
317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29
323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30
324: ,p_object_version_number_o =>ben_agf_shd.g_old_rec.object_version_number

Line 321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28

317: ,p_agf_attribute24_o =>ben_agf_shd.g_old_rec.agf_attribute24
318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29
323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30
324: ,p_object_version_number_o =>ben_agf_shd.g_old_rec.object_version_number
325: );

Line 322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29

318: ,p_agf_attribute25_o =>ben_agf_shd.g_old_rec.agf_attribute25
319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29
323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30
324: ,p_object_version_number_o =>ben_agf_shd.g_old_rec.object_version_number
325: );
326: --

Line 323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30

319: ,p_agf_attribute26_o =>ben_agf_shd.g_old_rec.agf_attribute26
320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29
323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30
324: ,p_object_version_number_o =>ben_agf_shd.g_old_rec.object_version_number
325: );
326: --
327: exception

Line 324: ,p_object_version_number_o =>ben_agf_shd.g_old_rec.object_version_number

320: ,p_agf_attribute27_o =>ben_agf_shd.g_old_rec.agf_attribute27
321: ,p_agf_attribute28_o =>ben_agf_shd.g_old_rec.agf_attribute28
322: ,p_agf_attribute29_o =>ben_agf_shd.g_old_rec.agf_attribute29
323: ,p_agf_attribute30_o =>ben_agf_shd.g_old_rec.agf_attribute30
324: ,p_object_version_number_o =>ben_agf_shd.g_old_rec.object_version_number
325: );
326: --
327: exception
328: --

Line 386: Procedure convert_defs(p_rec in out nocopy ben_agf_shd.g_rec_type) is

382: -- Internal Row Handler Use Only.
383: --
384: -- {End Of Comments}
385: -- ----------------------------------------------------------------------------
386: Procedure convert_defs(p_rec in out nocopy ben_agf_shd.g_rec_type) is
387: --
388: l_proc varchar2(72) := g_package||'convert_defs';
389: --
390: Begin

Line 401: ben_agf_shd.g_old_rec.name;

397: -- is being used then we must set to the 'current' argument value.
398: --
399: If (p_rec.name = hr_api.g_varchar2) then
400: p_rec.name :=
401: ben_agf_shd.g_old_rec.name;
402: End If;
403: If (p_rec.mx_age_num = hr_api.g_number) then
404: p_rec.mx_age_num :=
405: ben_agf_shd.g_old_rec.mx_age_num;

Line 405: ben_agf_shd.g_old_rec.mx_age_num;

401: ben_agf_shd.g_old_rec.name;
402: End If;
403: If (p_rec.mx_age_num = hr_api.g_number) then
404: p_rec.mx_age_num :=
405: ben_agf_shd.g_old_rec.mx_age_num;
406: End If;
407: If (p_rec.mn_age_num = hr_api.g_number) then
408: p_rec.mn_age_num :=
409: ben_agf_shd.g_old_rec.mn_age_num;

Line 409: ben_agf_shd.g_old_rec.mn_age_num;

405: ben_agf_shd.g_old_rec.mx_age_num;
406: End If;
407: If (p_rec.mn_age_num = hr_api.g_number) then
408: p_rec.mn_age_num :=
409: ben_agf_shd.g_old_rec.mn_age_num;
410: End If;
411: If (p_rec.age_uom = hr_api.g_varchar2) then
412: p_rec.age_uom :=
413: ben_agf_shd.g_old_rec.age_uom;

Line 413: ben_agf_shd.g_old_rec.age_uom;

409: ben_agf_shd.g_old_rec.mn_age_num;
410: End If;
411: If (p_rec.age_uom = hr_api.g_varchar2) then
412: p_rec.age_uom :=
413: ben_agf_shd.g_old_rec.age_uom;
414: End If;
415: If (p_rec.no_mn_age_flag = hr_api.g_varchar2) then
416: p_rec.no_mn_age_flag :=
417: ben_agf_shd.g_old_rec.no_mn_age_flag;

Line 417: ben_agf_shd.g_old_rec.no_mn_age_flag;

413: ben_agf_shd.g_old_rec.age_uom;
414: End If;
415: If (p_rec.no_mn_age_flag = hr_api.g_varchar2) then
416: p_rec.no_mn_age_flag :=
417: ben_agf_shd.g_old_rec.no_mn_age_flag;
418: End If;
419: If (p_rec.no_mx_age_flag = hr_api.g_varchar2) then
420: p_rec.no_mx_age_flag :=
421: ben_agf_shd.g_old_rec.no_mx_age_flag;

Line 421: ben_agf_shd.g_old_rec.no_mx_age_flag;

417: ben_agf_shd.g_old_rec.no_mn_age_flag;
418: End If;
419: If (p_rec.no_mx_age_flag = hr_api.g_varchar2) then
420: p_rec.no_mx_age_flag :=
421: ben_agf_shd.g_old_rec.no_mx_age_flag;
422: End If;
423: If (p_rec.age_to_use_cd = hr_api.g_varchar2) then
424: p_rec.age_to_use_cd :=
425: ben_agf_shd.g_old_rec.age_to_use_cd;

Line 425: ben_agf_shd.g_old_rec.age_to_use_cd;

421: ben_agf_shd.g_old_rec.no_mx_age_flag;
422: End If;
423: If (p_rec.age_to_use_cd = hr_api.g_varchar2) then
424: p_rec.age_to_use_cd :=
425: ben_agf_shd.g_old_rec.age_to_use_cd;
426: End If;
427: If (p_rec.age_det_cd = hr_api.g_varchar2) then
428: p_rec.age_det_cd :=
429: ben_agf_shd.g_old_rec.age_det_cd;

Line 429: ben_agf_shd.g_old_rec.age_det_cd;

425: ben_agf_shd.g_old_rec.age_to_use_cd;
426: End If;
427: If (p_rec.age_det_cd = hr_api.g_varchar2) then
428: p_rec.age_det_cd :=
429: ben_agf_shd.g_old_rec.age_det_cd;
430: End If;
431: If (p_rec.age_det_rl = hr_api.g_number) then
432: p_rec.age_det_rl :=
433: ben_agf_shd.g_old_rec.age_det_rl;

Line 433: ben_agf_shd.g_old_rec.age_det_rl;

429: ben_agf_shd.g_old_rec.age_det_cd;
430: End If;
431: If (p_rec.age_det_rl = hr_api.g_number) then
432: p_rec.age_det_rl :=
433: ben_agf_shd.g_old_rec.age_det_rl;
434: End If;
435: If (p_rec.rndg_cd = hr_api.g_varchar2) then
436: p_rec.rndg_cd :=
437: ben_agf_shd.g_old_rec.rndg_cd;

Line 437: ben_agf_shd.g_old_rec.rndg_cd;

433: ben_agf_shd.g_old_rec.age_det_rl;
434: End If;
435: If (p_rec.rndg_cd = hr_api.g_varchar2) then
436: p_rec.rndg_cd :=
437: ben_agf_shd.g_old_rec.rndg_cd;
438: End If;
439: If (p_rec.rndg_rl = hr_api.g_number) then
440: p_rec.rndg_rl :=
441: ben_agf_shd.g_old_rec.rndg_rl;

Line 441: ben_agf_shd.g_old_rec.rndg_rl;

437: ben_agf_shd.g_old_rec.rndg_cd;
438: End If;
439: If (p_rec.rndg_rl = hr_api.g_number) then
440: p_rec.rndg_rl :=
441: ben_agf_shd.g_old_rec.rndg_rl;
442: End If;
443: If (p_rec.age_calc_rl = hr_api.g_number) then
444: p_rec.age_calc_rl :=
445: ben_agf_shd.g_old_rec.age_calc_rl;

Line 445: ben_agf_shd.g_old_rec.age_calc_rl;

441: ben_agf_shd.g_old_rec.rndg_rl;
442: End If;
443: If (p_rec.age_calc_rl = hr_api.g_number) then
444: p_rec.age_calc_rl :=
445: ben_agf_shd.g_old_rec.age_calc_rl;
446: End If;
447: If (p_rec.business_group_id = hr_api.g_number) then
448: p_rec.business_group_id :=
449: ben_agf_shd.g_old_rec.business_group_id;

Line 449: ben_agf_shd.g_old_rec.business_group_id;

445: ben_agf_shd.g_old_rec.age_calc_rl;
446: End If;
447: If (p_rec.business_group_id = hr_api.g_number) then
448: p_rec.business_group_id :=
449: ben_agf_shd.g_old_rec.business_group_id;
450: End If;
451: If (p_rec.agf_attribute_category = hr_api.g_varchar2) then
452: p_rec.agf_attribute_category :=
453: ben_agf_shd.g_old_rec.agf_attribute_category;

Line 453: ben_agf_shd.g_old_rec.agf_attribute_category;

449: ben_agf_shd.g_old_rec.business_group_id;
450: End If;
451: If (p_rec.agf_attribute_category = hr_api.g_varchar2) then
452: p_rec.agf_attribute_category :=
453: ben_agf_shd.g_old_rec.agf_attribute_category;
454: End If;
455: If (p_rec.agf_attribute1 = hr_api.g_varchar2) then
456: p_rec.agf_attribute1 :=
457: ben_agf_shd.g_old_rec.agf_attribute1;

Line 457: ben_agf_shd.g_old_rec.agf_attribute1;

453: ben_agf_shd.g_old_rec.agf_attribute_category;
454: End If;
455: If (p_rec.agf_attribute1 = hr_api.g_varchar2) then
456: p_rec.agf_attribute1 :=
457: ben_agf_shd.g_old_rec.agf_attribute1;
458: End If;
459: If (p_rec.agf_attribute2 = hr_api.g_varchar2) then
460: p_rec.agf_attribute2 :=
461: ben_agf_shd.g_old_rec.agf_attribute2;

Line 461: ben_agf_shd.g_old_rec.agf_attribute2;

457: ben_agf_shd.g_old_rec.agf_attribute1;
458: End If;
459: If (p_rec.agf_attribute2 = hr_api.g_varchar2) then
460: p_rec.agf_attribute2 :=
461: ben_agf_shd.g_old_rec.agf_attribute2;
462: End If;
463: If (p_rec.agf_attribute3 = hr_api.g_varchar2) then
464: p_rec.agf_attribute3 :=
465: ben_agf_shd.g_old_rec.agf_attribute3;

Line 465: ben_agf_shd.g_old_rec.agf_attribute3;

461: ben_agf_shd.g_old_rec.agf_attribute2;
462: End If;
463: If (p_rec.agf_attribute3 = hr_api.g_varchar2) then
464: p_rec.agf_attribute3 :=
465: ben_agf_shd.g_old_rec.agf_attribute3;
466: End If;
467: If (p_rec.agf_attribute4 = hr_api.g_varchar2) then
468: p_rec.agf_attribute4 :=
469: ben_agf_shd.g_old_rec.agf_attribute4;

Line 469: ben_agf_shd.g_old_rec.agf_attribute4;

465: ben_agf_shd.g_old_rec.agf_attribute3;
466: End If;
467: If (p_rec.agf_attribute4 = hr_api.g_varchar2) then
468: p_rec.agf_attribute4 :=
469: ben_agf_shd.g_old_rec.agf_attribute4;
470: End If;
471: If (p_rec.agf_attribute5 = hr_api.g_varchar2) then
472: p_rec.agf_attribute5 :=
473: ben_agf_shd.g_old_rec.agf_attribute5;

Line 473: ben_agf_shd.g_old_rec.agf_attribute5;

469: ben_agf_shd.g_old_rec.agf_attribute4;
470: End If;
471: If (p_rec.agf_attribute5 = hr_api.g_varchar2) then
472: p_rec.agf_attribute5 :=
473: ben_agf_shd.g_old_rec.agf_attribute5;
474: End If;
475: If (p_rec.agf_attribute6 = hr_api.g_varchar2) then
476: p_rec.agf_attribute6 :=
477: ben_agf_shd.g_old_rec.agf_attribute6;

Line 477: ben_agf_shd.g_old_rec.agf_attribute6;

473: ben_agf_shd.g_old_rec.agf_attribute5;
474: End If;
475: If (p_rec.agf_attribute6 = hr_api.g_varchar2) then
476: p_rec.agf_attribute6 :=
477: ben_agf_shd.g_old_rec.agf_attribute6;
478: End If;
479: If (p_rec.agf_attribute7 = hr_api.g_varchar2) then
480: p_rec.agf_attribute7 :=
481: ben_agf_shd.g_old_rec.agf_attribute7;

Line 481: ben_agf_shd.g_old_rec.agf_attribute7;

477: ben_agf_shd.g_old_rec.agf_attribute6;
478: End If;
479: If (p_rec.agf_attribute7 = hr_api.g_varchar2) then
480: p_rec.agf_attribute7 :=
481: ben_agf_shd.g_old_rec.agf_attribute7;
482: End If;
483: If (p_rec.agf_attribute8 = hr_api.g_varchar2) then
484: p_rec.agf_attribute8 :=
485: ben_agf_shd.g_old_rec.agf_attribute8;

Line 485: ben_agf_shd.g_old_rec.agf_attribute8;

481: ben_agf_shd.g_old_rec.agf_attribute7;
482: End If;
483: If (p_rec.agf_attribute8 = hr_api.g_varchar2) then
484: p_rec.agf_attribute8 :=
485: ben_agf_shd.g_old_rec.agf_attribute8;
486: End If;
487: If (p_rec.agf_attribute9 = hr_api.g_varchar2) then
488: p_rec.agf_attribute9 :=
489: ben_agf_shd.g_old_rec.agf_attribute9;

Line 489: ben_agf_shd.g_old_rec.agf_attribute9;

485: ben_agf_shd.g_old_rec.agf_attribute8;
486: End If;
487: If (p_rec.agf_attribute9 = hr_api.g_varchar2) then
488: p_rec.agf_attribute9 :=
489: ben_agf_shd.g_old_rec.agf_attribute9;
490: End If;
491: If (p_rec.agf_attribute10 = hr_api.g_varchar2) then
492: p_rec.agf_attribute10 :=
493: ben_agf_shd.g_old_rec.agf_attribute10;

Line 493: ben_agf_shd.g_old_rec.agf_attribute10;

489: ben_agf_shd.g_old_rec.agf_attribute9;
490: End If;
491: If (p_rec.agf_attribute10 = hr_api.g_varchar2) then
492: p_rec.agf_attribute10 :=
493: ben_agf_shd.g_old_rec.agf_attribute10;
494: End If;
495: If (p_rec.agf_attribute11 = hr_api.g_varchar2) then
496: p_rec.agf_attribute11 :=
497: ben_agf_shd.g_old_rec.agf_attribute11;

Line 497: ben_agf_shd.g_old_rec.agf_attribute11;

493: ben_agf_shd.g_old_rec.agf_attribute10;
494: End If;
495: If (p_rec.agf_attribute11 = hr_api.g_varchar2) then
496: p_rec.agf_attribute11 :=
497: ben_agf_shd.g_old_rec.agf_attribute11;
498: End If;
499: If (p_rec.agf_attribute12 = hr_api.g_varchar2) then
500: p_rec.agf_attribute12 :=
501: ben_agf_shd.g_old_rec.agf_attribute12;

Line 501: ben_agf_shd.g_old_rec.agf_attribute12;

497: ben_agf_shd.g_old_rec.agf_attribute11;
498: End If;
499: If (p_rec.agf_attribute12 = hr_api.g_varchar2) then
500: p_rec.agf_attribute12 :=
501: ben_agf_shd.g_old_rec.agf_attribute12;
502: End If;
503: If (p_rec.agf_attribute13 = hr_api.g_varchar2) then
504: p_rec.agf_attribute13 :=
505: ben_agf_shd.g_old_rec.agf_attribute13;

Line 505: ben_agf_shd.g_old_rec.agf_attribute13;

501: ben_agf_shd.g_old_rec.agf_attribute12;
502: End If;
503: If (p_rec.agf_attribute13 = hr_api.g_varchar2) then
504: p_rec.agf_attribute13 :=
505: ben_agf_shd.g_old_rec.agf_attribute13;
506: End If;
507: If (p_rec.agf_attribute14 = hr_api.g_varchar2) then
508: p_rec.agf_attribute14 :=
509: ben_agf_shd.g_old_rec.agf_attribute14;

Line 509: ben_agf_shd.g_old_rec.agf_attribute14;

505: ben_agf_shd.g_old_rec.agf_attribute13;
506: End If;
507: If (p_rec.agf_attribute14 = hr_api.g_varchar2) then
508: p_rec.agf_attribute14 :=
509: ben_agf_shd.g_old_rec.agf_attribute14;
510: End If;
511: If (p_rec.agf_attribute15 = hr_api.g_varchar2) then
512: p_rec.agf_attribute15 :=
513: ben_agf_shd.g_old_rec.agf_attribute15;

Line 513: ben_agf_shd.g_old_rec.agf_attribute15;

509: ben_agf_shd.g_old_rec.agf_attribute14;
510: End If;
511: If (p_rec.agf_attribute15 = hr_api.g_varchar2) then
512: p_rec.agf_attribute15 :=
513: ben_agf_shd.g_old_rec.agf_attribute15;
514: End If;
515: If (p_rec.agf_attribute16 = hr_api.g_varchar2) then
516: p_rec.agf_attribute16 :=
517: ben_agf_shd.g_old_rec.agf_attribute16;

Line 517: ben_agf_shd.g_old_rec.agf_attribute16;

513: ben_agf_shd.g_old_rec.agf_attribute15;
514: End If;
515: If (p_rec.agf_attribute16 = hr_api.g_varchar2) then
516: p_rec.agf_attribute16 :=
517: ben_agf_shd.g_old_rec.agf_attribute16;
518: End If;
519: If (p_rec.agf_attribute17 = hr_api.g_varchar2) then
520: p_rec.agf_attribute17 :=
521: ben_agf_shd.g_old_rec.agf_attribute17;

Line 521: ben_agf_shd.g_old_rec.agf_attribute17;

517: ben_agf_shd.g_old_rec.agf_attribute16;
518: End If;
519: If (p_rec.agf_attribute17 = hr_api.g_varchar2) then
520: p_rec.agf_attribute17 :=
521: ben_agf_shd.g_old_rec.agf_attribute17;
522: End If;
523: If (p_rec.agf_attribute18 = hr_api.g_varchar2) then
524: p_rec.agf_attribute18 :=
525: ben_agf_shd.g_old_rec.agf_attribute18;

Line 525: ben_agf_shd.g_old_rec.agf_attribute18;

521: ben_agf_shd.g_old_rec.agf_attribute17;
522: End If;
523: If (p_rec.agf_attribute18 = hr_api.g_varchar2) then
524: p_rec.agf_attribute18 :=
525: ben_agf_shd.g_old_rec.agf_attribute18;
526: End If;
527: If (p_rec.agf_attribute19 = hr_api.g_varchar2) then
528: p_rec.agf_attribute19 :=
529: ben_agf_shd.g_old_rec.agf_attribute19;

Line 529: ben_agf_shd.g_old_rec.agf_attribute19;

525: ben_agf_shd.g_old_rec.agf_attribute18;
526: End If;
527: If (p_rec.agf_attribute19 = hr_api.g_varchar2) then
528: p_rec.agf_attribute19 :=
529: ben_agf_shd.g_old_rec.agf_attribute19;
530: End If;
531: If (p_rec.agf_attribute20 = hr_api.g_varchar2) then
532: p_rec.agf_attribute20 :=
533: ben_agf_shd.g_old_rec.agf_attribute20;

Line 533: ben_agf_shd.g_old_rec.agf_attribute20;

529: ben_agf_shd.g_old_rec.agf_attribute19;
530: End If;
531: If (p_rec.agf_attribute20 = hr_api.g_varchar2) then
532: p_rec.agf_attribute20 :=
533: ben_agf_shd.g_old_rec.agf_attribute20;
534: End If;
535: If (p_rec.agf_attribute21 = hr_api.g_varchar2) then
536: p_rec.agf_attribute21 :=
537: ben_agf_shd.g_old_rec.agf_attribute21;

Line 537: ben_agf_shd.g_old_rec.agf_attribute21;

533: ben_agf_shd.g_old_rec.agf_attribute20;
534: End If;
535: If (p_rec.agf_attribute21 = hr_api.g_varchar2) then
536: p_rec.agf_attribute21 :=
537: ben_agf_shd.g_old_rec.agf_attribute21;
538: End If;
539: If (p_rec.agf_attribute22 = hr_api.g_varchar2) then
540: p_rec.agf_attribute22 :=
541: ben_agf_shd.g_old_rec.agf_attribute22;

Line 541: ben_agf_shd.g_old_rec.agf_attribute22;

537: ben_agf_shd.g_old_rec.agf_attribute21;
538: End If;
539: If (p_rec.agf_attribute22 = hr_api.g_varchar2) then
540: p_rec.agf_attribute22 :=
541: ben_agf_shd.g_old_rec.agf_attribute22;
542: End If;
543: If (p_rec.agf_attribute23 = hr_api.g_varchar2) then
544: p_rec.agf_attribute23 :=
545: ben_agf_shd.g_old_rec.agf_attribute23;

Line 545: ben_agf_shd.g_old_rec.agf_attribute23;

541: ben_agf_shd.g_old_rec.agf_attribute22;
542: End If;
543: If (p_rec.agf_attribute23 = hr_api.g_varchar2) then
544: p_rec.agf_attribute23 :=
545: ben_agf_shd.g_old_rec.agf_attribute23;
546: End If;
547: If (p_rec.agf_attribute24 = hr_api.g_varchar2) then
548: p_rec.agf_attribute24 :=
549: ben_agf_shd.g_old_rec.agf_attribute24;

Line 549: ben_agf_shd.g_old_rec.agf_attribute24;

545: ben_agf_shd.g_old_rec.agf_attribute23;
546: End If;
547: If (p_rec.agf_attribute24 = hr_api.g_varchar2) then
548: p_rec.agf_attribute24 :=
549: ben_agf_shd.g_old_rec.agf_attribute24;
550: End If;
551: If (p_rec.agf_attribute25 = hr_api.g_varchar2) then
552: p_rec.agf_attribute25 :=
553: ben_agf_shd.g_old_rec.agf_attribute25;

Line 553: ben_agf_shd.g_old_rec.agf_attribute25;

549: ben_agf_shd.g_old_rec.agf_attribute24;
550: End If;
551: If (p_rec.agf_attribute25 = hr_api.g_varchar2) then
552: p_rec.agf_attribute25 :=
553: ben_agf_shd.g_old_rec.agf_attribute25;
554: End If;
555: If (p_rec.agf_attribute26 = hr_api.g_varchar2) then
556: p_rec.agf_attribute26 :=
557: ben_agf_shd.g_old_rec.agf_attribute26;

Line 557: ben_agf_shd.g_old_rec.agf_attribute26;

553: ben_agf_shd.g_old_rec.agf_attribute25;
554: End If;
555: If (p_rec.agf_attribute26 = hr_api.g_varchar2) then
556: p_rec.agf_attribute26 :=
557: ben_agf_shd.g_old_rec.agf_attribute26;
558: End If;
559: If (p_rec.agf_attribute27 = hr_api.g_varchar2) then
560: p_rec.agf_attribute27 :=
561: ben_agf_shd.g_old_rec.agf_attribute27;

Line 561: ben_agf_shd.g_old_rec.agf_attribute27;

557: ben_agf_shd.g_old_rec.agf_attribute26;
558: End If;
559: If (p_rec.agf_attribute27 = hr_api.g_varchar2) then
560: p_rec.agf_attribute27 :=
561: ben_agf_shd.g_old_rec.agf_attribute27;
562: End If;
563: If (p_rec.agf_attribute28 = hr_api.g_varchar2) then
564: p_rec.agf_attribute28 :=
565: ben_agf_shd.g_old_rec.agf_attribute28;

Line 565: ben_agf_shd.g_old_rec.agf_attribute28;

561: ben_agf_shd.g_old_rec.agf_attribute27;
562: End If;
563: If (p_rec.agf_attribute28 = hr_api.g_varchar2) then
564: p_rec.agf_attribute28 :=
565: ben_agf_shd.g_old_rec.agf_attribute28;
566: End If;
567: If (p_rec.agf_attribute29 = hr_api.g_varchar2) then
568: p_rec.agf_attribute29 :=
569: ben_agf_shd.g_old_rec.agf_attribute29;

Line 569: ben_agf_shd.g_old_rec.agf_attribute29;

565: ben_agf_shd.g_old_rec.agf_attribute28;
566: End If;
567: If (p_rec.agf_attribute29 = hr_api.g_varchar2) then
568: p_rec.agf_attribute29 :=
569: ben_agf_shd.g_old_rec.agf_attribute29;
570: End If;
571: If (p_rec.agf_attribute30 = hr_api.g_varchar2) then
572: p_rec.agf_attribute30 :=
573: ben_agf_shd.g_old_rec.agf_attribute30;

Line 573: ben_agf_shd.g_old_rec.agf_attribute30;

569: ben_agf_shd.g_old_rec.agf_attribute29;
570: End If;
571: If (p_rec.agf_attribute30 = hr_api.g_varchar2) then
572: p_rec.agf_attribute30 :=
573: ben_agf_shd.g_old_rec.agf_attribute30;
574: End If;
575:
576: --
577: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 587: p_rec in out nocopy ben_agf_shd.g_rec_type

583: -- ----------------------------------------------------------------------------
584: Procedure upd
585: (
586: p_effective_date in date,
587: p_rec in out nocopy ben_agf_shd.g_rec_type
588: ) is
589: --
590: l_proc varchar2(72) := g_package||'upd';
591: --

Line 597: ben_agf_shd.lck

593: hr_utility.set_location('Entering:'||l_proc, 5);
594: --
595: -- We must lock the row which we need to update.
596: --
597: ben_agf_shd.lck
598: (
599: p_rec.age_fctr_id,
600: p_rec.object_version_number
601: );

Line 681: l_rec ben_agf_shd.g_rec_type;

677: p_agf_attribute30 in varchar2 default hr_api.g_varchar2,
678: p_object_version_number in out nocopy number
679: ) is
680: --
681: l_rec ben_agf_shd.g_rec_type;
682: l_proc varchar2(72) := g_package||'upd';
683: --
684: Begin
685: hr_utility.set_location('Entering:'||l_proc, 5);

Line 691: ben_agf_shd.convert_args

687: -- Call conversion function to turn arguments into the
688: -- l_rec structure.
689: --
690: l_rec :=
691: ben_agf_shd.convert_args
692: (
693: p_age_fctr_id,
694: p_name,
695: p_mx_age_num,