DBA Data[Home] [Help]

APPS.GHR_PRE_INS dependencies on GHR_PRE_SHD

Line 47: Procedure insert_dml(p_rec in out NOCOPY ghr_pre_shd.g_rec_type) is

43: -- Internal Table Handler Use Only.
44: --
45: -- {End Of Comments}
46: -- ----------------------------------------------------------------------------
47: Procedure insert_dml(p_rec in out NOCOPY ghr_pre_shd.g_rec_type) is
48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin

Line 87: ghr_pre_shd.constraint_error

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

Line 91: ghr_pre_shd.constraint_error

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

Line 95: ghr_pre_shd.constraint_error

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

Line 138: Procedure pre_insert(p_rec in out NOCOPY ghr_pre_shd.g_rec_type) is

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

Line 189: Procedure post_insert(p_rec in ghr_pre_shd.g_rec_type) is

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

Line 228: p_rec in out NOCOPY ghr_pre_shd.g_rec_type,

224: -- |---------------------------------< ins >----------------------------------|
225: -- ----------------------------------------------------------------------------
226: Procedure ins
227: (
228: p_rec in out NOCOPY ghr_pre_shd.g_rec_type,
229: p_validate in boolean default false
230: ) is
231: --
232: l_proc varchar2(72) := g_package||'ins';

Line 297: l_rec ghr_pre_shd.g_rec_type;

293: p_validate in boolean default false
294: ) is
295: --
296:
297: l_rec ghr_pre_shd.g_rec_type;
298: l_proc varchar2(72) := g_package||'ins';
299: --
300: Begin
301: hr_utility.set_location('Entering:'||l_proc, 5);

Line 307: ghr_pre_shd.convert_args

303: -- Call conversion function to turn arguments into the
304: -- p_rec structure.
305: --
306: l_rec :=
307: ghr_pre_shd.convert_args
308: (
309: null,
310: p_pa_request_id,
311: p_remark_id,