DBA Data[Home] [Help]

APPS.PAY_SBT_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_balance_types

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

137: p_rec.object_version_number
138: );
139: --
140: --
141: hr_utility.set_location(' Leaving:'||l_proc, 10);
142: Exception
143: When hr_api.check_integrity_violated Then
144: -- A check constraint has been violated
145: pay_sbt_shd.constraint_error

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

199: --
200: Cursor C_Sel1 is select pay_shadow_balance_types_s.nextval from sys.dual;
201: --
202: Begin
203: hr_utility.set_location('Entering:'||l_proc, 5);
204: --
205: --
206: -- Select the next sequence number
207: --

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

208: Open C_Sel1;
209: Fetch C_Sel1 Into p_rec.balance_type_id;
210: Close C_Sel1;
211: --
212: hr_utility.set_location(' Leaving:'||l_proc, 10);
213: End pre_insert;
214: --
215: -- ----------------------------------------------------------------------------
216: -- |-----------------------------< post_insert >------------------------------|

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

248: --
249: l_proc varchar2(72) := g_package||'post_insert';
250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: hr_utility.set_location(' Leaving:'||l_proc, 10);
255: End post_insert;
256: --

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

250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: hr_utility.set_location(' Leaving:'||l_proc, 10);
255: End post_insert;
256: --
257: -- ----------------------------------------------------------------------------
258: -- |---------------------------------< ins >----------------------------------|

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

265: --
266: l_proc varchar2(72) := g_package||'ins';
267: --
268: Begin
269: hr_utility.set_location('Entering:'||l_proc, 5);
270: --
271: -- Call the supporting insert validate operations
272: --
273: pay_sbt_bus.insert_validate(p_effective_date, p_rec);

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

333: l_rec pay_sbt_shd.g_rec_type;
334: l_proc varchar2(72) := g_package||'ins';
335: --
336: Begin
337: hr_utility.set_location('Entering:'||l_proc, 5);
338: --
339: -- Call conversion function to turn arguments into the
340: -- p_rec structure.
341: --

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

391: --
392: p_balance_type_id := l_rec.balance_type_id;
393: p_object_version_number := l_rec.object_version_number;
394: --
395: hr_utility.set_location(' Leaving:'||l_proc, 10);
396: End ins;
397: --
398: end pay_sbt_ins;