DBA Data[Home] [Help]

APPS.PQH_DST_INS dependencies on PQH_DST_SHD

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

Line 76: pqh_dst_shd.constraint_error

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

Line 80: pqh_dst_shd.constraint_error

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

Line 84: pqh_dst_shd.constraint_error

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

Line 127: Procedure pre_insert(p_rec in out nocopy pqh_dst_shd.g_rec_type) is

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

Line 178: Procedure post_insert(p_rec in pqh_dst_shd.g_rec_type) is

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

Line 219: p_rec in out nocopy pqh_dst_shd.g_rec_type

215: -- |---------------------------------< ins >----------------------------------|
216: -- ----------------------------------------------------------------------------
217: Procedure ins
218: (
219: p_rec in out nocopy pqh_dst_shd.g_rec_type
220: ) is
221: --
222: l_proc varchar2(72) := g_package||'ins';
223: --

Line 255: l_rec pqh_dst_shd.g_rec_type;

251: p_business_group_id in number,
252: p_object_version_number out nocopy number
253: ) is
254: --
255: l_rec pqh_dst_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 265: pqh_dst_shd.convert_args

261: -- Call conversion function to turn arguments into the
262: -- p_rec structure.
263: --
264: l_rec :=
265: pqh_dst_shd.convert_args
266: (
267: null,
268: p_dflt_budget_set_name,
269: p_business_group_id,