DBA Data[Home] [Help]

APPS.PER_CPO_DEL dependencies on PER_CPO_SHD

Line 52: (p_rec in per_cpo_shd.g_rec_type

48: --
49: -- {End Of Comments}
50: -- ----------------------------------------------------------------------------
51: Procedure delete_dml
52: (p_rec in per_cpo_shd.g_rec_type
53: ) is
54: --
55: l_proc varchar2(72) := g_package||'delete_dml';
56: --

Line 60: per_cpo_shd.g_api_dml := true; -- Set the api dml status

56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: --
60: per_cpo_shd.g_api_dml := true; -- Set the api dml status
61: --
62: -- Delete the per_competence_outcomes row.
63: --
64: delete from per_competence_outcomes

Line 67: per_cpo_shd.g_api_dml := false; -- Unset the api dml status

63: --
64: delete from per_competence_outcomes
65: where outcome_id = p_rec.outcome_id;
66: --
67: per_cpo_shd.g_api_dml := false; -- Unset the api dml status
68: --
69: hr_utility.set_location(' Leaving:'||l_proc, 10);
70: --
71: Exception

Line 74: per_cpo_shd.g_api_dml := false; -- Unset the api dml status

70: --
71: Exception
72: When hr_api.child_integrity_violated then
73: -- Child integrity has been violated
74: per_cpo_shd.g_api_dml := false; -- Unset the api dml status
75: per_cpo_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When Others Then
78: per_cpo_shd.g_api_dml := false; -- Unset the api dml status

Line 75: per_cpo_shd.constraint_error

71: Exception
72: When hr_api.child_integrity_violated then
73: -- Child integrity has been violated
74: per_cpo_shd.g_api_dml := false; -- Unset the api dml status
75: per_cpo_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When Others Then
78: per_cpo_shd.g_api_dml := false; -- Unset the api dml status
79: Raise;

Line 78: per_cpo_shd.g_api_dml := false; -- Unset the api dml status

74: per_cpo_shd.g_api_dml := false; -- Unset the api dml status
75: per_cpo_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When Others Then
78: per_cpo_shd.g_api_dml := false; -- Unset the api dml status
79: Raise;
80: End delete_dml;
81: --
82: -- ----------------------------------------------------------------------------

Line 114: Procedure pre_delete(p_rec in per_cpo_shd.g_rec_type) is

110: -- Internal Row Handler Use Only.
111: --
112: -- {End Of Comments}
113: -- ----------------------------------------------------------------------------
114: Procedure pre_delete(p_rec in per_cpo_shd.g_rec_type) is
115: --
116: l_proc varchar2(72) := g_package||'pre_delete';
117: --
118: Begin

Line 156: Procedure post_delete(p_rec in per_cpo_shd.g_rec_type) is

152: -- Internal Row Handler Use Only.
153: --
154: -- {End Of Comments}
155: -- -----------------------------------------------------------------------------
156: Procedure post_delete(p_rec in per_cpo_shd.g_rec_type) is
157: --
158: l_proc varchar2(72) := g_package||'post_delete';
159: --
160: Begin

Line 168: => per_cpo_shd.g_old_rec.competence_id

164: per_cpo_rkd.after_delete
165: (p_outcome_id
166: => p_rec.outcome_id
167: ,p_competence_id_o
168: => per_cpo_shd.g_old_rec.competence_id
169: ,p_name_o
170: => per_cpo_shd.g_old_rec.name
171: ,p_outcome_number_o
172: => per_cpo_shd.g_old_rec.outcome_number

Line 170: => per_cpo_shd.g_old_rec.name

166: => p_rec.outcome_id
167: ,p_competence_id_o
168: => per_cpo_shd.g_old_rec.competence_id
169: ,p_name_o
170: => per_cpo_shd.g_old_rec.name
171: ,p_outcome_number_o
172: => per_cpo_shd.g_old_rec.outcome_number
173: ,p_object_version_number_o
174: => per_cpo_shd.g_old_rec.object_version_number

Line 172: => per_cpo_shd.g_old_rec.outcome_number

168: => per_cpo_shd.g_old_rec.competence_id
169: ,p_name_o
170: => per_cpo_shd.g_old_rec.name
171: ,p_outcome_number_o
172: => per_cpo_shd.g_old_rec.outcome_number
173: ,p_object_version_number_o
174: => per_cpo_shd.g_old_rec.object_version_number
175: ,p_assessment_criteria_o
176: => per_cpo_shd.g_old_rec.assessment_criteria

Line 174: => per_cpo_shd.g_old_rec.object_version_number

170: => per_cpo_shd.g_old_rec.name
171: ,p_outcome_number_o
172: => per_cpo_shd.g_old_rec.outcome_number
173: ,p_object_version_number_o
174: => per_cpo_shd.g_old_rec.object_version_number
175: ,p_assessment_criteria_o
176: => per_cpo_shd.g_old_rec.assessment_criteria
177: ,p_date_from_o
178: => per_cpo_shd.g_old_rec.date_from

Line 176: => per_cpo_shd.g_old_rec.assessment_criteria

172: => per_cpo_shd.g_old_rec.outcome_number
173: ,p_object_version_number_o
174: => per_cpo_shd.g_old_rec.object_version_number
175: ,p_assessment_criteria_o
176: => per_cpo_shd.g_old_rec.assessment_criteria
177: ,p_date_from_o
178: => per_cpo_shd.g_old_rec.date_from
179: ,p_date_to_o
180: => per_cpo_shd.g_old_rec.date_to

Line 178: => per_cpo_shd.g_old_rec.date_from

174: => per_cpo_shd.g_old_rec.object_version_number
175: ,p_assessment_criteria_o
176: => per_cpo_shd.g_old_rec.assessment_criteria
177: ,p_date_from_o
178: => per_cpo_shd.g_old_rec.date_from
179: ,p_date_to_o
180: => per_cpo_shd.g_old_rec.date_to
181: ,p_attribute_category_o
182: => per_cpo_shd.g_old_rec.attribute_category

Line 180: => per_cpo_shd.g_old_rec.date_to

176: => per_cpo_shd.g_old_rec.assessment_criteria
177: ,p_date_from_o
178: => per_cpo_shd.g_old_rec.date_from
179: ,p_date_to_o
180: => per_cpo_shd.g_old_rec.date_to
181: ,p_attribute_category_o
182: => per_cpo_shd.g_old_rec.attribute_category
183: ,p_attribute1_o
184: => per_cpo_shd.g_old_rec.attribute1

Line 182: => per_cpo_shd.g_old_rec.attribute_category

178: => per_cpo_shd.g_old_rec.date_from
179: ,p_date_to_o
180: => per_cpo_shd.g_old_rec.date_to
181: ,p_attribute_category_o
182: => per_cpo_shd.g_old_rec.attribute_category
183: ,p_attribute1_o
184: => per_cpo_shd.g_old_rec.attribute1
185: ,p_attribute2_o
186: => per_cpo_shd.g_old_rec.attribute2

Line 184: => per_cpo_shd.g_old_rec.attribute1

180: => per_cpo_shd.g_old_rec.date_to
181: ,p_attribute_category_o
182: => per_cpo_shd.g_old_rec.attribute_category
183: ,p_attribute1_o
184: => per_cpo_shd.g_old_rec.attribute1
185: ,p_attribute2_o
186: => per_cpo_shd.g_old_rec.attribute2
187: ,p_attribute3_o
188: => per_cpo_shd.g_old_rec.attribute3

Line 186: => per_cpo_shd.g_old_rec.attribute2

182: => per_cpo_shd.g_old_rec.attribute_category
183: ,p_attribute1_o
184: => per_cpo_shd.g_old_rec.attribute1
185: ,p_attribute2_o
186: => per_cpo_shd.g_old_rec.attribute2
187: ,p_attribute3_o
188: => per_cpo_shd.g_old_rec.attribute3
189: ,p_attribute4_o
190: => per_cpo_shd.g_old_rec.attribute4

Line 188: => per_cpo_shd.g_old_rec.attribute3

184: => per_cpo_shd.g_old_rec.attribute1
185: ,p_attribute2_o
186: => per_cpo_shd.g_old_rec.attribute2
187: ,p_attribute3_o
188: => per_cpo_shd.g_old_rec.attribute3
189: ,p_attribute4_o
190: => per_cpo_shd.g_old_rec.attribute4
191: ,p_attribute5_o
192: => per_cpo_shd.g_old_rec.attribute5

Line 190: => per_cpo_shd.g_old_rec.attribute4

186: => per_cpo_shd.g_old_rec.attribute2
187: ,p_attribute3_o
188: => per_cpo_shd.g_old_rec.attribute3
189: ,p_attribute4_o
190: => per_cpo_shd.g_old_rec.attribute4
191: ,p_attribute5_o
192: => per_cpo_shd.g_old_rec.attribute5
193: ,p_attribute6_o
194: => per_cpo_shd.g_old_rec.attribute6

Line 192: => per_cpo_shd.g_old_rec.attribute5

188: => per_cpo_shd.g_old_rec.attribute3
189: ,p_attribute4_o
190: => per_cpo_shd.g_old_rec.attribute4
191: ,p_attribute5_o
192: => per_cpo_shd.g_old_rec.attribute5
193: ,p_attribute6_o
194: => per_cpo_shd.g_old_rec.attribute6
195: ,p_attribute7_o
196: => per_cpo_shd.g_old_rec.attribute7

Line 194: => per_cpo_shd.g_old_rec.attribute6

190: => per_cpo_shd.g_old_rec.attribute4
191: ,p_attribute5_o
192: => per_cpo_shd.g_old_rec.attribute5
193: ,p_attribute6_o
194: => per_cpo_shd.g_old_rec.attribute6
195: ,p_attribute7_o
196: => per_cpo_shd.g_old_rec.attribute7
197: ,p_attribute8_o
198: => per_cpo_shd.g_old_rec.attribute8

Line 196: => per_cpo_shd.g_old_rec.attribute7

192: => per_cpo_shd.g_old_rec.attribute5
193: ,p_attribute6_o
194: => per_cpo_shd.g_old_rec.attribute6
195: ,p_attribute7_o
196: => per_cpo_shd.g_old_rec.attribute7
197: ,p_attribute8_o
198: => per_cpo_shd.g_old_rec.attribute8
199: ,p_attribute9_o
200: => per_cpo_shd.g_old_rec.attribute9

Line 198: => per_cpo_shd.g_old_rec.attribute8

194: => per_cpo_shd.g_old_rec.attribute6
195: ,p_attribute7_o
196: => per_cpo_shd.g_old_rec.attribute7
197: ,p_attribute8_o
198: => per_cpo_shd.g_old_rec.attribute8
199: ,p_attribute9_o
200: => per_cpo_shd.g_old_rec.attribute9
201: ,p_attribute10_o
202: => per_cpo_shd.g_old_rec.attribute10

Line 200: => per_cpo_shd.g_old_rec.attribute9

196: => per_cpo_shd.g_old_rec.attribute7
197: ,p_attribute8_o
198: => per_cpo_shd.g_old_rec.attribute8
199: ,p_attribute9_o
200: => per_cpo_shd.g_old_rec.attribute9
201: ,p_attribute10_o
202: => per_cpo_shd.g_old_rec.attribute10
203: ,p_attribute11_o
204: => per_cpo_shd.g_old_rec.attribute11

Line 202: => per_cpo_shd.g_old_rec.attribute10

198: => per_cpo_shd.g_old_rec.attribute8
199: ,p_attribute9_o
200: => per_cpo_shd.g_old_rec.attribute9
201: ,p_attribute10_o
202: => per_cpo_shd.g_old_rec.attribute10
203: ,p_attribute11_o
204: => per_cpo_shd.g_old_rec.attribute11
205: ,p_attribute12_o
206: => per_cpo_shd.g_old_rec.attribute12

Line 204: => per_cpo_shd.g_old_rec.attribute11

200: => per_cpo_shd.g_old_rec.attribute9
201: ,p_attribute10_o
202: => per_cpo_shd.g_old_rec.attribute10
203: ,p_attribute11_o
204: => per_cpo_shd.g_old_rec.attribute11
205: ,p_attribute12_o
206: => per_cpo_shd.g_old_rec.attribute12
207: ,p_attribute13_o
208: => per_cpo_shd.g_old_rec.attribute13

Line 206: => per_cpo_shd.g_old_rec.attribute12

202: => per_cpo_shd.g_old_rec.attribute10
203: ,p_attribute11_o
204: => per_cpo_shd.g_old_rec.attribute11
205: ,p_attribute12_o
206: => per_cpo_shd.g_old_rec.attribute12
207: ,p_attribute13_o
208: => per_cpo_shd.g_old_rec.attribute13
209: ,p_attribute14_o
210: => per_cpo_shd.g_old_rec.attribute14

Line 208: => per_cpo_shd.g_old_rec.attribute13

204: => per_cpo_shd.g_old_rec.attribute11
205: ,p_attribute12_o
206: => per_cpo_shd.g_old_rec.attribute12
207: ,p_attribute13_o
208: => per_cpo_shd.g_old_rec.attribute13
209: ,p_attribute14_o
210: => per_cpo_shd.g_old_rec.attribute14
211: ,p_attribute15_o
212: => per_cpo_shd.g_old_rec.attribute15

Line 210: => per_cpo_shd.g_old_rec.attribute14

206: => per_cpo_shd.g_old_rec.attribute12
207: ,p_attribute13_o
208: => per_cpo_shd.g_old_rec.attribute13
209: ,p_attribute14_o
210: => per_cpo_shd.g_old_rec.attribute14
211: ,p_attribute15_o
212: => per_cpo_shd.g_old_rec.attribute15
213: ,p_attribute16_o
214: => per_cpo_shd.g_old_rec.attribute16

Line 212: => per_cpo_shd.g_old_rec.attribute15

208: => per_cpo_shd.g_old_rec.attribute13
209: ,p_attribute14_o
210: => per_cpo_shd.g_old_rec.attribute14
211: ,p_attribute15_o
212: => per_cpo_shd.g_old_rec.attribute15
213: ,p_attribute16_o
214: => per_cpo_shd.g_old_rec.attribute16
215: ,p_attribute17_o
216: => per_cpo_shd.g_old_rec.attribute17

Line 214: => per_cpo_shd.g_old_rec.attribute16

210: => per_cpo_shd.g_old_rec.attribute14
211: ,p_attribute15_o
212: => per_cpo_shd.g_old_rec.attribute15
213: ,p_attribute16_o
214: => per_cpo_shd.g_old_rec.attribute16
215: ,p_attribute17_o
216: => per_cpo_shd.g_old_rec.attribute17
217: ,p_attribute18_o
218: => per_cpo_shd.g_old_rec.attribute18

Line 216: => per_cpo_shd.g_old_rec.attribute17

212: => per_cpo_shd.g_old_rec.attribute15
213: ,p_attribute16_o
214: => per_cpo_shd.g_old_rec.attribute16
215: ,p_attribute17_o
216: => per_cpo_shd.g_old_rec.attribute17
217: ,p_attribute18_o
218: => per_cpo_shd.g_old_rec.attribute18
219: ,p_attribute19_o
220: => per_cpo_shd.g_old_rec.attribute19

Line 218: => per_cpo_shd.g_old_rec.attribute18

214: => per_cpo_shd.g_old_rec.attribute16
215: ,p_attribute17_o
216: => per_cpo_shd.g_old_rec.attribute17
217: ,p_attribute18_o
218: => per_cpo_shd.g_old_rec.attribute18
219: ,p_attribute19_o
220: => per_cpo_shd.g_old_rec.attribute19
221: ,p_attribute20_o
222: => per_cpo_shd.g_old_rec.attribute20

Line 220: => per_cpo_shd.g_old_rec.attribute19

216: => per_cpo_shd.g_old_rec.attribute17
217: ,p_attribute18_o
218: => per_cpo_shd.g_old_rec.attribute18
219: ,p_attribute19_o
220: => per_cpo_shd.g_old_rec.attribute19
221: ,p_attribute20_o
222: => per_cpo_shd.g_old_rec.attribute20
223: ,p_information_category_o
224: => per_cpo_shd.g_old_rec.information_category

Line 222: => per_cpo_shd.g_old_rec.attribute20

218: => per_cpo_shd.g_old_rec.attribute18
219: ,p_attribute19_o
220: => per_cpo_shd.g_old_rec.attribute19
221: ,p_attribute20_o
222: => per_cpo_shd.g_old_rec.attribute20
223: ,p_information_category_o
224: => per_cpo_shd.g_old_rec.information_category
225: ,p_information1_o
226: => per_cpo_shd.g_old_rec.information1

Line 224: => per_cpo_shd.g_old_rec.information_category

220: => per_cpo_shd.g_old_rec.attribute19
221: ,p_attribute20_o
222: => per_cpo_shd.g_old_rec.attribute20
223: ,p_information_category_o
224: => per_cpo_shd.g_old_rec.information_category
225: ,p_information1_o
226: => per_cpo_shd.g_old_rec.information1
227: ,p_information2_o
228: => per_cpo_shd.g_old_rec.information2

Line 226: => per_cpo_shd.g_old_rec.information1

222: => per_cpo_shd.g_old_rec.attribute20
223: ,p_information_category_o
224: => per_cpo_shd.g_old_rec.information_category
225: ,p_information1_o
226: => per_cpo_shd.g_old_rec.information1
227: ,p_information2_o
228: => per_cpo_shd.g_old_rec.information2
229: ,p_information3_o
230: => per_cpo_shd.g_old_rec.information3

Line 228: => per_cpo_shd.g_old_rec.information2

224: => per_cpo_shd.g_old_rec.information_category
225: ,p_information1_o
226: => per_cpo_shd.g_old_rec.information1
227: ,p_information2_o
228: => per_cpo_shd.g_old_rec.information2
229: ,p_information3_o
230: => per_cpo_shd.g_old_rec.information3
231: ,p_information4_o
232: => per_cpo_shd.g_old_rec.information4

Line 230: => per_cpo_shd.g_old_rec.information3

226: => per_cpo_shd.g_old_rec.information1
227: ,p_information2_o
228: => per_cpo_shd.g_old_rec.information2
229: ,p_information3_o
230: => per_cpo_shd.g_old_rec.information3
231: ,p_information4_o
232: => per_cpo_shd.g_old_rec.information4
233: ,p_information5_o
234: => per_cpo_shd.g_old_rec.information5

Line 232: => per_cpo_shd.g_old_rec.information4

228: => per_cpo_shd.g_old_rec.information2
229: ,p_information3_o
230: => per_cpo_shd.g_old_rec.information3
231: ,p_information4_o
232: => per_cpo_shd.g_old_rec.information4
233: ,p_information5_o
234: => per_cpo_shd.g_old_rec.information5
235: ,p_information6_o
236: => per_cpo_shd.g_old_rec.information6

Line 234: => per_cpo_shd.g_old_rec.information5

230: => per_cpo_shd.g_old_rec.information3
231: ,p_information4_o
232: => per_cpo_shd.g_old_rec.information4
233: ,p_information5_o
234: => per_cpo_shd.g_old_rec.information5
235: ,p_information6_o
236: => per_cpo_shd.g_old_rec.information6
237: ,p_information7_o
238: => per_cpo_shd.g_old_rec.information7

Line 236: => per_cpo_shd.g_old_rec.information6

232: => per_cpo_shd.g_old_rec.information4
233: ,p_information5_o
234: => per_cpo_shd.g_old_rec.information5
235: ,p_information6_o
236: => per_cpo_shd.g_old_rec.information6
237: ,p_information7_o
238: => per_cpo_shd.g_old_rec.information7
239: ,p_information8_o
240: => per_cpo_shd.g_old_rec.information8

Line 238: => per_cpo_shd.g_old_rec.information7

234: => per_cpo_shd.g_old_rec.information5
235: ,p_information6_o
236: => per_cpo_shd.g_old_rec.information6
237: ,p_information7_o
238: => per_cpo_shd.g_old_rec.information7
239: ,p_information8_o
240: => per_cpo_shd.g_old_rec.information8
241: ,p_information9_o
242: => per_cpo_shd.g_old_rec.information9

Line 240: => per_cpo_shd.g_old_rec.information8

236: => per_cpo_shd.g_old_rec.information6
237: ,p_information7_o
238: => per_cpo_shd.g_old_rec.information7
239: ,p_information8_o
240: => per_cpo_shd.g_old_rec.information8
241: ,p_information9_o
242: => per_cpo_shd.g_old_rec.information9
243: ,p_information10_o
244: => per_cpo_shd.g_old_rec.information10

Line 242: => per_cpo_shd.g_old_rec.information9

238: => per_cpo_shd.g_old_rec.information7
239: ,p_information8_o
240: => per_cpo_shd.g_old_rec.information8
241: ,p_information9_o
242: => per_cpo_shd.g_old_rec.information9
243: ,p_information10_o
244: => per_cpo_shd.g_old_rec.information10
245: ,p_information11_o
246: => per_cpo_shd.g_old_rec.information11

Line 244: => per_cpo_shd.g_old_rec.information10

240: => per_cpo_shd.g_old_rec.information8
241: ,p_information9_o
242: => per_cpo_shd.g_old_rec.information9
243: ,p_information10_o
244: => per_cpo_shd.g_old_rec.information10
245: ,p_information11_o
246: => per_cpo_shd.g_old_rec.information11
247: ,p_information12_o
248: => per_cpo_shd.g_old_rec.information12

Line 246: => per_cpo_shd.g_old_rec.information11

242: => per_cpo_shd.g_old_rec.information9
243: ,p_information10_o
244: => per_cpo_shd.g_old_rec.information10
245: ,p_information11_o
246: => per_cpo_shd.g_old_rec.information11
247: ,p_information12_o
248: => per_cpo_shd.g_old_rec.information12
249: ,p_information13_o
250: => per_cpo_shd.g_old_rec.information13

Line 248: => per_cpo_shd.g_old_rec.information12

244: => per_cpo_shd.g_old_rec.information10
245: ,p_information11_o
246: => per_cpo_shd.g_old_rec.information11
247: ,p_information12_o
248: => per_cpo_shd.g_old_rec.information12
249: ,p_information13_o
250: => per_cpo_shd.g_old_rec.information13
251: ,p_information14_o
252: => per_cpo_shd.g_old_rec.information14

Line 250: => per_cpo_shd.g_old_rec.information13

246: => per_cpo_shd.g_old_rec.information11
247: ,p_information12_o
248: => per_cpo_shd.g_old_rec.information12
249: ,p_information13_o
250: => per_cpo_shd.g_old_rec.information13
251: ,p_information14_o
252: => per_cpo_shd.g_old_rec.information14
253: ,p_information15_o
254: => per_cpo_shd.g_old_rec.information15

Line 252: => per_cpo_shd.g_old_rec.information14

248: => per_cpo_shd.g_old_rec.information12
249: ,p_information13_o
250: => per_cpo_shd.g_old_rec.information13
251: ,p_information14_o
252: => per_cpo_shd.g_old_rec.information14
253: ,p_information15_o
254: => per_cpo_shd.g_old_rec.information15
255: ,p_information16_o
256: => per_cpo_shd.g_old_rec.information16

Line 254: => per_cpo_shd.g_old_rec.information15

250: => per_cpo_shd.g_old_rec.information13
251: ,p_information14_o
252: => per_cpo_shd.g_old_rec.information14
253: ,p_information15_o
254: => per_cpo_shd.g_old_rec.information15
255: ,p_information16_o
256: => per_cpo_shd.g_old_rec.information16
257: ,p_information17_o
258: => per_cpo_shd.g_old_rec.information17

Line 256: => per_cpo_shd.g_old_rec.information16

252: => per_cpo_shd.g_old_rec.information14
253: ,p_information15_o
254: => per_cpo_shd.g_old_rec.information15
255: ,p_information16_o
256: => per_cpo_shd.g_old_rec.information16
257: ,p_information17_o
258: => per_cpo_shd.g_old_rec.information17
259: ,p_information18_o
260: => per_cpo_shd.g_old_rec.information18

Line 258: => per_cpo_shd.g_old_rec.information17

254: => per_cpo_shd.g_old_rec.information15
255: ,p_information16_o
256: => per_cpo_shd.g_old_rec.information16
257: ,p_information17_o
258: => per_cpo_shd.g_old_rec.information17
259: ,p_information18_o
260: => per_cpo_shd.g_old_rec.information18
261: ,p_information19_o
262: => per_cpo_shd.g_old_rec.information19

Line 260: => per_cpo_shd.g_old_rec.information18

256: => per_cpo_shd.g_old_rec.information16
257: ,p_information17_o
258: => per_cpo_shd.g_old_rec.information17
259: ,p_information18_o
260: => per_cpo_shd.g_old_rec.information18
261: ,p_information19_o
262: => per_cpo_shd.g_old_rec.information19
263: ,p_information20_o
264: => per_cpo_shd.g_old_rec.information20

Line 262: => per_cpo_shd.g_old_rec.information19

258: => per_cpo_shd.g_old_rec.information17
259: ,p_information18_o
260: => per_cpo_shd.g_old_rec.information18
261: ,p_information19_o
262: => per_cpo_shd.g_old_rec.information19
263: ,p_information20_o
264: => per_cpo_shd.g_old_rec.information20
265: );
266: --

Line 264: => per_cpo_shd.g_old_rec.information20

260: => per_cpo_shd.g_old_rec.information18
261: ,p_information19_o
262: => per_cpo_shd.g_old_rec.information19
263: ,p_information20_o
264: => per_cpo_shd.g_old_rec.information20
265: );
266: --
267: exception
268: --

Line 284: (p_rec in per_cpo_shd.g_rec_type

280: -- ----------------------------------------------------------------------------
281: -- |---------------------------------< del >----------------------------------|
282: -- ----------------------------------------------------------------------------
283: Procedure del
284: (p_rec in per_cpo_shd.g_rec_type
285: ) is
286: --
287: l_proc varchar2(72) := g_package||'del';
288: --

Line 294: per_cpo_shd.lck

290: hr_utility.set_location('Entering:'||l_proc, 5);
291: --
292: -- We must lock the row which we need to delete.
293: --
294: per_cpo_shd.lck
295: (p_rec.outcome_id
296: ,p_rec.object_version_number
297: );
298: --

Line 331: l_rec per_cpo_shd.g_rec_type;

327: (p_outcome_id in number
328: ,p_object_version_number in number
329: ) is
330: --
331: l_rec per_cpo_shd.g_rec_type;
332: l_proc varchar2(72) := g_package||'del';
333: --
334: Begin
335: hr_utility.set_location('Entering:'||l_proc, 5);