DBA Data[Home] [Help]

APPS.PAY_SIV_INS dependencies on HR_UTILITY

Line 55: hr_utility.set_location('Entering:'||l_proc, 5);

51: --
52: l_proc varchar2(72) := g_package||'insert_dml';
53: --
54: Begin
55: hr_utility.set_location('Entering:'||l_proc, 5);
56: p_rec.object_version_number := 1; -- Initialise the object version
57: --
58: --
59: -- Insert the row into: pay_shadow_input_values

Line 103: hr_utility.set_location(' Leaving:'||l_proc, 10);

99: p_rec.object_version_number
100: );
101: --
102: --
103: hr_utility.set_location(' Leaving:'||l_proc, 10);
104: Exception
105: When hr_api.check_integrity_violated Then
106: -- A check constraint has been violated
107: pay_siv_shd.constraint_error

Line 165: hr_utility.set_location('Entering:'||l_proc, 5);

161: --
162: Cursor C_Sel1 is select pay_shadow_input_values_s.nextval from sys.dual;
163: --
164: Begin
165: hr_utility.set_location('Entering:'||l_proc, 5);
166: --
167: --
168: -- Select the next sequence number
169: --

Line 174: hr_utility.set_location(' Leaving:'||l_proc, 10);

170: Open C_Sel1;
171: Fetch C_Sel1 Into p_rec.input_value_id;
172: Close C_Sel1;
173: --
174: hr_utility.set_location(' Leaving:'||l_proc, 10);
175: End pre_insert;
176: --
177: -- ----------------------------------------------------------------------------
178: -- |-----------------------------< post_insert >------------------------------|

Line 214: hr_utility.set_location('Entering:'||l_proc, 5);

210: --
211: l_proc varchar2(72) := g_package||'post_insert';
212: --
213: Begin
214: hr_utility.set_location('Entering:'||l_proc, 5);
215: --
216: hr_utility.set_location(' Leaving:'||l_proc, 10);
217: End post_insert;
218: --

Line 216: hr_utility.set_location(' Leaving:'||l_proc, 10);

212: --
213: Begin
214: hr_utility.set_location('Entering:'||l_proc, 5);
215: --
216: hr_utility.set_location(' Leaving:'||l_proc, 10);
217: End post_insert;
218: --
219: -- ----------------------------------------------------------------------------
220: -- |---------------------------------< ins >----------------------------------|

Line 230: hr_utility.set_location('Entering:'||l_proc, 5);

226: --
227: l_proc varchar2(72) := g_package||'ins';
228: --
229: Begin
230: hr_utility.set_location('Entering:'||l_proc, 5);
231: --
232: -- Call the supporting insert validate operations
233: --
234: pay_siv_bus.insert_validate(p_effective_date, p_rec);

Line 279: hr_utility.set_location('Entering:'||l_proc, 5);

275: l_rec pay_siv_shd.g_rec_type;
276: l_proc varchar2(72) := g_package||'ins';
277: --
278: Begin
279: hr_utility.set_location('Entering:'||l_proc, 5);
280: --
281: -- Call conversion function to turn arguments into the
282: -- p_rec structure.
283: --

Line 318: hr_utility.set_location(' Leaving:'||l_proc, 10);

314: --
315: p_input_value_id := l_rec.input_value_id;
316: p_object_version_number := l_rec.object_version_number;
317: --
318: hr_utility.set_location(' Leaving:'||l_proc, 10);
319: End ins;
320: --
321: end pay_siv_ins;