DBA Data[Home] [Help]

APPS.PER_BF_BALANCE_TYPES_API dependencies on HR_UTILITY

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

34: l_object_version_number per_bf_balance_types.object_version_number%TYPE;
35: --
36: l_proc varchar2(72) := g_package||'create_balance_type';
37: begin
38: hr_utility.set_location('Entering:'|| l_proc, 10);
39: --
40: -- Issue a savepoint
41: --
42: savepoint create_balance_type;

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

39: --
40: -- Issue a savepoint
41: --
42: savepoint create_balance_type;
43: hr_utility.set_location(l_proc, 20);
44: --
45: -- Truncate the time portion from all IN date parameters
46: --
47:

Line 72: hr_utility.set_location(l_proc, 30);

68: (p_module_name => 'CREATE_BALANCE_TYPE'
69: ,p_hook_type => 'BP'
70: );
71: end;
72: hr_utility.set_location(l_proc, 30);
73: --
74: -- Validation in addition to Row Handlers
75: --
76: hr_utility.set_location(l_proc, 40);

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

72: hr_utility.set_location(l_proc, 30);
73: --
74: -- Validation in addition to Row Handlers
75: --
76: hr_utility.set_location(l_proc, 40);
77: --
78: -- Process Logic
79: --
80: per_bbt_ins.ins

Line 96: hr_utility.set_location(l_proc, 50);

92: ,p_balance_type_id => l_balance_type_id
93: ,p_object_version_number => l_object_version_number
94: );
95:
96: hr_utility.set_location(l_proc, 50);
97: --
98: -- Call After Process User Hook
99: --
100: begin

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

119: (p_module_name => 'CREATE_BALANCE_TYPE'
120: ,p_hook_type => 'AP'
121: );
122: end;
123: hr_utility.set_location(l_proc, 60);
124: --
125: -- When in validation only mode raise the Validate_Enabled exception
126: --
127: if p_validate then

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

132: --
133: p_balance_type_id := l_balance_type_id;
134: p_object_version_number := l_object_version_number;
135: --
136: hr_utility.set_location(' Leaving:'||l_proc, 70);
137: exception
138: when hr_api.validate_enabled then
139: --
140: -- As the Validate_Enabled exception has been raised

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

147: -- when validation only mode is being used.)
148: --
149: p_balance_type_id := null;
150: p_object_version_number := null;
151: hr_utility.set_location(' Leaving:'||l_proc, 80);
152: when others then
153: --
154: -- A validation or unexpected error has occured
155: --

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

156: --set out variables
157: p_balance_type_id := null;
158: p_object_version_number := null;
159: rollback to create_balance_type;
160: hr_utility.set_location(' Leaving:'||l_proc, 90);
161: raise;
162: end create_balance_type;
163: --
164: -- ----------------------------------------------------------------------------

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

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

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

193: -- Issue a savepoint
194: --
195: savepoint update_balance_type;
196: --
197: hr_utility.set_location(l_proc, 20);
198: --
199: -- Truncate the time portion from all IN date parameters
200: --
201: --

Line 226: hr_utility.set_location(l_proc, 30);

222: (p_module_name => 'UPDATE_BALANCE_TYPE'
223: ,p_hook_type => 'BP'
224: );
225: end;
226: hr_utility.set_location(l_proc, 30);
227: --
228: -- Validation in addition to Row Handlers
229: --
230: hr_utility.set_location(l_proc, 40);

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

226: hr_utility.set_location(l_proc, 30);
227: --
228: -- Validation in addition to Row Handlers
229: --
230: hr_utility.set_location(l_proc, 40);
231: --
232: -- Process Logic
233: --
234: l_object_version_number := p_object_version_number;

Line 251: hr_utility.set_location(l_proc, 50);

247: ,p_balance_type_id => p_balance_type_id
248: ,p_object_version_number => l_object_version_number
249: );
250:
251: hr_utility.set_location(l_proc, 50);
252: --
253: -- Call After Process User Hook
254: --
255: begin

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

273: (p_module_name => 'UPDATE_BALANCE_TYPE'
274: ,p_hook_type => 'AP'
275: );
276: end;
277: hr_utility.set_location(l_proc, 60);
278: --
279: -- When in validation only mode raise the Validate_Enabled exception
280: --
281: if p_validate then

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

285: -- Set all output arguments
286: --
287: p_object_version_number := l_object_version_number;
288: --
289: hr_utility.set_location(' Leaving:'||l_proc, 70);
290: exception
291: when hr_api.validate_enabled then
292: --
293: -- As the Validate_Enabled exception has been raised

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

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

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

307: --
308: --set out variables
309: p_object_version_number := null;
310: rollback to update_balance_type;
311: hr_utility.set_location(' Leaving:'||l_proc, 90);
312: raise;
313: end update_balance_type;
314: --
315: -- ----------------------------------------------------------------------------

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

327: -- Declare cursors and local variables
328: --
329: l_proc varchar2(72) := g_package||'delete_balance_type';
330: begin
331: hr_utility.set_location('Entering:'|| l_proc, 10);
332: --
333: -- Issue a savepoint
334: --
335: savepoint delete_balance_type;

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

333: -- Issue a savepoint
334: --
335: savepoint delete_balance_type;
336: --
337: hr_utility.set_location(l_proc, 20);
338: --
339: -- Truncate the time portion from all IN date parameters
340: --
341: --

Line 357: hr_utility.set_location(l_proc, 30);

353: (p_module_name => 'DELETE_BALANCE_TYPE'
354: ,p_hook_type => 'BP'
355: );
356: end;
357: hr_utility.set_location(l_proc, 30);
358: --
359: -- Validation in addition to Row Handlers
360: --
361: hr_utility.set_location(l_proc, 40);

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

357: hr_utility.set_location(l_proc, 30);
358: --
359: -- Validation in addition to Row Handlers
360: --
361: hr_utility.set_location(l_proc, 40);
362: --
363: -- Process Logic
364: --
365: per_bbt_del.del

Line 371: hr_utility.set_location(l_proc, 50);

367: p_balance_type_id => p_balance_type_id
368: ,p_object_version_number => p_object_version_number
369: );
370:
371: hr_utility.set_location(l_proc, 50);
372: --
373: -- Call After Process User Hook
374: --
375: begin

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

384: (p_module_name => 'DELETE_BALANCE_TYPE'
385: ,p_hook_type => 'AP'
386: );
387: end;
388: hr_utility.set_location(l_proc, 60);
389: --
390: -- When in validation only mode raise the Validate_Enabled exception
391: --
392: if p_validate then

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

394: end if;
395: --
396: -- Set all output arguments
397: --
398: hr_utility.set_location(' Leaving:'||l_proc, 70);
399: exception
400: when hr_api.validate_enabled then
401: --
402: -- As the Validate_Enabled exception has been raised

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

407: -- Only set output warning arguments
408: -- (Any key or derived arguments must be set to null
409: -- when validation only mode is being used.)
410: --
411: hr_utility.set_location(' Leaving:'||l_proc, 80);
412: when others then
413: --
414: -- A validation or unexpected error has occured
415: --

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

413: --
414: -- A validation or unexpected error has occured
415: --
416: rollback to delete_balance_type;
417: hr_utility.set_location(' Leaving:'||l_proc, 90);
418: raise;
419: end delete_balance_type;
420: end PER_Bf_balance_types_api;