DBA Data[Home] [Help]

APPS.PAY_CNU_INS dependencies on HR_UTILITY

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

56: --
57: l_proc varchar2(72) := g_package||'insert_dml';
58: --
59: Begin
60: hr_utility.set_location('Entering:'||l_proc, 5);
61: p_rec.object_version_number := 1; -- Initialise the object version
62: --
63: --
64: --

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

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

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

168: --
169: Cursor C_Sel1 is select pay_fr_contribution_usages_s.nextval from sys.dual;
170: --
171: Begin
172: hr_utility.set_location('Entering:'||l_proc, 5);
173: --
174: --
175: -- Select the next sequence number
176: --

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

177: Open C_Sel1;
178: Fetch C_Sel1 Into p_rec.contribution_usage_id;
179: Close C_Sel1;
180: --
181: hr_utility.set_location(' Leaving:'||l_proc, 10);
182: End pre_insert;
183: --
184: -- ----------------------------------------------------------------------------
185: -- |-----------------------------< post_insert >------------------------------|

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

219: --
220: l_proc varchar2(72) := g_package||'post_insert';
221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 5);
224: begin
225: --
226: PAY_cnu_RKI.AFTER_INSERT(
227: p_contribution_usage_id => p_rec.contribution_usage_id

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

250: ,p_hook_type => 'AI');
251: --
252: end;
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: l_proc varchar2(72) := g_package||'ins';
266: l_code_Rate_id number;
267: --
268: Begin
269: hr_utility.set_location('Entering:'||l_proc, 5);
270: --
271: -- Call the supporting insert validate operations
272: --
273: pay_cnu_bus.insert_validate

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

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

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

322: l_rec pay_cnu_shd.g_rec_type;
323: l_proc varchar2(72) := g_package||'ins';
324: --
325: Begin
326: hr_utility.set_location('Entering:'||l_proc, 5);
327: --
328: -- Call conversion function to turn arguments into the
329: -- p_rec structure.
330: --

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

363: p_code_rate_id := l_rec.code_Rate_id;
364: --
365: -- The code rate id is IN OUT so it's value will be automatically passed back.
366: --
367: hr_utility.set_location(' Leaving:'||l_proc, 10);
368: End ins;
369: --
370: end pay_cnu_ins;