DBA Data[Home] [Help]

APPS.PQH_WFS_INS dependencies on PQH_WFS_SHD

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

Line 88: pqh_wfs_shd.constraint_error

84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: pqh_wfs_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When hr_api.parent_integrity_violated Then
91: -- Parent integrity has been violated
92: pqh_wfs_shd.constraint_error

Line 92: pqh_wfs_shd.constraint_error

88: pqh_wfs_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When hr_api.parent_integrity_violated Then
91: -- Parent integrity has been violated
92: pqh_wfs_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: pqh_wfs_shd.constraint_error

Line 96: pqh_wfs_shd.constraint_error

92: pqh_wfs_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: pqh_wfs_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When Others Then
99: Raise;
100: End insert_dml;

Line 139: Procedure pre_insert(p_rec in out nocopy pqh_wfs_shd.g_rec_type) is

135: -- Internal Row Handler Use Only.
136: --
137: -- {End Of Comments}
138: -- ----------------------------------------------------------------------------
139: Procedure pre_insert(p_rec in out nocopy pqh_wfs_shd.g_rec_type) is
140: --
141: l_proc varchar2(72) := g_package||'pre_insert';
142: --
143: Cursor C_Sel1 is select pqh_worksheet_fund_srcs_s.nextval from sys.dual;

Line 190: Procedure post_insert(p_rec in pqh_wfs_shd.g_rec_type) is

186: -- Internal Row Handler Use Only.
187: --
188: -- {End Of Comments}
189: -- ----------------------------------------------------------------------------
190: Procedure post_insert(p_rec in pqh_wfs_shd.g_rec_type) is
191: --
192: l_proc varchar2(72) := g_package||'post_insert';
193: --
194: Begin

Line 237: p_rec in out nocopy pqh_wfs_shd.g_rec_type

233: -- |---------------------------------< ins >----------------------------------|
234: -- ----------------------------------------------------------------------------
235: Procedure ins
236: (
237: p_rec in out nocopy pqh_wfs_shd.g_rec_type
238: ) is
239: --
240: l_proc varchar2(72) := g_package||'ins';
241: --

Line 279: l_rec pqh_wfs_shd.g_rec_type;

275: p_organization_id in number default null,
276: p_object_version_number out nocopy number
277: ) is
278: --
279: l_rec pqh_wfs_shd.g_rec_type;
280: l_proc varchar2(72) := g_package||'ins';
281: --
282: Begin
283: hr_utility.set_location('Entering:'||l_proc, 5);

Line 289: pqh_wfs_shd.convert_args

285: -- Call conversion function to turn arguments into the
286: -- p_rec structure.
287: --
288: l_rec :=
289: pqh_wfs_shd.convert_args
290: (
291: null,
292: p_worksheet_bdgt_elmnt_id,
293: p_distribution_percentage,