DBA Data[Home] [Help]

APPS.PER_PPC_INS dependencies on PER_PPC_SHD

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

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

Line 130: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

126: p_rec.attribute20,
127: p_rec.object_version_number
128: );
129: --
130: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: Exception
134: When hr_api.check_integrity_violated Then

Line 136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: Exception
134: When hr_api.check_integrity_violated Then
135: -- A check constraint has been violated
136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
137: per_ppc_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated

Line 137: per_ppc_shd.constraint_error

133: Exception
134: When hr_api.check_integrity_violated Then
135: -- A check constraint has been violated
136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
137: per_ppc_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

Line 141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

137: per_ppc_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
142: per_ppc_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated

Line 142: per_ppc_shd.constraint_error

138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
142: per_ppc_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated
146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

Line 146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

142: per_ppc_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated
146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
147: per_ppc_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When Others Then
150: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

Line 147: per_ppc_shd.constraint_error

143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated
146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
147: per_ppc_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When Others Then
150: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
151: Raise;

Line 150: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
147: per_ppc_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When Others Then
150: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
151: Raise;
152: End insert_dml;
153: --
154: -- ----------------------------------------------------------------------------

Line 191: Procedure pre_insert(p_rec in out nocopy per_ppc_shd.g_rec_type) is

187: -- Internal Table Handler Use Only.
188: --
189: -- {End Of Comments}
190: -- ----------------------------------------------------------------------------
191: Procedure pre_insert(p_rec in out nocopy per_ppc_shd.g_rec_type) is
192: --
193: l_proc varchar2(72) := g_package||'pre_insert';
194: --
195: Cursor C_Sel1 is select per_pay_proposal_components_s.nextval from sys.dual;

Line 243: (p_rec in per_ppc_shd.g_rec_type

239: --
240: -- {End Of Comments}
241: -- ----------------------------------------------------------------------------
242: Procedure post_insert
243: (p_rec in per_ppc_shd.g_rec_type
244: ,p_validation_strength in varchar2
245: )
246: is
247: --

Line 307: p_rec in out nocopy per_ppc_shd.g_rec_type,

303: -- |---------------------------------< ins >----------------------------------|
304: -- ----------------------------------------------------------------------------
305: Procedure ins
306: (
307: p_rec in out nocopy per_ppc_shd.g_rec_type,
308: p_validation_strength in varchar2 default 'STRONG',
309: p_validate in boolean default false
310: ) is
311: --

Line 397: l_rec per_ppc_shd.g_rec_type;

393: p_validation_strength in varchar2 default 'STRONG',
394: p_validate in boolean default false
395: ) is
396: --
397: l_rec per_ppc_shd.g_rec_type;
398: l_proc varchar2(72) := g_package||'ins';
399: --
400: Begin
401: hr_utility.set_location('Entering:'||l_proc, 5);

Line 407: per_ppc_shd.convert_args

403: -- Call conversion function to turn arguments into the
404: -- p_rec structure.
405: --
406: l_rec :=
407: per_ppc_shd.convert_args
408: (
409: null,
410: p_pay_proposal_id,
411: p_business_group_id,