DBA Data[Home] [Help]

APPS.PAY_BCT_INS dependencies on HR_UTILITY

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

59: l_control_total_dup1 pay_batch_control_totals.control_total%TYPE;
60:
61: --
62: Begin
63: hr_utility.set_location('Entering:'|| l_proc, 5);
64: p_rec.object_version_number := 1; -- Initialise the object version
65: --
66: pay_bct_shd.g_api_dml := true; -- Set the api dml status
67: --

Line 74: hr_utility.set_location('Converting Control total from display format to database format: '||l_proc,6) ;

70: -- database format (99999.99)
71: --
72: l_control_total_dup1 := p_rec.control_total;
73:
74: hr_utility.set_location('Converting Control total from display format to database format: '||l_proc,6) ;
75: --
76:
77: hr_chkfmt.checkformat ( p_rec.control_total ,
78: 'NUMBER' ,

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

105: );
106: --
107: pay_bct_shd.g_api_dml := false; -- Unset the api dml status
108: --
109: hr_utility.set_location(' Leaving:'||l_proc, 10);
110:
111: Exception
112: When hr_api.check_integrity_violated Then
113: -- A check constraint has been violated

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

174: --
175: Cursor C_Sel1 is select pay_batch_control_totals_s.nextval from sys.dual;
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: --
181: -- Select the next sequence number
182: --

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

183: Open C_Sel1;
184: Fetch C_Sel1 Into p_rec.batch_control_id;
185: Close C_Sel1;
186: --
187: hr_utility.set_location(' Leaving:'||l_proc, 10);
188: End pre_insert;
189: --
190: -- ----------------------------------------------------------------------------
191: -- |-----------------------------< post_insert >------------------------------|

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

226: --
227: l_proc varchar2(72) := g_package||'post_insert';
228: --
229: Begin
230: hr_utility.set_location('Entering:'||l_proc, 5);
231: begin
232: --
233: pay_bct_rki.after_insert
234: (p_session_date

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

256: ,p_hook_type => 'AI');
257: --
258: end;
259: --
260: hr_utility.set_location(' Leaving:'||l_proc, 10);
261: End post_insert;
262: --
263: -- ----------------------------------------------------------------------------
264: -- |---------------------------------< ins >----------------------------------|

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

270: --
271: l_proc varchar2(72) := g_package||'ins';
272: --
273: Begin
274: hr_utility.set_location('Entering:'||l_proc, 5);
275: --
276: -- Call the supporting insert validate operations
277: --
278: pay_bct_bus.insert_validate

Line 298: hr_utility.set_location('Leaving:'||l_proc, 20);

294: (p_session_date
295: ,p_rec
296: );
297: --
298: hr_utility.set_location('Leaving:'||l_proc, 20);
299: end ins;
300: --
301: -- ----------------------------------------------------------------------------
302: -- |---------------------------------< ins >----------------------------------|

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

314: l_rec pay_bct_shd.g_rec_type;
315: l_proc varchar2(72) := g_package||'ins';
316: --
317: Begin
318: hr_utility.set_location('Entering:'||l_proc, 5);
319: --
320: -- Call conversion function to turn arguments into the
321: -- p_rec structure.
322: --

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

343: --
344: p_batch_control_id := l_rec.batch_control_id;
345: p_object_version_number := l_rec.object_version_number;
346: --
347: hr_utility.set_location(' Leaving:'||l_proc, 10);
348: End ins;
349: --
350: end pay_bct_ins;