DBA Data[Home] [Help]

APPS.HR_ITL_UPD dependencies on HR_ITL_SHD

Line 55: (p_rec in out nocopy hr_itl_shd.g_rec_type

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

Line 86: hr_itl_shd.constraint_error

82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: --
86: hr_itl_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: hr_itl_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: hr_itl_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: hr_itl_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: hr_itl_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 hr_itl_shd.g_rec_type

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

Line 180: (p_rec in hr_itl_shd.g_rec_type

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

Line 202: => hr_itl_shd.g_old_rec.partner_name

198: => p_rec.language
199: ,p_source_lang
200: => p_rec.source_lang
201: ,p_partner_name_o
202: => hr_itl_shd.g_old_rec.partner_name
203: ,p_service_name_o
204: => hr_itl_shd.g_old_rec.service_name
205: ,p_source_lang_o
206: => hr_itl_shd.g_old_rec.source_lang

Line 204: => hr_itl_shd.g_old_rec.service_name

200: => p_rec.source_lang
201: ,p_partner_name_o
202: => hr_itl_shd.g_old_rec.partner_name
203: ,p_service_name_o
204: => hr_itl_shd.g_old_rec.service_name
205: ,p_source_lang_o
206: => hr_itl_shd.g_old_rec.source_lang
207: );
208: --

Line 206: => hr_itl_shd.g_old_rec.source_lang

202: => hr_itl_shd.g_old_rec.partner_name
203: ,p_service_name_o
204: => hr_itl_shd.g_old_rec.service_name
205: ,p_source_lang_o
206: => hr_itl_shd.g_old_rec.source_lang
207: );
208: --
209: exception
210: --

Line 268: (p_rec in out nocopy hr_itl_shd.g_rec_type

264: --
265: -- {End Of Comments}
266: -- ----------------------------------------------------------------------------
267: Procedure convert_defs
268: (p_rec in out nocopy hr_itl_shd.g_rec_type
269: ) is
270: --
271: Begin
272: --

Line 280: hr_itl_shd.g_old_rec.partner_name;

276: -- is being used then we must set to the 'current' argument value.
277: --
278: If (p_rec.partner_name = hr_api.g_varchar2) then
279: p_rec.partner_name :=
280: hr_itl_shd.g_old_rec.partner_name;
281: End If;
282: If (p_rec.service_name = hr_api.g_varchar2) then
283: p_rec.service_name :=
284: hr_itl_shd.g_old_rec.service_name;

Line 284: hr_itl_shd.g_old_rec.service_name;

280: hr_itl_shd.g_old_rec.partner_name;
281: End If;
282: If (p_rec.service_name = hr_api.g_varchar2) then
283: p_rec.service_name :=
284: hr_itl_shd.g_old_rec.service_name;
285: End If;
286: If (p_rec.source_lang = hr_api.g_varchar2) then
287: p_rec.source_lang :=
288: hr_itl_shd.g_old_rec.source_lang;

Line 288: hr_itl_shd.g_old_rec.source_lang;

284: hr_itl_shd.g_old_rec.service_name;
285: End If;
286: If (p_rec.source_lang = hr_api.g_varchar2) then
287: p_rec.source_lang :=
288: hr_itl_shd.g_old_rec.source_lang;
289: End If;
290: --
291: End convert_defs;
292: --

Line 297: (p_rec in out nocopy hr_itl_shd.g_rec_type

293: -- ----------------------------------------------------------------------------
294: -- |---------------------------------< upd >----------------------------------|
295: -- ----------------------------------------------------------------------------
296: Procedure upd
297: (p_rec in out nocopy hr_itl_shd.g_rec_type
298: ) is
299: --
300: l_proc varchar2(72) := g_package||'upd';
301: --

Line 307: hr_itl_shd.lck

303: hr_utility.set_location('Entering:'||l_proc, 5);
304: --
305: -- We must lock the row which we need to update.
306: --
307: hr_itl_shd.lck
308: (p_rec.integration_id
309: ,p_rec.language
310: );
311: --

Line 356: l_rec hr_itl_shd.g_rec_type;

352: ,p_language in varchar2
353: ,p_source_lang in varchar2 default hr_api.g_varchar2
354: ) is
355: --
356: l_rec hr_itl_shd.g_rec_type;
357: l_proc varchar2(72) := g_package||'upd';
358: --
359: Begin
360: hr_utility.set_location('Entering:'||l_proc, 5);

Line 366: hr_itl_shd.convert_args

362: -- Call conversion function to turn arguments into the
363: -- l_rec structure.
364: --
365: l_rec :=
366: hr_itl_shd.convert_args
367: (p_integration_id
368: ,p_partner_name
369: ,p_service_name
370: ,p_language