DBA Data[Home] [Help]

APPS.PER_SHT_INS dependencies on PER_SHT_SHD

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

Line 142: per_sht_shd.constraint_error

138: hr_utility.set_location(' Leaving:'||l_proc, 10);
139: Exception
140: When hr_api.check_integrity_violated Then
141: -- A check constraint has been violated
142: per_sht_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.parent_integrity_violated Then
145: -- Parent integrity has been violated
146: per_sht_shd.constraint_error

Line 146: per_sht_shd.constraint_error

142: per_sht_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.parent_integrity_violated Then
145: -- Parent integrity has been violated
146: per_sht_shd.constraint_error
147: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
148: When hr_api.unique_integrity_violated Then
149: -- Unique integrity has been violated
150: per_sht_shd.constraint_error

Line 150: per_sht_shd.constraint_error

146: per_sht_shd.constraint_error
147: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
148: When hr_api.unique_integrity_violated Then
149: -- Unique integrity has been violated
150: per_sht_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When Others Then
153: Raise;
154: End insert_dml;

Line 193: Procedure pre_insert(p_rec in out nocopy per_sht_shd.g_rec_type) is

189: -- Internal Row Handler Use Only.
190: --
191: -- {End Of Comments}
192: -- ----------------------------------------------------------------------------
193: Procedure pre_insert(p_rec in out nocopy per_sht_shd.g_rec_type) is
194: --
195: l_proc varchar2(72) := g_package||'pre_insert';
196: --
197: Cursor C_Sel1 is select per_shared_types_s.nextval from sys.dual;

Line 245: p_effective_date in date,p_rec in per_sht_shd.g_rec_type) is

241: --
242: -- {End Of Comments}
243: -- ----------------------------------------------------------------------------
244: Procedure post_insert(
245: p_effective_date in date,p_rec in per_sht_shd.g_rec_type) is
246: --
247: l_proc varchar2(72) := g_package||'post_insert';
248: --
249: Begin

Line 322: p_rec in out nocopy per_sht_shd.g_rec_type

318: -- ----------------------------------------------------------------------------
319: Procedure ins
320: (
321: p_effective_date in date,
322: p_rec in out nocopy per_sht_shd.g_rec_type
323: ) is
324: --
325: l_proc varchar2(72) := g_package||'ins';
326: --

Line 395: l_rec per_sht_shd.g_rec_type;

391: p_object_version_number out nocopy number,
392: p_lookup_type in varchar2
393: ) is
394: --
395: l_rec per_sht_shd.g_rec_type;
396: l_proc varchar2(72) := g_package||'ins';
397: --
398: Begin
399: hr_utility.set_location('Entering:'||l_proc, 5);

Line 405: per_sht_shd.convert_args

401: -- Call conversion function to turn arguments into the
402: -- p_rec structure.
403: --
404: l_rec :=
405: per_sht_shd.convert_args
406: (
407: null,
408: p_business_group_id,
409: p_shared_type_name,