DBA Data[Home] [Help]

APPS.BEN_CWB_MTRX_UTILS dependencies on HR_UTILITY

Line 31: hr_utility.set_location('Entering:'|| l_proc, 10);

27: l_ovn number;
28: l_proc varchar2(72) := g_package||'update_rates';
29: begin
30: --
31: hr_utility.set_location('Entering:'|| l_proc, 10);
32: --
33: if (p_alct_by = 'PCT') then
34: -- Calculate Amount using Pct of Elig Sal
35: l_val := (p_trg_val * p_elig_sal) / 100;

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

60: ,p_rec_val => l_val
61: ,p_perf_min_max_edit => 'N'
62: ,p_object_version_number => l_ovn);
63: --
64: hr_utility.set_location(' Leaving:'|| l_proc, 20);
65: --
66: end update_rates;
67:
68: --

Line 235: hr_utility.set_location('Entering:'|| l_proc, 10);

231: l_proc varchar2(72) := g_package||'pop_trg_amts';
232: --
233: begin
234: --
235: hr_utility.set_location('Entering:'|| l_proc, 10);
236: --
237: if p_crit_cd1 = 'LOS' or p_crit_cd2 = 'LOS' then
238: l_los_range := get_profile_value('BEN_CWB_WIZ_YRS_WKD_RANGE'
239: ,l_los_range);

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

318: if p_validate then
319: raise hr_api.validate_enabled;
320: end if;
321: --
322: hr_utility.set_location(' Leaving:'|| l_proc, 20);
323: --
324: exception
325: when hr_api.validate_enabled then
326: --

Line 332: hr_utility.set_location(' Leaving:'|| l_proc, 30);

328: -- we must rollback to the savepoint
329: --
330: rollback to pop_trg_amts;
331: --
332: hr_utility.set_location(' Leaving:'|| l_proc, 30);
333: --
334: when others then
335: --
336: -- A validation or unexpected error has occured

Line 343: hr_utility.set_location(' Leaving:'|| l_proc, 40);

339: --
340: -- Reset IN OUT parameters and set all
341: -- OUT parameters, including warnings, to null
342: --
343: hr_utility.set_location(' Leaving:'|| l_proc, 40);
344: raise;
345: --
346: end pop_trg_amts;
347: -- End of Procedure