DBA Data[Home] [Help]

APPS.PER_CEO_INS dependencies on PER_CEO_SHD

Line 76: (p_rec in out nocopy per_ceo_shd.g_rec_type

72: --
73: -- {End Of Comments}
74: -- ----------------------------------------------------------------------------
75: Procedure insert_dml
76: (p_rec in out nocopy per_ceo_shd.g_rec_type
77: ) is
78: --
79: l_proc varchar2(72) := g_package||'insert_dml';
80: --

Line 85: per_ceo_shd.g_api_dml := true; -- Set the api dml status

81: Begin
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: per_ceo_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_comp_element_outcomes
88: --
89: insert into per_comp_element_outcomes

Line 190: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

186: ,p_rec.information20
187: ,p_rec.object_version_number
188: );
189: --
190: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
191: --
192: hr_utility.set_location(' Leaving:'||l_proc, 10);
193: Exception
194: When hr_api.check_integrity_violated Then

Line 196: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

192: hr_utility.set_location(' Leaving:'||l_proc, 10);
193: Exception
194: When hr_api.check_integrity_violated Then
195: -- A check constraint has been violated
196: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
197: per_ceo_shd.constraint_error
198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When hr_api.parent_integrity_violated Then
200: -- Parent integrity has been violated

Line 197: per_ceo_shd.constraint_error

193: Exception
194: When hr_api.check_integrity_violated Then
195: -- A check constraint has been violated
196: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
197: per_ceo_shd.constraint_error
198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When hr_api.parent_integrity_violated Then
200: -- Parent integrity has been violated
201: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

Line 201: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

197: per_ceo_shd.constraint_error
198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When hr_api.parent_integrity_violated Then
200: -- Parent integrity has been violated
201: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
202: per_ceo_shd.constraint_error
203: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
204: When hr_api.unique_integrity_violated Then
205: -- Unique integrity has been violated

Line 202: per_ceo_shd.constraint_error

198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When hr_api.parent_integrity_violated Then
200: -- Parent integrity has been violated
201: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
202: per_ceo_shd.constraint_error
203: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
204: When hr_api.unique_integrity_violated Then
205: -- Unique integrity has been violated
206: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

Line 206: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

202: per_ceo_shd.constraint_error
203: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
204: When hr_api.unique_integrity_violated Then
205: -- Unique integrity has been violated
206: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
207: per_ceo_shd.constraint_error
208: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
209: When Others Then
210: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

Line 207: per_ceo_shd.constraint_error

203: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
204: When hr_api.unique_integrity_violated Then
205: -- Unique integrity has been violated
206: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
207: per_ceo_shd.constraint_error
208: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
209: When Others Then
210: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
211: Raise;

Line 210: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

206: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
207: per_ceo_shd.constraint_error
208: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
209: When Others Then
210: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
211: Raise;
212: End insert_dml;
213: --
214: -- ----------------------------------------------------------------------------

Line 252: (p_rec in out nocopy per_ceo_shd.g_rec_type

248: --
249: -- {End Of Comments}
250: -- ----------------------------------------------------------------------------
251: Procedure pre_insert
252: (p_rec in out nocopy per_ceo_shd.g_rec_type
253: ) is
254: --
255: Cursor C_Sel1 is
256: select per_comp_element_outcomes_s.nextval

Line 342: ,p_rec in per_ceo_shd.g_rec_type

338: -- {End Of Comments}
339: -- ----------------------------------------------------------------------------
340: Procedure post_insert
341: (p_effective_date in date
342: ,p_rec in per_ceo_shd.g_rec_type
343: ) is
344: --
345: l_proc varchar2(72) := g_package||'post_insert';
346: --

Line 469: ,p_rec in out nocopy per_ceo_shd.g_rec_type

465: -- |---------------------------------< ins >----------------------------------|
466: -- ----------------------------------------------------------------------------
467: Procedure ins
468: (p_effective_date in date
469: ,p_rec in out nocopy per_ceo_shd.g_rec_type
470: ) is
471: --
472: l_proc varchar2(72) := g_package||'ins';
473: --

Line 565: l_rec per_ceo_shd.g_rec_type;

561: ,p_comp_element_outcome_id out nocopy number
562: ,p_object_version_number out nocopy number
563: ) is
564: --
565: l_rec per_ceo_shd.g_rec_type;
566: l_proc varchar2(72) := g_package||'ins';
567: --
568: Begin
569: hr_utility.set_location('Entering:'||l_proc, 5);

Line 575: per_ceo_shd.convert_args

571: -- Call conversion function to turn arguments into the
572: -- p_rec structure.
573: --
574: l_rec :=
575: per_ceo_shd.convert_args
576: (null
577: ,p_competence_element_id
578: ,p_outcome_id
579: ,p_date_from