DBA Data[Home] [Help]

APPS.PQH_TEM_INS dependencies on PQH_TEM_SHD

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

Line 92: pqh_tem_shd.constraint_error

88: hr_utility.set_location(' Leaving:'||l_proc, 10);
89: Exception
90: When hr_api.check_integrity_violated Then
91: -- A check constraint has been violated
92: pqh_tem_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.parent_integrity_violated Then
95: -- Parent integrity has been violated
96: pqh_tem_shd.constraint_error

Line 96: pqh_tem_shd.constraint_error

92: pqh_tem_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.parent_integrity_violated Then
95: -- Parent integrity has been violated
96: pqh_tem_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: pqh_tem_shd.constraint_error

Line 100: pqh_tem_shd.constraint_error

96: pqh_tem_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: pqh_tem_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When Others Then
103: Raise;
104: End insert_dml;

Line 143: Procedure pre_insert(p_rec in out nocopy pqh_tem_shd.g_rec_type) is

139: -- Internal Row Handler Use Only.
140: --
141: -- {End Of Comments}
142: -- ----------------------------------------------------------------------------
143: Procedure pre_insert(p_rec in out nocopy pqh_tem_shd.g_rec_type) is
144: --
145: l_proc varchar2(72) := g_package||'pre_insert';
146: --
147: Cursor C_Sel1 is select pqh_templates_s.nextval from sys.dual;

Line 195: p_effective_date in date,p_rec in pqh_tem_shd.g_rec_type) is

191: --
192: -- {End Of Comments}
193: -- ----------------------------------------------------------------------------
194: Procedure post_insert(
195: p_effective_date in date,p_rec in pqh_tem_shd.g_rec_type) is
196: --
197: l_proc varchar2(72) := g_package||'post_insert';
198: --
199: Begin

Line 246: p_rec in out nocopy pqh_tem_shd.g_rec_type

242: -- ----------------------------------------------------------------------------
243: Procedure ins
244: (
245: p_effective_date in date,
246: p_rec in out nocopy pqh_tem_shd.g_rec_type
247: ) is
248: --
249: l_proc varchar2(72) := g_package||'ins';
250: --

Line 293: l_rec pqh_tem_shd.g_rec_type;

289: p_template_type_cd in varchar2,
290: p_legislation_code in varchar2 default null
291: ) is
292: --
293: l_rec pqh_tem_shd.g_rec_type;
294: l_proc varchar2(72) := g_package||'ins';
295: --
296: Begin
297: hr_utility.set_location('Entering:'||l_proc, 5);

Line 303: pqh_tem_shd.convert_args

299: -- Call conversion function to turn arguments into the
300: -- p_rec structure.
301: --
302: l_rec :=
303: pqh_tem_shd.convert_args
304: (
305: p_template_name,
306: p_short_name,
307: null,