DBA Data[Home] [Help]

APPS.PER_GRS_INS dependencies on PER_GRS_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy per_grs_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_grs_shd.g_rec_type) is
54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin

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

Line 122: per_grs_shd.g_api_dml := false; -- Unset the api dml status

118: p_rec.attribute19,
119: p_rec.attribute20
120: );
121: --
122: per_grs_shd.g_api_dml := false; -- Unset the api dml status
123: --
124: hr_utility.set_location(' Leaving:'||l_proc, 10);
125: Exception
126: When hr_api.check_integrity_violated Then

Line 128: per_grs_shd.g_api_dml := false; -- Unset the api dml status

124: hr_utility.set_location(' Leaving:'||l_proc, 10);
125: Exception
126: When hr_api.check_integrity_violated Then
127: -- A check constraint has been violated
128: per_grs_shd.g_api_dml := false; -- Unset the api dml status
129: per_grs_shd.constraint_error
130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When hr_api.parent_integrity_violated Then
132: -- Parent integrity has been violated

Line 129: per_grs_shd.constraint_error

125: Exception
126: When hr_api.check_integrity_violated Then
127: -- A check constraint has been violated
128: per_grs_shd.g_api_dml := false; -- Unset the api dml status
129: per_grs_shd.constraint_error
130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When hr_api.parent_integrity_violated Then
132: -- Parent integrity has been violated
133: per_grs_shd.g_api_dml := false; -- Unset the api dml status

Line 133: per_grs_shd.g_api_dml := false; -- Unset the api dml status

129: per_grs_shd.constraint_error
130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When hr_api.parent_integrity_violated Then
132: -- Parent integrity has been violated
133: per_grs_shd.g_api_dml := false; -- Unset the api dml status
134: per_grs_shd.constraint_error
135: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
136: When hr_api.unique_integrity_violated Then
137: -- Unique integrity has been violated

Line 134: per_grs_shd.constraint_error

130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When hr_api.parent_integrity_violated Then
132: -- Parent integrity has been violated
133: per_grs_shd.g_api_dml := false; -- Unset the api dml status
134: per_grs_shd.constraint_error
135: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
136: When hr_api.unique_integrity_violated Then
137: -- Unique integrity has been violated
138: per_grs_shd.g_api_dml := false; -- Unset the api dml status

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

134: per_grs_shd.constraint_error
135: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
136: When hr_api.unique_integrity_violated Then
137: -- Unique integrity has been violated
138: per_grs_shd.g_api_dml := false; -- Unset the api dml status
139: per_grs_shd.constraint_error
140: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
141: When Others Then
142: per_grs_shd.g_api_dml := false; -- Unset the api dml status

Line 139: per_grs_shd.constraint_error

135: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
136: When hr_api.unique_integrity_violated Then
137: -- Unique integrity has been violated
138: per_grs_shd.g_api_dml := false; -- Unset the api dml status
139: per_grs_shd.constraint_error
140: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
141: When Others Then
142: per_grs_shd.g_api_dml := false; -- Unset the api dml status
143: Raise;

Line 142: per_grs_shd.g_api_dml := false; -- Unset the api dml status

138: per_grs_shd.g_api_dml := false; -- Unset the api dml status
139: per_grs_shd.constraint_error
140: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
141: When Others Then
142: per_grs_shd.g_api_dml := false; -- Unset the api dml status
143: Raise;
144: End insert_dml;
145: --
146: -- ----------------------------------------------------------------------------

Line 183: Procedure pre_insert(p_rec in out nocopy per_grs_shd.g_rec_type,

179: -- Internal Row Handler Use Only.
180: --
181: -- {End Of Comments}
182: -- ----------------------------------------------------------------------------
183: Procedure pre_insert(p_rec in out nocopy per_grs_shd.g_rec_type,
184: p_effective_date in date
185: ) is
186: --
187: l_proc varchar2(72) := g_package||'pre_insert';

Line 236: Procedure post_insert(p_rec in per_grs_shd.g_rec_type,

232: -- Internal Row Handler Use Only.
233: --
234: -- {End Of Comments}
235: -- ----------------------------------------------------------------------------
236: Procedure post_insert(p_rec in per_grs_shd.g_rec_type,
237: p_effective_date in date) is
238: --
239: l_proc varchar2(72) := g_package||'post_insert';
240: --

Line 301: p_rec in out nocopy per_grs_shd.g_rec_type

297: -- |---------------------------------< ins >----------------------------------|
298: -- ----------------------------------------------------------------------------
299: Procedure ins
300: (p_effective_date in date,
301: p_rec in out nocopy per_grs_shd.g_rec_type
302: ) is
303: --
304: l_proc varchar2(72) := g_package||'ins';
305: --

Line 366: l_rec per_grs_shd.g_rec_type;

362: p_attribute20 in varchar2 default null,
363: p_effective_date in date
364: ) is
365: --
366: l_rec per_grs_shd.g_rec_type;
367: l_proc varchar2(72) := g_package||'ins';
368: --
369: Begin
370: hr_utility.set_location('Entering:'||l_proc, 5);

Line 376: per_grs_shd.convert_args

372: -- Call conversion function to turn arguments into the
373: -- p_rec structure.
374: --
375: l_rec :=
376: per_grs_shd.convert_args
377: (
378: null,
379: p_collective_agreement_id,
380: null,