DBA Data[Home] [Help]

APPS.HXC_ULT_UPD dependencies on HXC_ULT_SHD

Line 56: (p_rec in out nocopy hxc_ult_shd.g_rec_type

52: --
53: -- {End Of Comments}
54: -- ----------------------------------------------------------------------------
55: Procedure update_dml
56: (p_rec in out nocopy hxc_ult_shd.g_rec_type
57: ) is
58: --
59: l_proc varchar2(72) ;
60: --

Line 96: hxc_ult_shd.constraint_error

92: Exception
93: When hr_api.check_integrity_violated Then
94: -- A check constraint has been violated
95: --
96: hxc_ult_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --

Line 101: hxc_ult_shd.constraint_error

97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: hxc_ult_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --

Line 106: hxc_ult_shd.constraint_error

102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: hxc_ult_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
108: When Others Then
109: --
110: Raise;

Line 146: (p_rec in hxc_ult_shd.g_rec_type

142: --
143: -- {End Of Comments}
144: -- ----------------------------------------------------------------------------
145: Procedure pre_update
146: (p_rec in hxc_ult_shd.g_rec_type
147: ) is
148: --
149: l_proc varchar2(72) ;
150: --

Line 193: (p_rec in hxc_ult_shd.g_rec_type

189: --
190: -- {End Of Comments}
191: -- ----------------------------------------------------------------------------
192: Procedure post_update
193: (p_rec in hxc_ult_shd.g_rec_type
194: ) is
195: --
196: l_proc varchar2(72) ;
197: --

Line 216: => hxc_ult_shd.g_old_rec.display_layout_name

212: => p_rec.language
213: ,p_source_lang
214: => p_rec.source_lang
215: ,p_display_layout_name_o
216: => hxc_ult_shd.g_old_rec.display_layout_name
217: ,p_source_lang_o
218: => hxc_ult_shd.g_old_rec.source_lang
219: );
220: --

Line 218: => hxc_ult_shd.g_old_rec.source_lang

214: => p_rec.source_lang
215: ,p_display_layout_name_o
216: => hxc_ult_shd.g_old_rec.display_layout_name
217: ,p_source_lang_o
218: => hxc_ult_shd.g_old_rec.source_lang
219: );
220: --
221: exception
222: --

Line 280: (p_rec in out nocopy hxc_ult_shd.g_rec_type

276: --
277: -- {End Of Comments}
278: -- ----------------------------------------------------------------------------
279: Procedure convert_defs
280: (p_rec in out nocopy hxc_ult_shd.g_rec_type
281: ) is
282: --
283: Begin
284: --

Line 292: hxc_ult_shd.g_old_rec.display_layout_name;

288: -- is being used then we must set to the 'current' argument value.
289: --
290: If (p_rec.display_layout_name = hr_api.g_varchar2) then
291: p_rec.display_layout_name :=
292: hxc_ult_shd.g_old_rec.display_layout_name;
293: End If;
294: If (p_rec.source_lang = hr_api.g_varchar2) then
295: p_rec.source_lang :=
296: hxc_ult_shd.g_old_rec.source_lang;

Line 296: hxc_ult_shd.g_old_rec.source_lang;

292: hxc_ult_shd.g_old_rec.display_layout_name;
293: End If;
294: If (p_rec.source_lang = hr_api.g_varchar2) then
295: p_rec.source_lang :=
296: hxc_ult_shd.g_old_rec.source_lang;
297: End If;
298: --
299: End convert_defs;
300: --

Line 305: (p_rec in out nocopy hxc_ult_shd.g_rec_type

301: -- ----------------------------------------------------------------------------
302: -- |---------------------------------< upd >----------------------------------|
303: -- ----------------------------------------------------------------------------
304: Procedure upd
305: (p_rec in out nocopy hxc_ult_shd.g_rec_type
306: ) is
307: --
308: l_proc varchar2(72) ;
309: --

Line 319: hxc_ult_shd.lck

315: end if;
316: --
317: -- We must lock the row which we need to update.
318: --
319: hxc_ult_shd.lck
320: (p_rec.layout_id
321: ,p_rec.language
322: );
323: --

Line 360: l_rec hxc_ult_shd.g_rec_type;

356: ,p_display_layout_name in varchar2 default hr_api.g_varchar2
357: ,p_source_lang in varchar2 default hr_api.g_varchar2
358: ) is
359: --
360: l_rec hxc_ult_shd.g_rec_type;
361: l_proc varchar2(72) ;
362: --
363: Begin
364: g_debug :=hr_utility.debug_enabled;

Line 374: hxc_ult_shd.convert_args

370: -- Call conversion function to turn arguments into the
371: -- l_rec structure.
372: --
373: l_rec :=
374: hxc_ult_shd.convert_args
375: (p_layout_id
376: ,p_display_layout_name
377: ,p_language
378: ,p_source_lang