DBA Data[Home] [Help]

APPS.HR_LOT_INS dependencies on HR_LOT_SHD

Line 47: Procedure insert_dml(p_rec in out nocopy hr_lot_shd.g_rec_type) is

43: -- Internal Row Handler Use Only.
44: --
45: -- {End Of Comments}
46: -- ----------------------------------------------------------------------------
47: Procedure insert_dml(p_rec in out nocopy hr_lot_shd.g_rec_type) is
48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin

Line 75: hr_lot_shd.constraint_error

71: hr_utility.set_location(' Leaving:'||l_proc, 10);
72: Exception
73: When hr_api.check_integrity_violated Then
74: -- A check constraint has been violated
75: hr_lot_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When hr_api.parent_integrity_violated Then
78: -- Parent integrity has been violated
79: hr_lot_shd.constraint_error

Line 79: hr_lot_shd.constraint_error

75: hr_lot_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When hr_api.parent_integrity_violated Then
78: -- Parent integrity has been violated
79: hr_lot_shd.constraint_error
80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
81: When hr_api.unique_integrity_violated Then
82: -- Unique integrity has been violated
83: hr_lot_shd.constraint_error

Line 83: hr_lot_shd.constraint_error

79: hr_lot_shd.constraint_error
80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
81: When hr_api.unique_integrity_violated Then
82: -- Unique integrity has been violated
83: hr_lot_shd.constraint_error
84: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
85: When Others Then
86: Raise;
87: End insert_dml;

Line 126: Procedure pre_insert(p_rec in out nocopy hr_lot_shd.g_rec_type,

122: -- Internal Row Handler Use Only.
123: --
124: -- {End Of Comments}
125: -- ----------------------------------------------------------------------------
126: Procedure pre_insert(p_rec in out nocopy hr_lot_shd.g_rec_type,
127: p_location_id in number) is
128: --
129: l_proc varchar2(72) := g_package||'pre_insert';
130: --

Line 173: Procedure post_insert(p_rec in hr_lot_shd.g_rec_type) is

169: -- Internal Row Handler Use Only.
170: --
171: -- {End Of Comments}
172: -- ----------------------------------------------------------------------------
173: Procedure post_insert(p_rec in hr_lot_shd.g_rec_type) is
174: --
175: l_proc varchar2(72) := g_package||'post_insert';
176: --
177: Begin

Line 215: p_rec in out nocopy hr_lot_shd.g_rec_type,

211: -- |---------------------------------< ins >----------------------------------|
212: -- ----------------------------------------------------------------------------
213: Procedure ins
214: (
215: p_rec in out nocopy hr_lot_shd.g_rec_type,
216: p_location_id in number,
217: p_business_group_id in number
218: ) is
219: --

Line 255: l_rec hr_lot_shd.g_rec_type;

251: p_description in varchar2 default null,
252: p_business_group_id in number
253: ) is
254: --
255: l_rec hr_lot_shd.g_rec_type;
256: l_proc varchar2(72) := g_package||'ins';
257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);

Line 271: hr_lot_shd.convert_args

267: -- through NULL to convert_args, but add an extra parameter - p_location_id -
268: -- to the call to ins(). This parameter contains the real location_id.
269: --
270: l_rec :=
271: hr_lot_shd.convert_args
272: (
273: NULL,
274: p_language,
275: p_source_lang,

Line 342: hr_lot_shd.set_value_business_group_id (p_business_group_id => p_business_group_id);

338: end if;
339: --
340: -- Finally, set the global g_loc_bg_id for use when updating.
341: --
342: hr_lot_shd.set_value_business_group_id (p_business_group_id => p_business_group_id);
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 20);
345: End ins_tl;
346: --