DBA Data[Home] [Help]

APPS.GHR_NRE_INS dependencies on GHR_NRE_SHD

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

Line 84: ghr_nre_shd.constraint_error

80: hr_utility.set_location(' Leaving:'||l_proc, 10);
81: Exception
82: When hr_api.check_integrity_violated Then
83: -- A check constraint has been violated
84: ghr_nre_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When hr_api.parent_integrity_violated Then
87: -- Parent integrity has been violated
88: ghr_nre_shd.constraint_error

Line 88: ghr_nre_shd.constraint_error

84: ghr_nre_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When hr_api.parent_integrity_violated Then
87: -- Parent integrity has been violated
88: ghr_nre_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When hr_api.unique_integrity_violated Then
91: -- Unique integrity has been violated
92: ghr_nre_shd.constraint_error

Line 92: ghr_nre_shd.constraint_error

88: ghr_nre_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When hr_api.unique_integrity_violated Then
91: -- Unique integrity has been violated
92: ghr_nre_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When Others Then
95: Raise;
96: End insert_dml;

Line 135: Procedure pre_insert(p_rec in out ghr_nre_shd.g_rec_type) is

131: -- Internal Row Handler Use Only.
132: --
133: -- {End Of Comments}
134: -- ----------------------------------------------------------------------------
135: Procedure pre_insert(p_rec in out ghr_nre_shd.g_rec_type) is
136: --
137: l_proc varchar2(72) := g_package||'pre_insert';
138: --
139: Cursor C_Sel1 is select ghr_noac_remarks_s.nextval from sys.dual;

Line 187: p_effective_date in date,p_rec in ghr_nre_shd.g_rec_type) is

183: --
184: -- {End Of Comments}
185: -- ----------------------------------------------------------------------------
186: Procedure post_insert(
187: p_effective_date in date,p_rec in ghr_nre_shd.g_rec_type) is
188: --
189: l_proc varchar2(72) := g_package||'post_insert';
190: --
191: Begin

Line 234: p_rec in out ghr_nre_shd.g_rec_type

230: -- ----------------------------------------------------------------------------
231: Procedure ins
232: (
233: p_effective_date in date,
234: p_rec in out ghr_nre_shd.g_rec_type
235: ) is
236: --
237: l_proc varchar2(72) := g_package||'ins';
238: --

Line 277: l_rec ghr_nre_shd.g_rec_type;

273: p_date_to in date default null,
274: p_object_version_number out number
275: ) is
276: --
277: l_rec ghr_nre_shd.g_rec_type;
278: l_proc varchar2(72) := g_package||'ins';
279: --
280: Begin
281: hr_utility.set_location('Entering:'||l_proc, 5);

Line 287: ghr_nre_shd.convert_args

283: -- Call conversion function to turn arguments into the
284: -- p_rec structure.
285: --
286: l_rec :=
287: ghr_nre_shd.convert_args
288: (
289: null,
290: p_nature_of_action_id,
291: p_remark_id,