DBA Data[Home] [Help]

APPS.PAY_RTU_SHD dependencies on HR_UTILITY

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

127: --
128: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
129: --
130: Begin
131: hr_utility.set_location('Entering:'||l_proc, 5);
132: --
133: -- Call the corresponding datetrack api
134: --
135: dt_api.find_dt_upd_modes

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

142: ,p_update_override => p_update_override
143: ,p_update_change_insert => p_update_change_insert
144: );
145: --
146: hr_utility.set_location(' Leaving:'||l_proc, 10);
147: End find_dt_upd_modes;
148: --
149: -- ----------------------------------------------------------------------------
150: -- |---------------------------< find_dt_del_modes >--------------------------|

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

172: and p_effective_date
173: between t.effective_start_date and t.effective_end_date;
174: --
175: Begin
176: hr_utility.set_location('Entering:'||l_proc, 5);
177: Open C_sel1;
178: Fetch C_Sel1 Into
179: l_parent_key_value1
180: ,l_parent_key_value2;

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

205: ,p_future_change => p_future_change
206: ,p_delete_next_change => p_delete_next_change
207: );
208: --
209: hr_utility.set_location(' Leaving:'||l_proc, 10);
210: End find_dt_del_modes;
211: --
212: -- ----------------------------------------------------------------------------
213: -- |-----------------------< upd_effective_end_date >-------------------------|

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

224: l_proc varchar2(72) := g_package||'upd_effective_end_date';
225: l_object_version_number number;
226: --
227: Begin
228: hr_utility.set_location('Entering:'||l_proc, 5);
229: --
230: -- Because we are updating a row we must get the next object
231: -- version number.
232: --

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

236: ,p_base_key_column => 'run_type_usage_id'
237: ,p_base_key_value => p_base_key_value
238: );
239: --
240: hr_utility.set_location(l_proc, 10);
241: --
242: --
243: -- Update the specified datetrack row setting the effective
244: -- end date to the specified new effective end date.

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

251: between t.effective_start_date and t.effective_end_date;
252: --
253: --
254: p_object_version_number := l_object_version_number;
255: hr_utility.set_location(' Leaving:'||l_proc, 15);
256: --
257: End upd_effective_end_date;
258: --
259: -- ----------------------------------------------------------------------------

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

295: --
296: --
297: --
298: Begin
299: hr_utility.set_location('Entering:'||l_proc, 5);
300: --
301: -- Ensure that all the mandatory arguments are not null
302: --
303: hr_api.mandatory_arg_error(p_api_name => l_proc

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

318: hr_api.mandatory_arg_error(p_api_name => l_proc
319: ,p_argument => 'object_version_number'
320: ,p_argument_value => p_object_version_number
321: );
322: hr_utility.set_location(l_proc, 10);
323: --
324: -- Check to ensure the datetrack mode is not INSERT.
325: --
326: If (p_datetrack_mode <> hr_api.g_insert) then

Line 327: hr_utility.set_location(l_proc, 15);

323: --
324: -- Check to ensure the datetrack mode is not INSERT.
325: --
326: If (p_datetrack_mode <> hr_api.g_insert) then
327: hr_utility.set_location(l_proc, 15);
328: --
329: -- We must select and lock the current row.
330: --
331: Open C_Sel1;

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

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