DBA Data[Home] [Help]

APPS.IRC_ISS_UPD dependencies on IRC_ISS_SHD

Line 55: (p_rec in out nocopy irc_iss_shd.g_rec_type

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

Line 85: irc_iss_shd.constraint_error

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

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

Line 179: (p_rec in irc_iss_shd.g_rec_type

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

Line 196: => irc_iss_shd.g_old_rec.vacancy_id

192: => p_rec.vacancy_id
193: ,p_object_version_number
194: => p_rec.object_version_number
195: ,p_vacancy_id_o
196: => irc_iss_shd.g_old_rec.vacancy_id
197: ,p_object_version_number_o
198: => irc_iss_shd.g_old_rec.object_version_number
199: );
200: --

Line 198: => irc_iss_shd.g_old_rec.object_version_number

194: => p_rec.object_version_number
195: ,p_vacancy_id_o
196: => irc_iss_shd.g_old_rec.vacancy_id
197: ,p_object_version_number_o
198: => irc_iss_shd.g_old_rec.object_version_number
199: );
200: --
201: exception
202: --

Line 258: (p_rec in out nocopy irc_iss_shd.g_rec_type

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

Line 270: irc_iss_shd.g_old_rec.search_criteria;

266: -- is being used then we must set to the 'current' argument value.
267: --
268: /*If (p_rec.search_criteria = hr_api.g_varchar2) then
269: p_rec.search_criteria :=
270: irc_iss_shd.g_old_rec.search_criteria;
271: End If;*/
272: If (p_rec.vacancy_id = hr_api.g_number) then
273: p_rec.vacancy_id :=
274: irc_iss_shd.g_old_rec.vacancy_id;

Line 274: irc_iss_shd.g_old_rec.vacancy_id;

270: irc_iss_shd.g_old_rec.search_criteria;
271: End If;*/
272: If (p_rec.vacancy_id = hr_api.g_number) then
273: p_rec.vacancy_id :=
274: irc_iss_shd.g_old_rec.vacancy_id;
275: End If;
276: --
277: End convert_defs;
278: --

Line 283: (p_rec in out nocopy irc_iss_shd.g_rec_type

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

Line 293: irc_iss_shd.lck

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

Line 340: l_rec irc_iss_shd.g_rec_type;

336: ,p_search_criteria in varchar2 default hr_api.g_varchar2
337: ,p_vacancy_id in number default hr_api.g_number
338: ) is
339: --
340: l_rec irc_iss_shd.g_rec_type;
341: l_proc varchar2(72) := g_package||'upd';
342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);

Line 350: irc_iss_shd.convert_args

346: -- Call conversion function to turn arguments into the
347: -- l_rec structure.
348: --
349: l_rec :=
350: irc_iss_shd.convert_args
351: (p_saved_search_criteria_id
352: ,p_search_criteria
353: ,p_vacancy_id
354: ,p_object_version_number