DBA Data[Home] [Help]

APPS.HR_PAE_INS dependencies on HR_PAE_SHD

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

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

Line 84: hr_pae_shd.g_api_dml := false; -- Unset the api dml status

80: p_rec.exception_category,
81: p_rec.object_version_number
82: );
83: --
84: hr_pae_shd.g_api_dml := false; -- Unset the api dml status
85: --
86: hr_utility.set_location(' Leaving:'||l_proc, 10);
87: Exception
88: When hr_api.check_integrity_violated Then

Line 90: hr_pae_shd.g_api_dml := false; -- Unset the api dml status

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

Line 91: hr_pae_shd.constraint_error

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

Line 95: hr_pae_shd.g_api_dml := false; -- Unset the api dml status

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

Line 96: hr_pae_shd.constraint_error

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

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

96: hr_pae_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: hr_pae_shd.g_api_dml := false; -- Unset the api dml status
101: hr_pae_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: hr_pae_shd.g_api_dml := false; -- Unset the api dml status

Line 101: hr_pae_shd.constraint_error

97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: hr_pae_shd.g_api_dml := false; -- Unset the api dml status
101: hr_pae_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: hr_pae_shd.g_api_dml := false; -- Unset the api dml status
105: Raise;

Line 104: hr_pae_shd.g_api_dml := false; -- Unset the api dml status

100: hr_pae_shd.g_api_dml := false; -- Unset the api dml status
101: hr_pae_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: hr_pae_shd.g_api_dml := false; -- Unset the api dml status
105: Raise;
106: End insert_dml;
107: --
108: -- ----------------------------------------------------------------------------

Line 145: Procedure pre_insert(p_rec in out hr_pae_shd.g_rec_type) is

141: -- Internal Table Handler Use Only.
142: --
143: -- {End Of Comments}
144: -- ----------------------------------------------------------------------------
145: Procedure pre_insert(p_rec in out hr_pae_shd.g_rec_type) is
146: --
147: l_proc varchar2(72) := g_package||'pre_insert';
148: --
149: Cursor C_Sel1 is select hr_pattern_exceptions_s.nextval from sys.dual;

Line 196: Procedure post_insert(p_rec in hr_pae_shd.g_rec_type) is

192: -- Internal Table Handler Use Only.
193: --
194: -- {End Of Comments}
195: -- ----------------------------------------------------------------------------
196: Procedure post_insert(p_rec in hr_pae_shd.g_rec_type) is
197: --
198: l_proc varchar2(72) := g_package||'post_insert';
199: --
200: Begin

Line 211: p_rec in out hr_pae_shd.g_rec_type,

207: -- |---------------------------------< ins >----------------------------------|
208: -- ----------------------------------------------------------------------------
209: Procedure ins
210: (
211: p_rec in out hr_pae_shd.g_rec_type,
212: p_validate in boolean default false
213: ) is
214: --
215: l_proc varchar2(72) := g_package||'ins';

Line 276: l_rec hr_pae_shd.g_rec_type;

272: p_exception_category in varchar2 default null,
273: p_validate in boolean default false
274: ) is
275: --
276: l_rec hr_pae_shd.g_rec_type;
277: l_proc varchar2(72) := g_package||'ins';
278: --
279: Begin
280: hr_utility.set_location('Entering:'||l_proc, 5);

Line 286: hr_pae_shd.convert_args

282: -- Call conversion function to turn arguments into the
283: -- p_rec structure.
284: --
285: l_rec :=
286: hr_pae_shd.convert_args
287: (
288: null,
289: p_pattern_id,
290: p_exception_name,