DBA Data[Home] [Help]

APPS.PQH_BEL_INS dependencies on PQH_BEL_SHD

Line 47: Procedure insert_dml(p_rec in out nocopy pqh_bel_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 pqh_bel_shd.g_rec_type) is
48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin

Line 78: pqh_bel_shd.constraint_error

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

Line 82: pqh_bel_shd.constraint_error

78: pqh_bel_shd.constraint_error
79: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
80: When hr_api.parent_integrity_violated Then
81: -- Parent integrity has been violated
82: pqh_bel_shd.constraint_error
83: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
84: When hr_api.unique_integrity_violated Then
85: -- Unique integrity has been violated
86: pqh_bel_shd.constraint_error

Line 86: pqh_bel_shd.constraint_error

82: pqh_bel_shd.constraint_error
83: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
84: When hr_api.unique_integrity_violated Then
85: -- Unique integrity has been violated
86: pqh_bel_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When Others Then
89: Raise;
90: End insert_dml;

Line 129: Procedure pre_insert(p_rec in out nocopy pqh_bel_shd.g_rec_type) is

125: -- Internal Row Handler Use Only.
126: --
127: -- {End Of Comments}
128: -- ----------------------------------------------------------------------------
129: Procedure pre_insert(p_rec in out nocopy pqh_bel_shd.g_rec_type) is
130: --
131: l_proc varchar2(72) := g_package||'pre_insert';
132: --
133: Cursor C_Sel1 is select pqh_budget_elements_s.nextval from sys.dual;

Line 180: Procedure post_insert(p_rec in pqh_bel_shd.g_rec_type) is

176: -- Internal Row Handler Use Only.
177: --
178: -- {End Of Comments}
179: -- ----------------------------------------------------------------------------
180: Procedure post_insert(p_rec in pqh_bel_shd.g_rec_type) is
181: --
182: l_proc varchar2(72) := g_package||'post_insert';
183: --
184: Begin

Line 222: p_rec in out nocopy pqh_bel_shd.g_rec_type

218: -- |---------------------------------< ins >----------------------------------|
219: -- ----------------------------------------------------------------------------
220: Procedure ins
221: (
222: p_rec in out nocopy pqh_bel_shd.g_rec_type
223: ) is
224: --
225: l_proc varchar2(72) := g_package||'ins';
226: --

Line 259: l_rec pqh_bel_shd.g_rec_type;

255: p_distribution_percentage in number default null,
256: p_object_version_number out nocopy number
257: ) is
258: --
259: l_rec pqh_bel_shd.g_rec_type;
260: l_proc varchar2(72) := g_package||'ins';
261: --
262: Begin
263: hr_utility.set_location('Entering:'||l_proc, 5);

Line 269: pqh_bel_shd.convert_args

265: -- Call conversion function to turn arguments into the
266: -- p_rec structure.
267: --
268: l_rec :=
269: pqh_bel_shd.convert_args
270: (
271: null,
272: p_budget_set_id,
273: p_element_type_id,