DBA Data[Home] [Help]

APPS.PAY_RFM_SHD dependencies on HR_UTILITY

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

145: --
146: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
147: --
148: Begin
149: hr_utility.set_location('Entering:'||l_proc, 5);
150: --
151: -- Call the corresponding datetrack api
152: --
153: dt_api.find_dt_upd_modes

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

160: ,p_update_override => p_update_override
161: ,p_update_change_insert => p_update_change_insert
162: );
163: --
164: hr_utility.set_location(' Leaving:'||l_proc, 10);
165: End find_dt_upd_modes;
166: --
167: -- ----------------------------------------------------------------------------
168: -- |---------------------------< find_dt_del_modes >--------------------------|

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

179: l_proc varchar2(72) := g_package||'find_dt_del_modes';
180: --
181: --
182: Begin
183: hr_utility.set_location('Entering:'||l_proc, 5);
184: --
185: -- Call the corresponding datetrack api
186: --
187: dt_api.find_dt_del_modes

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

194: ,p_future_change => p_future_change
195: ,p_delete_next_change => p_delete_next_change
196: );
197: --
198: hr_utility.set_location(' Leaving:'||l_proc, 10);
199: End find_dt_del_modes;
200: --
201: -- ----------------------------------------------------------------------------
202: -- |-----------------------< upd_effective_end_date >-------------------------|

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

213: l_proc varchar2(72) := g_package||'upd_effective_end_date';
214: l_object_version_number number;
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: -- Because we are updating a row we must get the next object
220: -- version number.
221: --

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

225: ,p_base_key_column => 'report_format_mapping_id'
226: ,p_base_key_value => p_base_key_value
227: );
228: --
229: hr_utility.set_location(l_proc, 10);
230: pay_rfm_shd.g_api_dml := true; -- Set the api dml status
231: --
232: -- Update the specified datetrack row setting the effective
233: -- end date to the specified new effective end date.

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

240: between t.effective_start_date and t.effective_end_date;
241: --
242: pay_rfm_shd.g_api_dml := false; -- Unset the api dml status
243: p_object_version_number := l_object_version_number;
244: hr_utility.set_location(' Leaving:'||l_proc, 15);
245: --
246: Exception
247: When Others Then
248: pay_rfm_shd.g_api_dml := false; -- Unset the api dml status

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

300: --
301: --
302: --
303: Begin
304: hr_utility.set_location('Entering:'||l_proc, 5);
305: --
306: -- Ensure that all the mandatory arguments are not null
307: --
308: hr_api.mandatory_arg_error(p_api_name => l_proc

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

378: --
379: p_validation_start_date := l_validation_start_date;
380: p_validation_end_date := l_validation_end_date;
381: --
382: hr_utility.set_location(' Leaving:'||l_proc, 30);
383: --
384: -- We need to trap the ORA LOCK exception
385: --
386: Exception

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

475: l_report_format_mapping_id PAY_REPORT_FORMAT_MAPPINGS_F.REPORT_FORMAT_MAPPING_ID%TYPE;
476: --
477: Begin
478: --
479: hr_utility.set_location('Entering:'||l_proc, 5);
480:
481: if p_report_type is null or p_report_qualifier is null or
482: p_report_category is null then
483:

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

511: end if;
512:
513: close csr_format_mapping_id;
514:
515: hr_utility.set_location(' Leaving:'||l_proc, 10);
516:
517: return l_report_format_mapping_id;
518:
519: --