DBA Data[Home] [Help]

APPS.AME_RTL_UPD dependencies on AME_RTL_SHD

Line 55: (p_rec in out nocopy ame_rtl_shd.g_rec_type

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

Line 85: ame_rtl_shd.constraint_error

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

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

Line 179: (p_rec in ame_rtl_shd.g_rec_type

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

Line 198: => ame_rtl_shd.g_old_rec.source_lang

194: => p_rec.source_lang
195: ,p_description
196: => p_rec.description
197: ,p_source_lang_o
198: => ame_rtl_shd.g_old_rec.source_lang
199: ,p_description_o
200: => ame_rtl_shd.g_old_rec.description
201: );
202: --

Line 200: => ame_rtl_shd.g_old_rec.description

196: => p_rec.description
197: ,p_source_lang_o
198: => ame_rtl_shd.g_old_rec.source_lang
199: ,p_description_o
200: => ame_rtl_shd.g_old_rec.description
201: );
202: --
203: exception
204: --

Line 260: (p_rec in out nocopy ame_rtl_shd.g_rec_type

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

Line 272: ame_rtl_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: ame_rtl_shd.g_old_rec.source_lang;
273: End If;
274: If (p_rec.description = hr_api.g_varchar2) then
275: p_rec.description :=
276: ame_rtl_shd.g_old_rec.description;

Line 276: ame_rtl_shd.g_old_rec.description;

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

Line 285: (p_rec in out nocopy ame_rtl_shd.g_rec_type

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

Line 295: ame_rtl_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: ame_rtl_shd.lck
296: (p_rec.rule_id
297: ,p_rec.language
298: );
299: --

Line 342: l_rec ame_rtl_shd.g_rec_type;

338: ,p_source_lang in varchar2 default hr_api.g_varchar2
339: ,p_description in varchar2 default hr_api.g_varchar2
340: ) is
341: --
342: l_rec ame_rtl_shd.g_rec_type;
343: l_proc varchar2(72) := g_package||'upd';
344: --
345: Begin
346: hr_utility.set_location('Entering:'||l_proc, 5);

Line 352: ame_rtl_shd.convert_args

348: -- Call conversion function to turn arguments into the
349: -- l_rec structure.
350: --
351: l_rec :=
352: ame_rtl_shd.convert_args
353: (p_rule_id
354: ,p_language
355: ,p_source_lang
356: ,p_description