DBA Data[Home] [Help]

APPS.FF_FUNCTION_CONTEXT_USG_API dependencies on HR_UTILITY

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

21: l_sequence_number ff_function_context_usages.sequence_number%type;
22:
23: l_proc varchar2(72) := g_package||'CREATE_CONTEXT';
24: begin
25: hr_utility.set_location('Entering:'|| l_proc, 10);
26: --
27: -- Issue a savepoint
28: --
29: savepoint CREATE_CONTEXT;

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

92: --
93: p_sequence_number := l_sequence_number;
94: p_object_version_number := l_object_version_number;
95: --
96: hr_utility.set_location(' Leaving:'||l_proc, 70);
97: exception
98: when hr_api.validate_enabled then
99: --
100: -- As the Validate_Enabled exception has been raised

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

108: --
109: p_sequence_number := null;
110: p_object_version_number := null;
111:
112: hr_utility.set_location(' Leaving:'||l_proc, 80);
113: when others then
114: --
115: -- A validation or unexpected error has occured
116: --

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

120: -- OUT parameters, including warnings, to null
121: --
122: p_sequence_number := null;
123: p_object_version_number := null;
124: hr_utility.set_location(' Leaving:'||l_proc, 90);
125: raise;
126: end CREATE_CONTEXT;
127: --
128: -- ----------------------------------------------------------------------------

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

141: --
142: l_object_version_number ff_function_context_usages.object_version_number%type;
143: l_proc varchar2(72) := g_package||'UPDATE_CONTEXT';
144: begin
145: hr_utility.set_location('Entering:'|| l_proc, 10);
146: --
147: -- Issue a savepoint
148: --
149: savepoint UPDATE_CONTEXT;

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

216: -- Set all IN OUT and OUT parameters with out values
217: --
218: p_object_version_number := l_object_version_number;
219: --
220: hr_utility.set_location(' Leaving:'||l_proc, 70);
221: exception
222: when hr_api.validate_enabled then
223: --
224: -- As the Validate_Enabled exception has been raised

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

230: -- (Any key or derived arguments must be set to null
231: -- when validation only mode is being used.)
232: --
233: p_object_version_number := null;
234: hr_utility.set_location(' Leaving:'||l_proc, 80);
235: when others then
236: --
237: -- A validation or unexpected error has occured
238: --

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

241: -- Reset IN OUT parameters and set all
242: -- OUT parameters, including warnings, to null
243: --
244: p_object_version_number := null;
245: hr_utility.set_location(' Leaving:'||l_proc, 90);
246: raise;
247: end UPDATE_CONTEXT;
248: --
249: -- ----------------------------------------------------------------------------

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

261: --
262:
263: l_proc varchar2(72) := g_package||'DELETE_CONTEXT';
264: begin
265: hr_utility.set_location('Entering:'|| l_proc, 10);
266: --
267: -- Issue a savepoint
268: --
269: savepoint DELETE_CONTEXT;

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

329: --
330: -- Set all IN OUT and OUT parameters with out values
331: --
332: --
333: hr_utility.set_location(' Leaving:'||l_proc, 70);
334: exception
335: when hr_api.validate_enabled then
336: --
337: -- As the Validate_Enabled exception has been raised

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

342: -- Reset IN OUT parameters and set OUT parameters
343: -- (Any key or derived arguments must be set to null
344: -- when validation only mode is being used.)
345: --
346: hr_utility.set_location(' Leaving:'||l_proc, 80);
347: when others then
348: --
349: -- A validation or unexpected error has occured
350: --

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

352: --
353: -- Reset IN OUT parameters and set all
354: -- OUT parameters, including warnings, to null
355: --
356: hr_utility.set_location(' Leaving:'||l_proc, 90);
357: raise;
358: end DELETE_CONTEXT;
359: --
360: