DBA Data[Home] [Help]

APPS.PER_STT_INS dependencies on PER_STT_SHD

Line 49: Procedure insert_dml(p_rec in out nocopy per_stt_shd.g_rec_type) is

45: -- Internal Row Handler Use Only.
46: --
47: -- {End Of Comments}
48: -- ----------------------------------------------------------------------------
49: Procedure insert_dml(p_rec in out nocopy per_stt_shd.g_rec_type) is
50: --
51: l_proc varchar2(72) := g_package||'insert_dml';
52: --
53: Begin

Line 91: per_stt_shd.constraint_error

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

Line 95: per_stt_shd.constraint_error

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

Line 99: per_stt_shd.constraint_error

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

Line 142: Procedure pre_insert(p_rec in out nocopy per_stt_shd.g_rec_type,

138: -- Internal Row Handler Use Only.
139: --
140: -- {End Of Comments}
141: -- ----------------------------------------------------------------------------
142: Procedure pre_insert(p_rec in out nocopy per_stt_shd.g_rec_type,
143: p_shared_type_id in number ) is
144: --
145: l_proc varchar2(72) := g_package||'pre_insert';
146: --

Line 187: Procedure post_insert(p_rec in per_stt_shd.g_rec_type) is

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

Line 228: p_rec in out nocopy per_stt_shd.g_rec_type ,

224: -- |---------------------------------< ins >----------------------------------|
225: -- ----------------------------------------------------------------------------
226: Procedure ins
227: (
228: p_rec in out nocopy per_stt_shd.g_rec_type ,
229: p_shared_type_id in number
230: ) is
231: --
232: l_proc varchar2(72) := g_package||'ins';

Line 266: l_rec per_stt_shd.g_rec_type;

262: p_source_lang in varchar2,
263: p_shared_type_name in varchar2
264: ) is
265: --
266: l_rec per_stt_shd.g_rec_type;
267: l_proc varchar2(72) := g_package||'ins';
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);

Line 276: per_stt_shd.convert_args

272: -- Call conversion function to turn arguments into the
273: -- p_rec structure.
274: --
275: l_rec :=
276: per_stt_shd.convert_args
277: (
278: null,
279: p_language,
280: p_source_lang,