DBA Data[Home] [Help]

APPS.HR_ORT_UPD dependencies on HR_ORT_SHD

Line 55: (p_rec in out nocopy hr_ort_shd.g_rec_type

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

Line 85: hr_ort_shd.constraint_error

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

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

Line 179: (p_rec in hr_ort_shd.g_rec_type

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

Line 198: => hr_ort_shd.g_old_rec.source_lang

194: => p_rec.source_lang
195: ,p_name
196: => p_rec.name
197: ,p_source_lang_o
198: => hr_ort_shd.g_old_rec.source_lang
199: ,p_name_o
200: => hr_ort_shd.g_old_rec.name
201: );
202: --

Line 200: => hr_ort_shd.g_old_rec.name

196: => p_rec.name
197: ,p_source_lang_o
198: => hr_ort_shd.g_old_rec.source_lang
199: ,p_name_o
200: => hr_ort_shd.g_old_rec.name
201: );
202: --
203: exception
204: --

Line 260: (p_rec in out nocopy hr_ort_shd.g_rec_type

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

Line 272: hr_ort_shd.g_old_rec.source_lang;

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

Line 276: hr_ort_shd.g_old_rec.name;

272: hr_ort_shd.g_old_rec.source_lang;
273: End If;
274: If (p_rec.name = hr_api.g_varchar2) then
275: p_rec.name :=
276: hr_ort_shd.g_old_rec.name;
277: End If;
278: --
279: End convert_defs;
280: --

Line 285: (p_rec in out nocopy hr_ort_shd.g_rec_type

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

Line 295: hr_ort_shd.lck

291: hr_utility.set_location('Entering:'||l_proc, 5);
292: --
293: -- We must lock the row which we need to update.
294: --
295: hr_ort_shd.lck
296: (p_rec.organization_id
297: ,p_rec.language
298: );
299: --

Line 336: l_rec hr_ort_shd.g_rec_type;

332: ,p_source_lang in varchar2 default hr_api.g_varchar2
333: ,p_name in varchar2 default hr_api.g_varchar2
334: ) is
335: --
336: l_rec hr_ort_shd.g_rec_type;
337: l_proc varchar2(72) := g_package||'upd';
338: --
339: Begin
340: hr_utility.set_location('Entering:'||l_proc, 5);

Line 346: hr_ort_shd.convert_args

342: -- Call conversion function to turn arguments into the
343: -- l_rec structure.
344: --
345: l_rec :=
346: hr_ort_shd.convert_args
347: (p_organization_id
348: ,p_language
349: ,p_source_lang
350: ,p_name