DBA Data[Home] [Help]

APPS.PQH_BGT_INS dependencies on PQH_BGT_SHD

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

Line 122: pqh_bgt_shd.constraint_error

118: hr_utility.set_location(' Leaving:'||l_proc, 10);
119: Exception
120: When hr_api.check_integrity_violated Then
121: -- A check constraint has been violated
122: pqh_bgt_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.parent_integrity_violated Then
125: -- Parent integrity has been violated
126: pqh_bgt_shd.constraint_error

Line 126: pqh_bgt_shd.constraint_error

122: pqh_bgt_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.parent_integrity_violated Then
125: -- Parent integrity has been violated
126: pqh_bgt_shd.constraint_error
127: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
128: When hr_api.unique_integrity_violated Then
129: -- Unique integrity has been violated
130: pqh_bgt_shd.constraint_error

Line 130: pqh_bgt_shd.constraint_error

126: pqh_bgt_shd.constraint_error
127: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
128: When hr_api.unique_integrity_violated Then
129: -- Unique integrity has been violated
130: pqh_bgt_shd.constraint_error
131: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
132: When Others Then
133: Raise;
134: End insert_dml;

Line 175: Procedure pre_insert(p_rec in out nocopy pqh_bgt_shd.g_rec_type) is

171: -- Internal Row Handler Use Only.
172: --
173: -- {End Of Comments}
174: -- ----------------------------------------------------------------------------
175: Procedure pre_insert(p_rec in out nocopy pqh_bgt_shd.g_rec_type) is
176: --
177: l_proc varchar2(72) := g_package||'pre_insert';
178: --
179: Cursor C_Sel1 is select pqh_budgets_s.nextval from sys.dual;

Line 233: p_effective_date in date,p_rec in pqh_bgt_shd.g_rec_type) is

229: --
230: -- {End Of Comments}
231: -- ----------------------------------------------------------------------------
232: Procedure post_insert(
233: p_effective_date in date,p_rec in pqh_bgt_shd.g_rec_type) is
234: --
235: l_proc varchar2(72) := g_package||'post_insert';
236: --
237: Begin

Line 299: p_rec in out nocopy pqh_bgt_shd.g_rec_type

295: -- ----------------------------------------------------------------------------
296: Procedure ins
297: (
298: p_effective_date in date,
299: p_rec in out nocopy pqh_bgt_shd.g_rec_type
300: ) is
301: --
302: l_proc varchar2(72) := g_package||'ins';
303: --

Line 361: l_rec pqh_bgt_shd.g_rec_type;

357: p_currency_code in varchar2 default null,
358: p_dflt_budget_set_id in number default null
359: ) is
360: --
361: l_rec pqh_bgt_shd.g_rec_type;
362: l_proc varchar2(72) := g_package||'ins';
363: --
364: Begin
365: hr_utility.set_location('Entering:'||l_proc, 5);

Line 371: pqh_bgt_shd.convert_args

367: -- Call conversion function to turn arguments into the
368: -- p_rec structure.
369: --
370: l_rec :=
371: pqh_bgt_shd.convert_args
372: (
373: null,
374: p_business_group_id,
375: p_start_organization_id,