DBA Data[Home] [Help]

APPS.HR_ITF_INS dependencies on HR_ITF_SHD

Line 76: (p_rec in out nocopy hr_itf_shd.g_rec_type

72: --
73: -- {End Of Comments}
74: -- ----------------------------------------------------------------------------
75: Procedure insert_dml
76: (p_rec in out nocopy hr_itf_shd.g_rec_type
77: ) is
78: --
79: l_proc varchar2(72) := g_package||'insert_dml';
80: --

Line 115: hr_itf_shd.constraint_error

111: Exception
112: When hr_api.check_integrity_violated Then
113: -- A check constraint has been violated
114: --
115: hr_itf_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.parent_integrity_violated Then
118: -- Parent integrity has been violated
119: --

Line 120: hr_itf_shd.constraint_error

116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.parent_integrity_violated Then
118: -- Parent integrity has been violated
119: --
120: hr_itf_shd.constraint_error
121: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122: When hr_api.unique_integrity_violated Then
123: -- Unique integrity has been violated
124: --

Line 125: hr_itf_shd.constraint_error

121: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122: When hr_api.unique_integrity_violated Then
123: -- Unique integrity has been violated
124: --
125: hr_itf_shd.constraint_error
126: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
127: When Others Then
128: --
129: Raise;

Line 170: (p_rec in out nocopy hr_itf_shd.g_rec_type

166: --
167: -- {End Of Comments}
168: -- ----------------------------------------------------------------------------
169: Procedure pre_insert
170: (p_rec in out nocopy hr_itf_shd.g_rec_type
171: ) is
172: --
173: Cursor C_Sel1 is select hr_ki_user_interfaces_s.nextval from sys.dual;
174: --

Line 221: hr_itf_shd.construct_user_interface_key

217: Fetch C_Sel1 Into p_rec.user_interface_id;
218: Close C_Sel1;
219: End If;
220:
221: hr_itf_shd.construct_user_interface_key
222: (
223: p_rec.type
224: ,p_rec.form_name
225: ,p_rec.page_region_code

Line 267: ,p_rec in hr_itf_shd.g_rec_type

263: -- {End Of Comments}
264: -- ----------------------------------------------------------------------------
265: Procedure post_insert
266: (p_effective_date in date
267: ,p_rec in hr_itf_shd.g_rec_type
268: ) is
269: --
270: l_proc varchar2(72) := g_package||'post_insert';
271: --

Line 312: ,p_rec in out nocopy hr_itf_shd.g_rec_type

308: -- |---------------------------------< ins >----------------------------------|
309: -- ----------------------------------------------------------------------------
310: Procedure ins
311: (p_effective_date in date
312: ,p_rec in out nocopy hr_itf_shd.g_rec_type
313: ) is
314: --
315: l_proc varchar2(72) := g_package||'ins';
316: --

Line 365: l_rec hr_itf_shd.g_rec_type;

361: ,p_user_interface_id out nocopy number
362: ,p_object_version_number out nocopy number
363: ) is
364: --
365: l_rec hr_itf_shd.g_rec_type;
366: l_proc varchar2(72) := g_package||'ins';
367: --
368: Begin
369: hr_utility.set_location('Entering:'||l_proc, 5);

Line 375: hr_itf_shd.convert_args

371: -- Call conversion function to turn arguments into the
372: -- p_rec structure.
373: --
374: l_rec :=
375: hr_itf_shd.convert_args
376: (null
377: ,p_user_interface_key
378: ,p_type
379: ,p_form_name