DBA Data[Home] [Help]

APPS.PQP_ATD_INS dependencies on PQP_ATD_SHD

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

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

Line 174: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

170: p_rec.current_analysis,
171: p_rec.forecast_income_code
172: );
173: --
174: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
175: --
176: hr_utility.set_location(' Leaving:'||l_proc, 10);
177: Exception
178: When hr_api.check_integrity_violated Then

Line 180: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

176: hr_utility.set_location(' Leaving:'||l_proc, 10);
177: Exception
178: When hr_api.check_integrity_violated Then
179: -- A check constraint has been violated
180: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
181: pqp_atd_shd.constraint_error
182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: When hr_api.parent_integrity_violated Then
184: -- Parent integrity has been violated

Line 181: pqp_atd_shd.constraint_error

177: Exception
178: When hr_api.check_integrity_violated Then
179: -- A check constraint has been violated
180: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
181: pqp_atd_shd.constraint_error
182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: When hr_api.parent_integrity_violated Then
184: -- Parent integrity has been violated
185: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

Line 185: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

181: pqp_atd_shd.constraint_error
182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: When hr_api.parent_integrity_violated Then
184: -- Parent integrity has been violated
185: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
186: pqp_atd_shd.constraint_error
187: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
188: When hr_api.unique_integrity_violated Then
189: -- Unique integrity has been violated

Line 186: pqp_atd_shd.constraint_error

182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: When hr_api.parent_integrity_violated Then
184: -- Parent integrity has been violated
185: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
186: pqp_atd_shd.constraint_error
187: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
188: When hr_api.unique_integrity_violated Then
189: -- Unique integrity has been violated
190: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

Line 190: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

186: pqp_atd_shd.constraint_error
187: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
188: When hr_api.unique_integrity_violated Then
189: -- Unique integrity has been violated
190: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
191: pqp_atd_shd.constraint_error
192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When Others Then
194: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

Line 191: pqp_atd_shd.constraint_error

187: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
188: When hr_api.unique_integrity_violated Then
189: -- Unique integrity has been violated
190: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
191: pqp_atd_shd.constraint_error
192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When Others Then
194: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
195: Raise;

Line 194: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

190: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
191: pqp_atd_shd.constraint_error
192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When Others Then
194: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
195: Raise;
196: End insert_dml;
197: --
198: -- ----------------------------------------------------------------------------

Line 235: Procedure pre_insert(p_rec in out nocopy pqp_atd_shd.g_rec_type) is

231: -- Internal Row Handler Use Only.
232: --
233: -- {End Of Comments}
234: -- ----------------------------------------------------------------------------
235: Procedure pre_insert(p_rec in out nocopy pqp_atd_shd.g_rec_type) is
236: --
237: l_proc varchar2(72) := g_package||'pre_insert';
238: --
239: Cursor C_Sel1 is select pqp_alien_transaction_data_s.nextval from sys.dual;

Line 287: p_effective_date in date,p_rec in pqp_atd_shd.g_rec_type) is

283: --
284: -- {End Of Comments}
285: -- ----------------------------------------------------------------------------
286: Procedure post_insert(
287: p_effective_date in date,p_rec in pqp_atd_shd.g_rec_type) is
288: --
289: l_proc varchar2(72) := g_package||'post_insert';
290: --
291: Begin

Line 378: p_rec in out nocopy pqp_atd_shd.g_rec_type

374: -- ----------------------------------------------------------------------------
375: Procedure ins
376: (
377: p_effective_date in date,
378: p_rec in out nocopy pqp_atd_shd.g_rec_type
379: ) is
380: --
381: l_proc varchar2(72) := g_package||'ins';
382: --

Line 475: l_rec pqp_atd_shd.g_rec_type;

471: p_current_analysis in varchar2 default null,
472: p_forecast_income_code in varchar2 default null
473: ) is
474: --
475: l_rec pqp_atd_shd.g_rec_type;
476: l_proc varchar2(72) := g_package||'ins';
477: --
478: Begin
479: hr_utility.set_location('Entering:'||l_proc, 5);

Line 485: pqp_atd_shd.convert_args

481: -- Call conversion function to turn arguments into the
482: -- p_rec structure.
483: --
484: l_rec :=
485: pqp_atd_shd.convert_args
486: (
487: null,
488: p_person_id,
489: p_data_source_type,