DBA Data[Home] [Help]

APPS.IRC_APS_UPD dependencies on IRC_APS_SHD

Line 55: (p_rec in out nocopy irc_aps_shd.g_rec_type

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

Line 85: irc_aps_shd.constraint_error

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

Line 90: irc_aps_shd.constraint_error

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

Line 95: irc_aps_shd.constraint_error

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

Line 135: (p_rec in irc_aps_shd.g_rec_type

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

Line 180: ,p_rec in irc_aps_shd.g_rec_type

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

Line 198: => irc_aps_shd.g_old_rec.person_id

194: => p_rec.person_id
195: ,p_object_version_number
196: => p_rec.object_version_number
197: ,p_person_id_o
198: => irc_aps_shd.g_old_rec.person_id
199: ,p_object_version_number_o
200: => irc_aps_shd.g_old_rec.object_version_number
201: );
202: --

Line 200: => irc_aps_shd.g_old_rec.object_version_number

196: => p_rec.object_version_number
197: ,p_person_id_o
198: => irc_aps_shd.g_old_rec.person_id
199: ,p_object_version_number_o
200: => irc_aps_shd.g_old_rec.object_version_number
201: );
202: --
203: exception
204: --

Line 260: (p_rec in out nocopy irc_aps_shd.g_rec_type

256: --
257: -- {End Of Comments}
258: -- ----------------------------------------------------------------------------
259: Procedure convert_defs
260: (p_rec in out nocopy irc_aps_shd.g_rec_type
261: ) is
262: --
263: Begin
264: --

Line 272: irc_aps_shd.g_old_rec.person_id;

268: -- is being used then we must set to the 'current' argument value.
269: --
270: If (p_rec.person_id = hr_api.g_number) then
271: p_rec.person_id :=
272: irc_aps_shd.g_old_rec.person_id;
273: End If;
274: --
275: End convert_defs;
276: --

Line 282: ,p_rec in out nocopy irc_aps_shd.g_rec_type

278: -- |---------------------------------< upd >----------------------------------|
279: -- ----------------------------------------------------------------------------
280: Procedure upd
281: (p_effective_date in date
282: ,p_rec in out nocopy irc_aps_shd.g_rec_type
283: ) is
284: --
285: l_proc varchar2(72) := g_package||'upd';
286: --

Line 292: irc_aps_shd.lck

288: hr_utility.set_location('Entering:'||l_proc, 5);
289: --
290: -- We must lock the row which we need to update.
291: --
292: irc_aps_shd.lck
293: (p_rec.profile_snapshot_id
294: ,p_rec.object_version_number
295: );
296: --

Line 341: l_rec irc_aps_shd.g_rec_type;

337: ,p_object_version_number in out nocopy number
338: ,p_person_id in number default hr_api.g_number
339: ) is
340: --
341: l_rec irc_aps_shd.g_rec_type;
342: l_proc varchar2(72) := g_package||'upd';
343: --
344: Begin
345: hr_utility.set_location('Entering:'||l_proc, 5);

Line 351: irc_aps_shd.convert_args

347: -- Call conversion function to turn arguments into the
348: -- l_rec structure.
349: --
350: l_rec :=
351: irc_aps_shd.convert_args
352: (p_profile_snapshot_id
353: ,p_person_id
354: ,p_object_version_number
355: );