DBA Data[Home] [Help]

APPS.BEN_PRY_SHD dependencies on HR_UTILITY

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

170: --
171: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: --
176: -- Call the corresponding datetrack api
177: --
178: dt_api.find_dt_upd_modes

Line 192: hr_utility.set_location('Forcing Correction Mode for block (PRY)', 5);

188:
189: --Bug 5558175 : Datetrack functionality on the Reimbursement Payment block (PRY) should not be
190: --present and hence hard-coded datetrack_mode in update, delete to correction and zap respectively.
191:
192: hr_utility.set_location('Forcing Correction Mode for block (PRY)', 5);
193: p_update := FALSE;
194: p_update_override := FALSE;
195: p_update_change_insert := FALSE;
196:

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

195: p_update_change_insert := FALSE;
196:
197: --Bug 5558175
198:
199: hr_utility.set_location(' Leaving:'||l_proc, 10);
200: End find_dt_upd_modes;
201: --
202: -- ----------------------------------------------------------------------------
203: -- |---------------------------< find_dt_del_modes >--------------------------|

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

223: and p_effective_date
224: between t.effective_start_date and t.effective_end_date;
225: --
226: Begin
227: hr_utility.set_location('Entering:'||l_proc, 5);
228: Open C_sel1;
229: Fetch C_Sel1 Into
230: l_parent_key_value1;
231: If C_Sel1%NOTFOUND then

Line 260: hr_utility.set_location('Forcing Zap Mode for block (PRY)', 5);

256:
257: --Bug 5558175 : Datetrack functionality on the Reimbursement Payment block (PRY) should not be
258: --present and hence hard-coded datetrack_mode in update, delete to correction and zap respectively.
259:
260: hr_utility.set_location('Forcing Zap Mode for block (PRY)', 5);
261:
262: p_delete := FALSE;
263: p_future_change := FALSE;
264: p_delete_next_change := FALSE;

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

266: --End Bug 5558175
267:
268:
269: --
270: hr_utility.set_location(' Leaving:'||l_proc, 10);
271: End find_dt_del_modes;
272: --
273: -- ----------------------------------------------------------------------------
274: -- |-----------------------< upd_effective_end_date >-------------------------|

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

285: l_proc varchar2(72) := g_package||'upd_effective_end_date';
286: l_object_version_number number;
287: --
288: Begin
289: hr_utility.set_location('Entering:'||l_proc, 5);
290: --
291: -- Because we are updating a row we must get the next object
292: -- version number.
293: --

Line 301: hr_utility.set_location(l_proc, 10);

297: ,p_base_key_column => 'prtt_rmt_aprvd_fr_pymt_id'
298: ,p_base_key_value => p_base_key_value
299: );
300: --
301: hr_utility.set_location(l_proc, 10);
302: ben_pry_shd.g_api_dml := true; -- Set the api dml status
303: --
304: -- Update the specified datetrack row setting the effective
305: -- end date to the specified new effective end date.

Line 316: hr_utility.set_location(' Leaving:'||l_proc, 15);

312: between t.effective_start_date and t.effective_end_date;
313: --
314: ben_pry_shd.g_api_dml := false; -- Unset the api dml status
315: p_object_version_number := l_object_version_number;
316: hr_utility.set_location(' Leaving:'||l_proc, 15);
317: --
318: Exception
319: When Others Then
320: ben_pry_shd.g_api_dml := false; -- Unset the api dml status

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

397: --
398: --
399: --
400: Begin
401: hr_utility.set_location('Entering:'||l_proc, 5);
402: --
403: -- Ensure that all the mandatory arguments are not null
404: --
405: hr_api.mandatory_arg_error(p_api_name => l_proc

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

478: --
479: p_validation_start_date := l_validation_start_date;
480: p_validation_end_date := l_validation_end_date;
481: --
482: hr_utility.set_location(' Leaving:'||l_proc, 30);
483: --
484: -- We need to trap the ORA LOCK exception
485: --
486: Exception