DBA Data[Home] [Help]

APPS.HR_OTT_UPD dependencies on HR_OTT_SHD

Line 55: (p_rec in out nocopy hr_ott_shd.g_rec_type

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

Line 85: hr_ott_shd.constraint_error

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

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

Line 179: (p_rec in hr_ott_shd.g_rec_type

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

Line 199: => hr_ott_shd.g_old_rec.option_name

195: => p_rec.language
196: ,p_source_lang
197: => p_rec.source_lang
198: ,p_option_name_o
199: => hr_ott_shd.g_old_rec.option_name
200: ,p_source_lang_o
201: => hr_ott_shd.g_old_rec.source_lang
202: );
203: --

Line 201: => hr_ott_shd.g_old_rec.source_lang

197: => p_rec.source_lang
198: ,p_option_name_o
199: => hr_ott_shd.g_old_rec.option_name
200: ,p_source_lang_o
201: => hr_ott_shd.g_old_rec.source_lang
202: );
203: --
204: exception
205: --

Line 263: (p_rec in out nocopy hr_ott_shd.g_rec_type

259: --
260: -- {End Of Comments}
261: -- ----------------------------------------------------------------------------
262: Procedure convert_defs
263: (p_rec in out nocopy hr_ott_shd.g_rec_type
264: ) is
265: --
266: Begin
267: --

Line 275: hr_ott_shd.g_old_rec.option_name;

271: -- is being used then we must set to the 'current' argument value.
272: --
273: If (p_rec.option_name = hr_api.g_varchar2) then
274: p_rec.option_name :=
275: hr_ott_shd.g_old_rec.option_name;
276: End If;
277: If (p_rec.source_lang = hr_api.g_varchar2) then
278: p_rec.source_lang :=
279: hr_ott_shd.g_old_rec.source_lang;

Line 279: hr_ott_shd.g_old_rec.source_lang;

275: hr_ott_shd.g_old_rec.option_name;
276: End If;
277: If (p_rec.source_lang = hr_api.g_varchar2) then
278: p_rec.source_lang :=
279: hr_ott_shd.g_old_rec.source_lang;
280: End If;
281: --
282: End convert_defs;
283: --

Line 288: (p_rec in out nocopy hr_ott_shd.g_rec_type

284: -- ----------------------------------------------------------------------------
285: -- |---------------------------------< upd >----------------------------------|
286: -- ----------------------------------------------------------------------------
287: Procedure upd
288: (p_rec in out nocopy hr_ott_shd.g_rec_type
289: ,p_option_type_id in number
290: ) is
291: --
292: l_proc varchar2(72) := g_package||'upd';

Line 299: hr_ott_shd.lck

295: hr_utility.set_location('Entering:'||l_proc, 5);
296: --
297: -- We must lock the row which we need to update.
298: --
299: hr_ott_shd.lck
300: (p_rec.option_type_id
301: ,p_rec.language
302: );
303: --

Line 347: l_rec hr_ott_shd.g_rec_type;

343: ,p_language in varchar2
344: ,p_source_lang in varchar2 default hr_api.g_varchar2
345: ) is
346: --
347: l_rec hr_ott_shd.g_rec_type;
348: l_proc varchar2(72) := g_package||'upd';
349: --
350: Begin
351: hr_utility.set_location('Entering:'||l_proc, 5);

Line 357: hr_ott_shd.convert_args

353: -- Call conversion function to turn arguments into the
354: -- l_rec structure.
355: --
356: l_rec :=
357: hr_ott_shd.convert_args
358: (p_option_type_id
359: ,p_option_name
360: ,p_language
361: ,p_source_lang