DBA Data[Home] [Help]

APPS.PAY_PYR_INS dependencies on PAY_PYR_SHD

Line 76: (p_rec IN OUT NOCOPY pay_pyr_shd.g_rec_type

72: --
73: -- {END Of Comments}
74: -- ----------------------------------------------------------------------------
75: PROCEDURE insert_dml
76: (p_rec IN OUT NOCOPY pay_pyr_shd.g_rec_type
77: ) IS
78: --
79: l_proc VARCHAR2(72) := g_package||'insert_dml';
80: --

Line 85: pay_pyr_shd.g_api_dml := TRUE; -- Set the api dml status

81: BEGIN
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: pay_pyr_shd.g_api_dml := TRUE; -- Set the api dml status
86: --
87: -- Insert the row INTO: pay_rates
88: --
89: insert INTO pay_rates

Line 164: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

160: ,p_rec.asg_rate_type
161: ,p_rec.object_version_number
162: );
163: --
164: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
165: --
166: hr_utility.set_location(' Leaving:'||l_proc, 10);
167: EXCEPTION
168: WHEN hr_api.check_integrity_violated THEN

Line 170: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

166: hr_utility.set_location(' Leaving:'||l_proc, 10);
167: EXCEPTION
168: WHEN hr_api.check_integrity_violated THEN
169: -- A check constraint has been violated
170: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
171: pay_pyr_shd.constraint_error
172: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
173: WHEN hr_api.parent_integrity_violated THEN
174: -- Parent integrity has been violated

Line 171: pay_pyr_shd.constraint_error

167: EXCEPTION
168: WHEN hr_api.check_integrity_violated THEN
169: -- A check constraint has been violated
170: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
171: pay_pyr_shd.constraint_error
172: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
173: WHEN hr_api.parent_integrity_violated THEN
174: -- Parent integrity has been violated
175: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

Line 175: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

171: pay_pyr_shd.constraint_error
172: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
173: WHEN hr_api.parent_integrity_violated THEN
174: -- Parent integrity has been violated
175: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
176: pay_pyr_shd.constraint_error
177: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
178: WHEN hr_api.unique_integrity_violated THEN
179: -- Unique integrity has been violated

Line 176: pay_pyr_shd.constraint_error

172: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
173: WHEN hr_api.parent_integrity_violated THEN
174: -- Parent integrity has been violated
175: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
176: pay_pyr_shd.constraint_error
177: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
178: WHEN hr_api.unique_integrity_violated THEN
179: -- Unique integrity has been violated
180: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

Line 180: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

176: pay_pyr_shd.constraint_error
177: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
178: WHEN hr_api.unique_integrity_violated THEN
179: -- Unique integrity has been violated
180: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
181: pay_pyr_shd.constraint_error
182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: WHEN Others THEN
184: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

Line 181: pay_pyr_shd.constraint_error

177: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
178: WHEN hr_api.unique_integrity_violated THEN
179: -- Unique integrity has been violated
180: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
181: pay_pyr_shd.constraint_error
182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: WHEN Others THEN
184: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
185: Raise;

Line 184: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status

180: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
181: pay_pyr_shd.constraint_error
182: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
183: WHEN Others THEN
184: pay_pyr_shd.g_api_dml := FALSE; -- Unset the api dml status
185: Raise;
186: END insert_dml;
187: --
188: -- ----------------------------------------------------------------------------

Line 226: (p_rec IN OUT NOCOPY pay_pyr_shd.g_rec_type

222: --
223: -- {END Of Comments}
224: -- ----------------------------------------------------------------------------
225: PROCEDURE pre_insert
226: (p_rec IN OUT NOCOPY pay_pyr_shd.g_rec_type
227: ) IS
228: --
229: CURSOR C_Sel1 IS SELECT pay_rates_s.nextval FROM sys.dual;
230: --

Line 314: ,p_rec IN pay_pyr_shd.g_rec_type

310: -- {END Of Comments}
311: -- ----------------------------------------------------------------------------
312: PROCEDURE post_insert
313: (p_effective_date IN DATE
314: ,p_rec IN pay_pyr_shd.g_rec_type
315: ) IS
316: --
317: l_proc VARCHAR2(72) := g_package||'post_insert';
318: --

Line 415: ,p_rec IN OUT NOCOPY pay_pyr_shd.g_rec_type

411: -- |---------------------------------< ins >----------------------------------|
412: -- ----------------------------------------------------------------------------
413: PROCEDURE ins
414: (p_effective_date IN DATE
415: ,p_rec IN OUT NOCOPY pay_pyr_shd.g_rec_type
416: ) IS
417: --
418: l_proc VARCHAR2(72) := g_package||'ins';
419: --

Line 496: l_rec pay_pyr_shd.g_rec_type;

492: ,p_rate_id OUT NOCOPY NUMBER
493: ,p_object_version_number OUT NOCOPY NUMBER
494: ) IS
495: --
496: l_rec pay_pyr_shd.g_rec_type;
497: l_proc VARCHAR2(72) := g_package||'ins';
498: --
499: BEGIN
500: hr_utility.set_location('Entering:'||l_proc, 5);

Line 506: pay_pyr_shd.convert_args

502: -- Call conversion function to turn arguments INTO the
503: -- p_rec structure.
504: --
505: l_rec :=
506: pay_pyr_shd.convert_args
507: (NULL
508: ,p_business_group_id
509: ,p_parent_spine_id
510: ,p_name