DBA Data[Home] [Help]

APPS.PER_GRA_INS dependencies on PER_GRA_SHD

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

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

Line 61: per_gra_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_gra_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_cagr_grades
64: --
65: insert into per_cagr_grades

Line 80: per_gra_shd.g_api_dml := false; -- Unset the api dml status

76: p_rec.sequence,
77: p_rec.object_version_number
78: );
79: --
80: per_gra_shd.g_api_dml := false; -- Unset the api dml status
81: --
82: hr_utility.set_location(' Leaving:'||l_proc, 10);
83: Exception
84: When hr_api.check_integrity_violated Then

Line 86: per_gra_shd.g_api_dml := false; -- Unset the api dml status

82: hr_utility.set_location(' Leaving:'||l_proc, 10);
83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: per_gra_shd.g_api_dml := false; -- Unset the api dml status
87: per_gra_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated

Line 87: per_gra_shd.constraint_error

83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: per_gra_shd.g_api_dml := false; -- Unset the api dml status
87: per_gra_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: per_gra_shd.g_api_dml := false; -- Unset the api dml status

Line 91: per_gra_shd.g_api_dml := false; -- Unset the api dml status

87: per_gra_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: per_gra_shd.g_api_dml := false; -- Unset the api dml status
92: per_gra_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated

Line 92: per_gra_shd.constraint_error

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

Line 96: per_gra_shd.g_api_dml := false; -- Unset the api dml status

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

Line 97: per_gra_shd.constraint_error

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

Line 100: per_gra_shd.g_api_dml := false; -- Unset the api dml status

96: per_gra_shd.g_api_dml := false; -- Unset the api dml status
97: per_gra_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When Others Then
100: per_gra_shd.g_api_dml := false; -- Unset the api dml status
101: Raise;
102: End insert_dml;
103: --
104: -- ----------------------------------------------------------------------------

Line 141: Procedure pre_insert(p_rec in out nocopy per_gra_shd.g_rec_type

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

Line 193: Procedure post_insert(p_rec in per_gra_shd.g_rec_type

189: -- Internal Row Handler Use Only.
190: --
191: -- {End Of Comments}
192: -- ----------------------------------------------------------------------------
193: Procedure post_insert(p_rec in per_gra_shd.g_rec_type
194: ,p_effective_date in date) is
195: --
196: l_proc varchar2(72) := g_package||'post_insert';
197: --

Line 237: p_rec in out nocopy per_gra_shd.g_rec_type

233: -- |---------------------------------< ins >----------------------------------|
234: -- ----------------------------------------------------------------------------
235: Procedure ins
236: (
237: p_rec in out nocopy per_gra_shd.g_rec_type
238: ,p_effective_date in date
239: ) is
240: --
241: l_proc varchar2(72) := g_package||'ins';

Line 282: l_rec per_gra_shd.g_rec_type;

278: p_object_version_number out nocopy number,
279: p_effective_date in date
280: ) is
281: --
282: l_rec per_gra_shd.g_rec_type;
283: l_proc varchar2(72) := g_package||'ins';
284: --
285: Begin
286: hr_utility.set_location('Entering:'||l_proc, 5);

Line 292: per_gra_shd.convert_args

288: -- Call conversion function to turn arguments into the
289: -- p_rec structure.
290: --
291: l_rec :=
292: per_gra_shd.convert_args
293: (
294: null,
295: p_cagr_grade_structure_id,
296: p_cagr_grade_def_id,