DBA Data[Home] [Help]

APPS.IRC_APA_UPD dependencies on IRC_APA_SHD

Line 55: (p_rec in out nocopy irc_apa_shd.g_rec_type

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

Line 85: irc_apa_shd.constraint_error

81: Exception
82: When hr_api.check_integrity_violated Then
83: -- A check constraint has been violated
84: --
85: irc_apa_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_apa_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_apa_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_apa_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_apa_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_apa_shd.g_rec_type

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

Line 179: (p_rec in irc_apa_shd.g_rec_type

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

Line 196: => irc_apa_shd.g_old_rec.person_id

192: => p_rec.person_id
193: ,p_object_version_number
194: => p_rec.object_version_number
195: ,p_person_id_o
196: => irc_apa_shd.g_old_rec.person_id
197: ,p_object_version_number_o
198: => irc_apa_shd.g_old_rec.object_version_number
199: );
200: --

Line 198: => irc_apa_shd.g_old_rec.object_version_number

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

Line 258: (p_rec in out nocopy irc_apa_shd.g_rec_type

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

Line 270: irc_apa_shd.g_old_rec.person_id;

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

Line 279: (p_rec in out nocopy irc_apa_shd.g_rec_type

275: -- ----------------------------------------------------------------------------
276: -- |---------------------------------< upd >----------------------------------|
277: -- ----------------------------------------------------------------------------
278: Procedure upd
279: (p_rec in out nocopy irc_apa_shd.g_rec_type
280: ) is
281: --
282: l_proc varchar2(72) := g_package||'upd';
283: --

Line 289: irc_apa_shd.lck

285: hr_utility.set_location('Entering:'||l_proc, 5);
286: --
287: -- We must lock the row which we need to update.
288: --
289: irc_apa_shd.lck
290: (p_rec.apl_profile_access_id
291: ,p_rec.object_version_number
292: );
293: --

Line 335: l_rec irc_apa_shd.g_rec_type;

331: ,p_object_version_number in out nocopy number
332: ,p_person_id in number default hr_api.g_number
333: ) is
334: --
335: l_rec irc_apa_shd.g_rec_type;
336: l_proc varchar2(72) := g_package||'upd';
337: --
338: Begin
339: hr_utility.set_location('Entering:'||l_proc, 5);

Line 345: irc_apa_shd.convert_args

341: -- Call conversion function to turn arguments into the
342: -- l_rec structure.
343: --
344: l_rec :=
345: irc_apa_shd.convert_args
346: (p_apl_profile_access_id
347: ,p_person_id
348: ,p_object_version_number
349: );