DBA Data[Home] [Help]

APPS.IRC_INO_DEL dependencies on IRC_INO_SHD

Line 52: (p_rec in irc_ino_shd.g_rec_type

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

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

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

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

63: --
64: delete from irc_notes
65: where note_id = p_rec.note_id;
66: --
67: irc_ino_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: irc_ino_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: irc_ino_shd.g_api_dml := false; -- Unset the api dml status
75: irc_ino_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When Others Then
78: irc_ino_shd.g_api_dml := false; -- Unset the api dml status

Line 75: irc_ino_shd.constraint_error

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

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

74: irc_ino_shd.g_api_dml := false; -- Unset the api dml status
75: irc_ino_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When Others Then
78: irc_ino_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 irc_ino_shd.g_rec_type) is

110: -- Internal Row Handler Use Only.
111: --
112: -- {End Of Comments}
113: -- ----------------------------------------------------------------------------
114: Procedure pre_delete(p_rec in irc_ino_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 irc_ino_shd.g_rec_type) is

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

Line 168: => irc_ino_shd.g_old_rec.offer_status_history_id

164: irc_ino_rkd.after_delete
165: (p_note_id
166: => p_rec.note_id
167: ,p_offer_status_history_id_o
168: => irc_ino_shd.g_old_rec.offer_status_history_id
169: ,p_note_text_o
170: => irc_ino_shd.g_old_rec.note_text
171: ,p_object_version_number_o
172: => irc_ino_shd.g_old_rec.object_version_number

Line 170: => irc_ino_shd.g_old_rec.note_text

166: => p_rec.note_id
167: ,p_offer_status_history_id_o
168: => irc_ino_shd.g_old_rec.offer_status_history_id
169: ,p_note_text_o
170: => irc_ino_shd.g_old_rec.note_text
171: ,p_object_version_number_o
172: => irc_ino_shd.g_old_rec.object_version_number
173: );
174: --

Line 172: => irc_ino_shd.g_old_rec.object_version_number

168: => irc_ino_shd.g_old_rec.offer_status_history_id
169: ,p_note_text_o
170: => irc_ino_shd.g_old_rec.note_text
171: ,p_object_version_number_o
172: => irc_ino_shd.g_old_rec.object_version_number
173: );
174: --
175: exception
176: --

Line 192: (p_rec in irc_ino_shd.g_rec_type

188: -- ----------------------------------------------------------------------------
189: -- |---------------------------------< del >----------------------------------|
190: -- ----------------------------------------------------------------------------
191: Procedure del
192: (p_rec in irc_ino_shd.g_rec_type
193: ) is
194: --
195: l_proc varchar2(72) := g_package||'del';
196: --

Line 202: irc_ino_shd.lck

198: hr_utility.set_location('Entering:'||l_proc, 5);
199: --
200: -- We must lock the row which we need to delete.
201: --
202: irc_ino_shd.lck
203: (p_rec.note_id
204: ,p_rec.object_version_number
205: );
206: --

Line 239: l_rec irc_ino_shd.g_rec_type;

235: (p_note_id in number
236: ,p_object_version_number in number
237: ) is
238: --
239: l_rec irc_ino_shd.g_rec_type;
240: l_proc varchar2(72) := g_package||'del';
241: --
242: Begin
243: hr_utility.set_location('Entering:'||l_proc, 5);