DBA Data[Home] [Help]

APPS.PQP_DET_INS dependencies on PQP_DET_SHD

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

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

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

118: p_rec.current_analysis,
119: p_rec.forecast_income_code
120: );
121: --
122: pqp_det_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: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
129: pqp_det_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: pqp_det_shd.constraint_error

125: Exception
126: When hr_api.check_integrity_violated Then
127: -- A check constraint has been violated
128: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
129: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status

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

129: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
134: pqp_det_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: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
134: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status

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

134: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
139: pqp_det_shd.constraint_error
140: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
141: When Others Then
142: pqp_det_shd.g_api_dml := false; -- Unset the api dml status

Line 139: pqp_det_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: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
139: pqp_det_shd.constraint_error
140: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
141: When Others Then
142: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
143: Raise;

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

138: pqp_det_shd.g_api_dml := false; -- Unset the api dml status
139: pqp_det_shd.constraint_error
140: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
141: When Others Then
142: pqp_det_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 pqp_det_shd.g_rec_type) is

179: -- Internal Row Handler Use Only.
180: --
181: -- {End Of Comments}
182: -- ----------------------------------------------------------------------------
183: Procedure pre_insert(p_rec in out nocopy pqp_det_shd.g_rec_type) is
184: --
185: l_proc varchar2(72) := g_package||'pre_insert';
186: --
187: Cursor C_Sel1 is select pqp_analyzed_alien_details_s.nextval from sys.dual;

Line 235: p_effective_date in date,p_rec in pqp_det_shd.g_rec_type) is

231: --
232: -- {End Of Comments}
233: -- ----------------------------------------------------------------------------
234: Procedure post_insert(
235: p_effective_date in date,p_rec in pqp_det_shd.g_rec_type) is
236: --
237: l_proc varchar2(72) := g_package||'post_insert';
238: --
239: Begin

Line 300: p_rec in out nocopy pqp_det_shd.g_rec_type

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

Line 361: l_rec pqp_det_shd.g_rec_type;

357: p_current_analysis in varchar2 default null,
358: p_forecast_income_code in varchar2 default null
359: ) is
360: --
361: l_rec pqp_det_shd.g_rec_type;
362: l_proc varchar2(72) := g_package||'ins';
363: --
364: Begin
365: hr_utility.set_location('Entering:'||l_proc, 5);

Line 371: pqp_det_shd.convert_args

367: -- Call conversion function to turn arguments into the
368: -- p_rec structure.
369: --
370: l_rec :=
371: pqp_det_shd.convert_args
372: (
373: null,
374: p_analyzed_data_id,
375: p_income_code,