DBA Data[Home] [Help]

APPS.PER_CNF_UPD dependencies on PER_CNF_SHD

Line 55: (p_rec in out nocopy per_cnf_shd.g_rec_type

51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml
55: (p_rec in out nocopy per_cnf_shd.g_rec_type
56: ) is
57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: --

Line 86: per_cnf_shd.constraint_error

82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: --
86: per_cnf_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: --

Line 91: per_cnf_shd.constraint_error

87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: --
91: per_cnf_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: --

Line 96: per_cnf_shd.constraint_error

92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: --
96: per_cnf_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When Others Then
99: --
100: Raise;

Line 136: (p_rec in per_cnf_shd.g_rec_type

132: --
133: -- {End Of Comments}
134: -- ----------------------------------------------------------------------------
135: Procedure pre_update
136: (p_rec in per_cnf_shd.g_rec_type
137: ) is
138: --
139: l_proc varchar2(72) := g_package||'pre_update';
140: --

Line 181: ,p_rec in per_cnf_shd.g_rec_type

177: -- {End Of Comments}
178: -- ----------------------------------------------------------------------------
179: Procedure post_update
180: (p_effective_date in date
181: ,p_rec in per_cnf_shd.g_rec_type
182: ) is
183: --
184: l_proc varchar2(72) := g_package||'post_update';
185: --

Line 201: => per_cnf_shd.g_old_rec.configuration_type

197: => p_rec.configuration_status
198: ,p_object_version_number
199: => p_rec.object_version_number
200: ,p_configuration_type_o
201: => per_cnf_shd.g_old_rec.configuration_type
202: ,p_configuration_status_o
203: => per_cnf_shd.g_old_rec.configuration_status
204: ,p_object_version_number_o
205: => per_cnf_shd.g_old_rec.object_version_number

Line 203: => per_cnf_shd.g_old_rec.configuration_status

199: => p_rec.object_version_number
200: ,p_configuration_type_o
201: => per_cnf_shd.g_old_rec.configuration_type
202: ,p_configuration_status_o
203: => per_cnf_shd.g_old_rec.configuration_status
204: ,p_object_version_number_o
205: => per_cnf_shd.g_old_rec.object_version_number
206: );
207: --

Line 205: => per_cnf_shd.g_old_rec.object_version_number

201: => per_cnf_shd.g_old_rec.configuration_type
202: ,p_configuration_status_o
203: => per_cnf_shd.g_old_rec.configuration_status
204: ,p_object_version_number_o
205: => per_cnf_shd.g_old_rec.object_version_number
206: );
207: --
208: exception
209: --

Line 265: (p_rec in out nocopy per_cnf_shd.g_rec_type

261: --
262: -- {End Of Comments}
263: -- ----------------------------------------------------------------------------
264: Procedure convert_defs
265: (p_rec in out nocopy per_cnf_shd.g_rec_type
266: ) is
267: --
268: Begin
269: --

Line 277: per_cnf_shd.g_old_rec.configuration_type;

273: -- is being used then we must set to the 'current' argument value.
274: --
275: If (p_rec.configuration_type = hr_api.g_varchar2) then
276: p_rec.configuration_type :=
277: per_cnf_shd.g_old_rec.configuration_type;
278: End If;
279: If (p_rec.configuration_status = hr_api.g_varchar2) then
280: p_rec.configuration_status :=
281: per_cnf_shd.g_old_rec.configuration_status;

Line 281: per_cnf_shd.g_old_rec.configuration_status;

277: per_cnf_shd.g_old_rec.configuration_type;
278: End If;
279: If (p_rec.configuration_status = hr_api.g_varchar2) then
280: p_rec.configuration_status :=
281: per_cnf_shd.g_old_rec.configuration_status;
282: End If;
283: --
284: End convert_defs;
285: --

Line 291: ,p_rec in out nocopy per_cnf_shd.g_rec_type

287: -- |---------------------------------< upd >----------------------------------|
288: -- ----------------------------------------------------------------------------
289: Procedure upd
290: (p_effective_date in date
291: ,p_rec in out nocopy per_cnf_shd.g_rec_type
292: ) is
293: --
294: l_proc varchar2(72) := g_package||'upd';
295: --

Line 301: per_cnf_shd.lck

297: hr_utility.set_location('Entering:'||l_proc, 5);
298: --
299: -- We must lock the row which we need to update.
300: --
301: per_cnf_shd.lck
302: (p_rec.configuration_code
303: ,p_rec.object_version_number
304: );
305: --

Line 351: l_rec per_cnf_shd.g_rec_type;

347: ,p_configuration_status in varchar2 default hr_api.g_varchar2
348: ,p_object_version_number in out nocopy number
349: ) is
350: --
351: l_rec per_cnf_shd.g_rec_type;
352: l_proc varchar2(72) := g_package||'upd';
353: --
354: Begin
355: hr_utility.set_location('Entering:'||l_proc, 5);

Line 361: per_cnf_shd.convert_args

357: -- Call conversion function to turn arguments into the
358: -- l_rec structure.
359: --
360: l_rec :=
361: per_cnf_shd.convert_args
362: (p_configuration_code
363: ,p_configuration_type
364: ,p_configuration_status
365: ,p_object_version_number