DBA Data[Home] [Help]

APPS.PQP_AAD_INS dependencies on PQP_AAD_SHD

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

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

Line 112: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

108: p_rec.date_8233_signed,
109: p_rec.date_w4_signed
110: );
111: --
112: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
113: --
114: hr_utility.set_location(' Leaving:'||l_proc, 10);
115: Exception
116: When hr_api.check_integrity_violated Then

Line 118: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

114: hr_utility.set_location(' Leaving:'||l_proc, 10);
115: Exception
116: When hr_api.check_integrity_violated Then
117: -- A check constraint has been violated
118: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
119: pqp_aad_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When hr_api.parent_integrity_violated Then
122: -- Parent integrity has been violated

Line 119: pqp_aad_shd.constraint_error

115: Exception
116: When hr_api.check_integrity_violated Then
117: -- A check constraint has been violated
118: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
119: pqp_aad_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When hr_api.parent_integrity_violated Then
122: -- Parent integrity has been violated
123: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

Line 123: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

119: pqp_aad_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When hr_api.parent_integrity_violated Then
122: -- Parent integrity has been violated
123: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
124: pqp_aad_shd.constraint_error
125: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
126: When hr_api.unique_integrity_violated Then
127: -- Unique integrity has been violated

Line 124: pqp_aad_shd.constraint_error

120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When hr_api.parent_integrity_violated Then
122: -- Parent integrity has been violated
123: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
124: pqp_aad_shd.constraint_error
125: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
126: When hr_api.unique_integrity_violated Then
127: -- Unique integrity has been violated
128: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

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

124: pqp_aad_shd.constraint_error
125: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
126: When hr_api.unique_integrity_violated Then
127: -- Unique integrity has been violated
128: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
129: pqp_aad_shd.constraint_error
130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When Others Then
132: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

Line 129: pqp_aad_shd.constraint_error

125: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
126: When hr_api.unique_integrity_violated Then
127: -- Unique integrity has been violated
128: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
129: pqp_aad_shd.constraint_error
130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When Others Then
132: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
133: Raise;

Line 132: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status

128: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
129: pqp_aad_shd.constraint_error
130: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
131: When Others Then
132: pqp_aad_shd.g_api_dml := false; -- Unset the api dml status
133: Raise;
134: End insert_dml;
135: --
136: -- ----------------------------------------------------------------------------

Line 173: Procedure pre_insert(p_rec in out nocopy pqp_aad_shd.g_rec_type) is

169: -- Internal Row Handler Use Only.
170: --
171: -- {End Of Comments}
172: -- ----------------------------------------------------------------------------
173: Procedure pre_insert(p_rec in out nocopy pqp_aad_shd.g_rec_type) is
174: --
175: l_proc varchar2(72) := g_package||'pre_insert';
176: --
177: Cursor C_Sel1 is select pqp_analyzed_alien_data_s.nextval from sys.dual;

Line 225: p_effective_date in date,p_rec in pqp_aad_shd.g_rec_type) is

221: --
222: -- {End Of Comments}
223: -- ----------------------------------------------------------------------------
224: Procedure post_insert(
225: p_effective_date in date,p_rec in pqp_aad_shd.g_rec_type) is
226: --
227: l_proc varchar2(72) := g_package||'post_insert';
228: --
229: Begin

Line 285: p_rec in out nocopy pqp_aad_shd.g_rec_type

281: -- ----------------------------------------------------------------------------
282: Procedure ins
283: (
284: p_effective_date in date,
285: p_rec in out nocopy pqp_aad_shd.g_rec_type
286: ) is
287: --
288: l_proc varchar2(72) := g_package||'ins';
289: --

Line 341: l_rec pqp_aad_shd.g_rec_type;

337: p_date_8233_signed in date default null,
338: p_date_w4_signed in date default null
339: ) is
340: --
341: l_rec pqp_aad_shd.g_rec_type;
342: l_proc varchar2(72) := g_package||'ins';
343: --
344: Begin
345: hr_utility.set_location('Entering:'||l_proc, 5);

Line 351: pqp_aad_shd.convert_args

347: -- Call conversion function to turn arguments into the
348: -- p_rec structure.
349: --
350: l_rec :=
351: pqp_aad_shd.convert_args
352: (
353: null,
354: p_assignment_id,
355: p_data_source,