DBA Data[Home] [Help]

APPS.PER_ZA_AO_ASS_UPD dependencies on PER_ZA_AO_ASS_SHD

Line 54: Procedure update_dml(p_rec in out nocopy per_za_ao_ass_shd.g_za_rec_type) is

50: -- Internal Table Handler Use Only.
51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml(p_rec in out nocopy per_za_ao_ass_shd.g_za_rec_type) is
55: --
56: l_proc varchar2(72) := g_package||'update_dml';
57: --
58: Begin

Line 64: per_za_ao_ass_shd.g_api_dml := true; -- Set the api dml status

60: --
61: -- Increment the object version
62: --
63: --
64: per_za_ao_ass_shd.g_api_dml := true; -- Set the api dml status
65: --
66: -- Update the per_za_ao_assessments Row
67: --
68: update per_za_areas_of_assessment

Line 76: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

72: assessment_result = p_rec.assessment_result,
73: assessment_criteria = p_rec.assessment_criteria
74: where area_of_assessment_id = p_rec.area_of_assessment_id;
75: --
76: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
77: --
78: hr_utility.set_location(' Leaving:'||l_proc, 10);
79: --
80: Exception

Line 83: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

79: --
80: Exception
81: When hr_api.check_integrity_violated Then
82: -- A check constraint has been violated
83: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
84: per_za_ao_ass_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

Line 84: per_za_ao_ass_shd.constraint_error

80: Exception
81: When hr_api.check_integrity_violated Then
82: -- A check constraint has been violated
83: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
84: per_za_ao_ass_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: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

Line 88: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

84: per_za_ao_ass_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: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
89: per_za_ao_ass_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.unique_integrity_violated Then
92: -- Unique integrity has been violated

Line 89: per_za_ao_ass_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: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
89: per_za_ao_ass_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.unique_integrity_violated Then
92: -- Unique integrity has been violated
93: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

Line 93: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

89: per_za_ao_ass_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.unique_integrity_violated Then
92: -- Unique integrity has been violated
93: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
94: per_za_ao_ass_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When Others Then
97: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

Line 94: per_za_ao_ass_shd.constraint_error

90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.unique_integrity_violated Then
92: -- Unique integrity has been violated
93: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
94: per_za_ao_ass_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When Others Then
97: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
98: Raise;

Line 97: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status

93: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
94: per_za_ao_ass_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When Others Then
97: per_za_ao_ass_shd.g_api_dml := false; -- Unset the api dml status
98: Raise;
99: End update_dml;
100: --
101: -- ----------------------------------------------------------------------------

Line 133: Procedure pre_update(p_rec in per_za_ao_ass_shd.g_za_rec_type) is

129: -- Internal Table Handler Use Only.
130: --
131: -- {End Of Comments}
132: -- ----------------------------------------------------------------------------
133: Procedure pre_update(p_rec in per_za_ao_ass_shd.g_za_rec_type) is
134: --
135: l_proc varchar2(72) := g_package||'pre_update';
136: --
137: Begin

Line 175: Procedure post_update(p_rec in per_za_ao_ass_shd.g_za_rec_type) is

171: -- Internal Table Handler Use Only.
172: --
173: -- {End Of Comments}
174: -- ----------------------------------------------------------------------------
175: Procedure post_update(p_rec in per_za_ao_ass_shd.g_za_rec_type) is
176: --
177: l_proc varchar2(72) := g_package||'post_update';
178: --
179: Begin

Line 190: p_rec in out nocopy per_za_ao_ass_shd.g_za_rec_type,

186: -- |---------------------------------< upd >----------------------------------|
187: -- ----------------------------------------------------------------------------
188: Procedure upd
189: (
190: p_rec in out nocopy per_za_ao_ass_shd.g_za_rec_type,
191: p_validate in boolean default false
192: ) is
193: --
194: l_proc varchar2(72) := g_package||'upd';

Line 210: per_za_ao_ass_shd.lck

206: End If;
207: --
208: -- We must lock the row which we need to update.
209: --
210: per_za_ao_ass_shd.lck
211: (
212: p_rec.area_of_assessment_id
213: );
214: --

Line 265: l_rec per_za_ao_ass_shd.g_za_rec_type;

261: p_assessment_criteria in varchar2 default null,
262: p_validate in boolean default false
263: ) is
264: --
265: l_rec per_za_ao_ass_shd.g_za_rec_type;
266: l_proc varchar2(72) := g_package||'upd';
267: --
268: Begin
269: hr_utility.set_location('Entering:'||l_proc, 5);

Line 275: per_za_ao_ass_shd.convert_args

271: -- Call conversion function to turn arguments into the
272: -- l_rec structure.
273: --
274: l_rec :=
275: per_za_ao_ass_shd.convert_args
276: (
277: p_area_of_assessment_id,
278: p_assessment_id,
279: p_area_of_assessment,