DBA Data[Home] [Help]

APPS.OTA_ENT_UPD dependencies on OTA_ENT_SHD

Line 55: (p_rec in out nocopy ota_ent_shd.g_rec_type

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

Line 85: ota_ent_shd.constraint_error

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

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

Line 180: ,p_rec in ota_ent_shd.g_rec_type

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

Line 200: => ota_ent_shd.g_old_rec.title

196: => p_rec.title
197: ,p_source_lang
198: => p_rec.source_lang
199: ,p_title_o
200: => ota_ent_shd.g_old_rec.title
201: ,p_source_lang_o
202: => ota_ent_shd.g_old_rec.source_lang
203: );
204: --

Line 202: => ota_ent_shd.g_old_rec.source_lang

198: => p_rec.source_lang
199: ,p_title_o
200: => ota_ent_shd.g_old_rec.title
201: ,p_source_lang_o
202: => ota_ent_shd.g_old_rec.source_lang
203: );
204: --
205: exception
206: --

Line 262: (p_rec in out nocopy ota_ent_shd.g_rec_type

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

Line 274: ota_ent_shd.g_old_rec.title;

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

Line 278: ota_ent_shd.g_old_rec.source_lang;

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

Line 288: ,p_rec in out nocopy ota_ent_shd.g_rec_type

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

Line 298: ota_ent_shd.lck

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

Line 348: l_rec ota_ent_shd.g_rec_type;

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

Line 358: ota_ent_shd.convert_args

354: -- Call conversion function to turn arguments into the
355: -- l_rec structure.
356: --
357: l_rec :=
358: ota_ent_shd.convert_args
359: (p_event_id
360: ,p_language
361: ,p_title
362: ,p_source_lang