DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_INFORMATION_API dependencies on HR_UTILITY

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

64:
65: --
66: Begin
67: --
68: hr_utility.set_location('Entering:'|| l_proc, 10);
69: --
70: -- Issue a savepoint
71: --
72: Savepoint create_config_information;

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

70: -- Issue a savepoint
71: --
72: Savepoint create_config_information;
73: --
74: hr_utility.set_location(l_proc, 15);
75: --
76: -- All date input parameters must be truncated to remove time elements
77: --
78: l_effective_date := trunc (p_effective_date);

Line 88: hr_utility.set_location(l_proc, 20);

84: --
85: l_language_code := p_language_code;
86: hr_api.validate_language_code(p_language_code => l_language_code);
87: --
88: hr_utility.set_location(l_proc, 20);
89:
90: -- Process Logic
91: --
92: -- Insert non-translatable rows into PER_RI_CONFIG_INFORMATION first

Line 134: hr_utility.set_location(l_proc, 60);

130: );
131: --
132:
133:
134: hr_utility.set_location(l_proc, 60);
135: --
136: -- When in validation only mode raise the Validate_Enabled exception
137: --
138: If p_validate Then

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

142: -- Set all output arguments
143: --
144: p_object_version_number := l_object_version_number;
145: --
146: hr_utility.set_location(' Leaving:'||l_proc, 70);
147: --
148: Exception
149: --
150: When hr_api.validate_enabled Then

Line 162: hr_utility.set_location(' Leaving:'||l_proc, 80);

158: -- (Any key or derived arguments must be set to null
159: -- when validation only mode is being used.)
160: --
161: p_object_version_number := Null;
162: hr_utility.set_location(' Leaving:'||l_proc, 80);
163: When Others Then
164: --
165: -- A validation or unexpected error has occurred
166: Rollback To create_config_information;

Line 169: hr_utility.set_location(' Leaving:'||l_proc, 90);

165: -- A validation or unexpected error has occurred
166: Rollback To create_config_information;
167: -- Set OUT parameters.
168: p_object_version_number := Null;
169: hr_utility.set_location(' Leaving:'||l_proc, 90);
170: Raise;
171: --
172: End create_config_information;
173: -- ----------------------------------------------------------------------------

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

226: l_temp_ovn number := p_object_version_number;
227: --
228: BEGIN
229: --
230: hr_utility.set_location('Entering:'|| l_proc, 10);
231: --
232: -- Issue a savepoint.
233: --
234: savepoint update_config_information;

Line 248: hr_utility.set_location(l_proc, 20);

244: -- passed through.
245: --
246: l_language_code := p_language_code;
247: hr_api.validate_language_code(p_language_code => l_language_code);
248: hr_utility.set_location(l_proc, 20);
249: --
250: --
251: -- Process Logic
252: --

Line 298: hr_utility.set_location(l_proc, 60);

294: );
295: --
296:
297:
298: hr_utility.set_location(l_proc, 60);
299: --
300: -- When in validation only mode raise the Validate_Enabled exception
301: --
302: If p_validate Then

Line 311: hr_utility.set_location(' Leaving:'||l_proc, 70);

307: -- never reached, so p_object_version_number is passed back unchanged.
308: --
309: p_object_version_number := l_object_version_number;
310: --
311: hr_utility.set_location(' Leaving:'||l_proc, 70);
312: --
313: Exception
314: --
315: When hr_api.validate_enabled Then

Line 327: hr_utility.set_location(' Leaving:'||l_proc, 80);

323: -- (Any key or derived arguments must be set to null
324: -- when validation only mode is being used.)
325: -- Reset IN OUT parameters.
326: p_object_version_number := l_temp_ovn;
327: hr_utility.set_location(' Leaving:'||l_proc, 80);
328: When Others Then
329: --
330: -- A validation or unexpected error has occurred
331: Rollback To update_config_information;

Line 334: hr_utility.set_location(' Leaving:'||l_proc, 90);

330: -- A validation or unexpected error has occurred
331: Rollback To update_config_information;
332: -- Reset IN OUT parameters.
333: p_object_version_number := l_temp_ovn;
334: hr_utility.set_location(' Leaving:'||l_proc, 90);
335: Raise;
336: --
337: --
338: End update_config_information;

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

353: l_proc Varchar2(72) := g_package||'delete_config_information';
354: --
355: Begin
356: --
357: hr_utility.set_location('Entering:'|| l_proc, 10);
358: --
359: -- Issue a savepoint
360: --
361: Savepoint delete_workbench_item;

Line 365: hr_utility.set_location( l_proc, 40);

361: Savepoint delete_workbench_item;
362:
363: --
364:
365: hr_utility.set_location( l_proc, 40);
366:
367: per_cni_del.del(p_config_information_id => p_config_information_id
368: ,p_object_version_number => p_object_version_number);
369:

Line 372: hr_utility.set_location(' Leaving:'||l_proc, 60);

368: ,p_object_version_number => p_object_version_number);
369:
370:
371: --
372: hr_utility.set_location(' Leaving:'||l_proc, 60);
373: --
374: -- When in validation only mode raise the Validate_Enabled exception
375: --
376: If p_validate Then

Line 394: hr_utility.set_location(' Leaving:'||l_proc, 80);

390: -- Only set output warning arguments
391: -- (Any key or derived arguments must be set to null
392: -- when validation only mode is being used.)
393: --
394: hr_utility.set_location(' Leaving:'||l_proc, 80);
395: When Others Then
396: --
397: -- A validation or unexpected error has occurred
398: Rollback To delete_config_information;

Line 399: hr_utility.set_location(' Leaving:'||l_proc, 90);

395: When Others Then
396: --
397: -- A validation or unexpected error has occurred
398: Rollback To delete_config_information;
399: hr_utility.set_location(' Leaving:'||l_proc, 90);
400: Raise;
401: --
402: End delete_config_information;
403: