DBA Data[Home] [Help]

APPS.PQP_ERG_INS dependencies on PQP_ERG_SHD

Line 102: (p_rec in out nocopy pqp_erg_shd.g_rec_type

98: --
99: -- {End Of Comments}
100: -- ----------------------------------------------------------------------------
101: Procedure insert_dml
102: (p_rec in out nocopy pqp_erg_shd.g_rec_type
103: ) is
104: --
105: l_proc varchar2(72) := g_package||'insert_dml';
106: --

Line 111: pqp_erg_shd.g_api_dml := true; -- Set the api dml status

107: Begin
108: hr_utility.set_location('Entering:'||l_proc, 5);
109: p_rec.object_version_number := 1; -- Initialise the object version
110: --
111: pqp_erg_shd.g_api_dml := true; -- Set the api dml status
112: --
113: -- Insert the row into: pqp_exception_report_groups
114: --
115: insert into pqp_exception_report_groups

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

134: ,p_rec.object_version_number
135: ,p_rec.output_format
136: );
137: --
138: pqp_erg_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: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
145: pqp_erg_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: pqp_erg_shd.constraint_error

141: Exception
142: When hr_api.check_integrity_violated Then
143: -- A check constraint has been violated
144: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
145: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status

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

145: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
150: pqp_erg_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: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
150: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status

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

150: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
155: pqp_erg_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When Others Then
158: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status

Line 155: pqp_erg_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: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
155: pqp_erg_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When Others Then
158: pqp_erg_shd.g_api_dml := false; -- Unset the api dml status
159: Raise;

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

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

Line 200: (p_rec in out nocopy pqp_erg_shd.g_rec_type

196: --
197: -- {End Of Comments}
198: -- ----------------------------------------------------------------------------
199: Procedure pre_insert
200: (p_rec in out nocopy pqp_erg_shd.g_rec_type
201: ) is
202: --
203: l_proc varchar2(72) := g_package||'pre_insert';
204: --

Line 253: (p_rec in pqp_erg_shd.g_rec_type

249: --
250: -- {End Of Comments}
251: -- ----------------------------------------------------------------------------
252: Procedure post_insert
253: (p_rec in pqp_erg_shd.g_rec_type
254: ) is
255: --
256: l_proc varchar2(72) := g_package||'post_insert';
257: --

Line 298: (p_rec in out nocopy pqp_erg_shd.g_rec_type

294: -- ----------------------------------------------------------------------------
295: -- |---------------------------------< ins >----------------------------------|
296: -- ----------------------------------------------------------------------------
297: Procedure ins
298: (p_rec in out nocopy pqp_erg_shd.g_rec_type
299: ) is
300: --
301: l_proc varchar2(72) := g_package||'ins';
302: --

Line 344: l_rec pqp_erg_shd.g_rec_type;

340: ,p_object_version_number out nocopy number
341: ,p_output_format in varchar2
342: ) is
343: --
344: l_rec pqp_erg_shd.g_rec_type;
345: l_proc varchar2(72) := g_package||'ins';
346: --
347: Begin
348: hr_utility.set_location('Entering:'||l_proc, 5);

Line 354: pqp_erg_shd.convert_args

350: -- Call conversion function to turn arguments into the
351: -- p_rec structure.
352: --
353: l_rec :=
354: pqp_erg_shd.convert_args
355: (null
356: ,p_exception_group_name
357: ,p_exception_report_id
358: ,p_legislation_code