DBA Data[Home] [Help]

APPS.PER_VGR_INS dependencies on PER_VGR_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy per_vgr_shd.g_rec_type) is

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

Line 61: per_vgr_shd.g_api_dml := true; -- Set the api dml status

57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_vgr_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_valid_grades
64: --
65: insert into per_valid_grades

Line 138: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

134: p_rec.attribute20,
135: p_rec.object_version_number
136: );
137: --
138: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
139: --
140: hr_utility.set_location(' Leaving:'||l_proc, 10);
141: Exception
142: When hr_api.check_integrity_violated Then

Line 144: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

140: hr_utility.set_location(' Leaving:'||l_proc, 10);
141: Exception
142: When hr_api.check_integrity_violated Then
143: -- A check constraint has been violated
144: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
145: per_vgr_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated

Line 145: per_vgr_shd.constraint_error

141: Exception
142: When hr_api.check_integrity_violated Then
143: -- A check constraint has been violated
144: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
145: per_vgr_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated
149: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

Line 149: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

145: per_vgr_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated
149: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
150: per_vgr_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.unique_integrity_violated Then
153: -- Unique integrity has been violated

Line 150: per_vgr_shd.constraint_error

146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated
149: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
150: per_vgr_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.unique_integrity_violated Then
153: -- Unique integrity has been violated
154: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

Line 154: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

150: per_vgr_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.unique_integrity_violated Then
153: -- Unique integrity has been violated
154: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
155: per_vgr_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When Others Then
158: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

Line 155: per_vgr_shd.constraint_error

151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.unique_integrity_violated Then
153: -- Unique integrity has been violated
154: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
155: per_vgr_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When Others Then
158: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
159: Raise;

Line 158: per_vgr_shd.g_api_dml := false; -- Unset the api dml status

154: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
155: per_vgr_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When Others Then
158: per_vgr_shd.g_api_dml := false; -- Unset the api dml status
159: Raise;
160: End insert_dml;
161: --
162: -- ----------------------------------------------------------------------------

Line 199: Procedure pre_insert(p_rec in out nocopy per_vgr_shd.g_rec_type) is

195: -- Internal Table Handler Use Only.
196: --
197: -- {End Of Comments}
198: -- ----------------------------------------------------------------------------
199: Procedure pre_insert(p_rec in out nocopy per_vgr_shd.g_rec_type) is
200: --
201: l_proc varchar2(72) := g_package||'pre_insert';
202: --
203: Cursor C_Sel1 is select per_valid_grades_s.nextval from sys.dual;

Line 250: Procedure post_insert(p_rec in per_vgr_shd.g_rec_type,

246: -- Internal Table Handler Use Only.
247: --
248: -- {End Of Comments}
249: -- ----------------------------------------------------------------------------
250: Procedure post_insert(p_rec in per_vgr_shd.g_rec_type,
251: p_effective_date in date) is -- Effective_date added for Bug# 1760707
252: --
253: l_proc varchar2(72) := g_package||'post_insert';
254: --

Line 314: p_rec in out nocopy per_vgr_shd.g_rec_type,

310: -- |---------------------------------< ins >----------------------------------|
311: -- ----------------------------------------------------------------------------
312: Procedure ins
313: (
314: p_rec in out nocopy per_vgr_shd.g_rec_type,
315: p_validate in boolean default false,
316: p_effective_date in date -- Added for Bug# 1760707
317: ) is
318: --

Line 408: l_rec per_vgr_shd.g_rec_type;

404: p_object_version_number out nocopy number,
405: p_validate in boolean default false
406: ) is
407: --
408: l_rec per_vgr_shd.g_rec_type;
409: l_proc varchar2(72) := g_package||'ins';
410: --
411: Begin
412: hr_utility.set_location('Entering:'||l_proc, 5);

Line 418: per_vgr_shd.convert_args

414: -- Call conversion function to turn arguments into the
415: -- p_rec structure.
416: --
417: l_rec :=
418: per_vgr_shd.convert_args
419: (
420: null,
421: p_business_group_id,
422: p_grade_id,