DBA Data[Home] [Help]

APPS.PAY_PGP_INS dependencies on PAY_PGP_SHD

Line 50: Procedure insert_dml(p_rec in out pay_pgp_shd.g_rec_type) is

46: -- Internal Table Handler Use Only.
47: --
48: -- {End Of Comments}
49: -- ----------------------------------------------------------------------------
50: Procedure insert_dml(p_rec in out pay_pgp_shd.g_rec_type) is
51: --
52: l_proc varchar2(72) := g_package||'insert_dml';
53: --
54: Begin

Line 57: pay_pgp_shd.g_api_dml := true; -- Set the api dml status

53: --
54: Begin
55: hr_utility.set_location('Entering:'||l_proc, 5);
56: --
57: pay_pgp_shd.g_api_dml := true; -- Set the api dml status
58: --
59: -- Insert the row into: pay_people_groups
60: --
61: insert into pay_people_groups

Line 140: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

136: p_rec.segment29,
137: p_rec.segment30
138: );
139: --
140: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
141: --
142: hr_utility.set_location(' Leaving:'||l_proc, 10);
143: Exception
144: When hr_api.check_integrity_violated Then

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

142: hr_utility.set_location(' Leaving:'||l_proc, 10);
143: Exception
144: When hr_api.check_integrity_violated Then
145: -- A check constraint has been violated
146: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
147: pay_pgp_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When hr_api.parent_integrity_violated Then
150: -- Parent integrity has been violated

Line 147: pay_pgp_shd.constraint_error

143: Exception
144: When hr_api.check_integrity_violated Then
145: -- A check constraint has been violated
146: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
147: pay_pgp_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When hr_api.parent_integrity_violated Then
150: -- Parent integrity has been violated
151: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

Line 151: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

147: pay_pgp_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When hr_api.parent_integrity_violated Then
150: -- Parent integrity has been violated
151: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
152: pay_pgp_shd.constraint_error
153: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
154: When hr_api.unique_integrity_violated Then
155: -- Unique integrity has been violated

Line 152: pay_pgp_shd.constraint_error

148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When hr_api.parent_integrity_violated Then
150: -- Parent integrity has been violated
151: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
152: pay_pgp_shd.constraint_error
153: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
154: When hr_api.unique_integrity_violated Then
155: -- Unique integrity has been violated
156: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

Line 156: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

152: pay_pgp_shd.constraint_error
153: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
154: When hr_api.unique_integrity_violated Then
155: -- Unique integrity has been violated
156: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
157: pay_pgp_shd.constraint_error
158: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
159: When Others Then
160: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

Line 157: pay_pgp_shd.constraint_error

153: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
154: When hr_api.unique_integrity_violated Then
155: -- Unique integrity has been violated
156: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
157: pay_pgp_shd.constraint_error
158: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
159: When Others Then
160: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status
161: Raise;

Line 160: pay_pgp_shd.g_api_dml := false; -- Unset the api dml status

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

Line 201: Procedure pre_insert(p_rec in out pay_pgp_shd.g_rec_type) is

197: -- Internal Table Handler Use Only.
198: --
199: -- {End Of Comments}
200: -- ----------------------------------------------------------------------------
201: Procedure pre_insert(p_rec in out pay_pgp_shd.g_rec_type) is
202: --
203: l_proc varchar2(72) := g_package||'pre_insert';
204: --
205: Cursor C_Sel1 is select pay_people_groups_s.nextval from sys.dual;

Line 299: Procedure post_insert(p_rec in pay_pgp_shd.g_rec_type) is

295: -- Internal Table Handler Use Only.
296: --
297: -- {End Of Comments}
298: -- ----------------------------------------------------------------------------
299: Procedure post_insert(p_rec in pay_pgp_shd.g_rec_type) is
300: --
301: l_proc varchar2(72) := g_package||'post_insert';
302: --
303: Begin

Line 314: p_rec in out pay_pgp_shd.g_rec_type,

310: -- |---------------------------------< ins >----------------------------------|
311: -- ----------------------------------------------------------------------------
312: Procedure ins
313: (
314: p_rec in out pay_pgp_shd.g_rec_type,
315: p_validate in boolean default false
316: ) is
317: --
318: l_proc varchar2(72) := g_package||'ins';

Line 409: l_rec pay_pgp_shd.g_rec_type;

405: p_segment30 in varchar2 default null,
406: p_validate in boolean default false
407: ) is
408: --
409: l_rec pay_pgp_shd.g_rec_type;
410: l_proc varchar2(72) := g_package||'ins';
411: --
412: Begin
413: hr_utility.set_location('Entering:'||l_proc, 5);

Line 419: pay_pgp_shd.convert_args

415: -- Call conversion function to turn arguments into the
416: -- p_rec structure.
417: --
418: l_rec :=
419: pay_pgp_shd.convert_args
420: (
421: null,
422: null,
423: p_id_flex_num,

Line 524: pay_pgp_shd.segment_combination_check

520: hr_utility.set_location('Entering:'||l_proc, 5);
521: --
522: -- determine if a people group combination exists
523: --
524: pay_pgp_shd.segment_combination_check
525: (p_segment1 => p_segment1,
526: p_segment2 => p_segment2,
527: p_segment3 => p_segment3,
528: p_segment4 => p_segment4,