DBA Data[Home] [Help]

APPS.PQH_RATE_MATRIX_NODES_API dependencies on HR_UTILITY

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

31: l_rate_matrix_node_id PQH_RATE_MATRIX_NODES.rate_matrix_node_id%TYPE;
32: l_object_version_number PQH_RATE_MATRIX_NODES.object_version_number%TYPE;
33: l_proc varchar2(72) := g_package||'create_rate_matrix_node';
34: begin
35: hr_utility.set_location('Entering:'|| l_proc, 10);
36: --
37: -- Issue a savepoint
38: --
39: savepoint create_rate_matrix_node;

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

129: --
130: p_rate_matrix_node_id := l_rate_matrix_node_id;
131: p_object_version_number := l_object_version_number;
132: --
133: hr_utility.set_location(' Leaving:'||l_proc, 70);
134: exception
135: when hr_api.validate_enabled then
136: --
137: -- As the Validate_Enabled exception has been raised

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

145: --
146: p_rate_matrix_node_id := null;
147: p_object_version_number := null;
148:
149: hr_utility.set_location(' Leaving:'||l_proc, 80);
150: when others then
151: --
152: -- A validation or unexpected error has occured
153: --

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

158: --
159: p_rate_matrix_node_id := null;
160: p_object_version_number := null;
161:
162: hr_utility.set_location(' Leaving:'||l_proc, 90);
163: raise;
164: end create_rate_matrix_node;
165: --
166: -- ----------------------------------------------------------------------------

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

188: l_effective_date date;
189: l_proc varchar2(72) := g_package||'update_rate_matrix_node';
190: l_object_version_number PQH_RATE_MATRIX_NODES.object_version_number%TYPE;
191: begin
192: hr_utility.set_location('Entering:'|| l_proc, 10);
193: --
194: -- Issue a savepoint
195: --
196: savepoint update_rate_matrix_node;

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

287: -- Set all IN OUT and OUT parameters with out values
288: --
289: p_object_version_number := l_object_version_number;
290: --
291: hr_utility.set_location(' Leaving:'||l_proc, 70);
292: exception
293: when hr_api.validate_enabled then
294: --
295: -- As the Validate_Enabled exception has been raised

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

301: -- (Any key or derived arguments must be set to null
302: -- when validation only mode is being used.)
303: --
304: p_object_version_number := p_object_version_number;
305: hr_utility.set_location(' Leaving:'||l_proc, 80);
306: when others then
307: --
308: -- A validation or unexpected error has occured
309: --

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

312: -- Reset IN OUT parameters and set all
313: -- OUT parameters, including warnings, to null
314: --
315: p_object_version_number := p_object_version_number;
316: hr_utility.set_location(' Leaving:'||l_proc, 90);
317: raise;
318: end update_rate_matrix_node;
319: --
320: -- ----------------------------------------------------------------------------

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

333:
334: l_effective_date date;
335: l_proc varchar2(72) := g_package||'delete_rate_matrix_node';
336: begin
337: hr_utility.set_location('Entering:'|| l_proc, 10);
338: --
339: -- Issue a savepoint
340: --
341: savepoint delete_rate_matrix_node;

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

404: --
405: -- Set all IN OUT and OUT parameters with out values
406: --
407: --
408: hr_utility.set_location(' Leaving:'||l_proc, 70);
409: exception
410: when hr_api.validate_enabled then
411: --
412: -- As the Validate_Enabled exception has been raised

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

417: -- Reset IN OUT parameters and set OUT parameters
418: -- (Any key or derived arguments must be set to null
419: -- when validation only mode is being used.)
420: --
421: hr_utility.set_location(' Leaving:'||l_proc, 80);
422: when others then
423: --
424: -- A validation or unexpected error has occured
425: --

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

427: --
428: -- Reset IN OUT parameters and set all
429: -- OUT parameters, including warnings, to null
430: --
431: hr_utility.set_location(' Leaving:'||l_proc, 90);
432: raise;
433: end delete_rate_matrix_node;
434: --
435: --