DBA Data[Home] [Help]

APPS.PAY_RUN_TYPE_ORG_METHOD_API dependencies on HR_UTILITY

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

38: l_effective_start_date pay_run_type_org_methods_f.effective_start_date%TYPE;
39: l_effective_end_date pay_run_type_org_methods_f.effective_end_date%TYPE;
40: --
41: begin
42: hr_utility.set_location('Entering:'|| l_proc, 10);
43: --
44: -- Issue a savepoint
45: --
46: savepoint create_run_type_org_method;

Line 51: hr_utility.set_location('Entering:'|| l_proc, 20);

47: --
48: -- Truncate the time portion from all IN date parameters
49: --
50: l_effective_date := trunc(p_effective_date);
51: hr_utility.set_location('Entering:'|| l_proc, 20);
52: --
53: -- Call Before Process User Hook
54: --
55: begin

Line 73: hr_utility.set_location('Entering:'|| l_proc, 30);

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

Line 77: hr_utility.set_location('Entering:'|| l_proc, 40);

73: hr_utility.set_location('Entering:'|| l_proc, 30);
74: --
75: -- Validation in addition to Row Handlers
76: --
77: hr_utility.set_location('Entering:'|| l_proc, 40);
78: --
79: -- Process Logic
80: --
81: -- Call the row handler

Line 98: hr_utility.set_location('Entering:'|| l_proc, 50);

94: ,p_effective_start_date => l_effective_start_date
95: ,p_effective_end_date => l_effective_end_date
96: );
97: --
98: hr_utility.set_location('Entering:'|| l_proc, 50);
99: --
100: -- Call After Process User Hook
101: --
102: begin

Line 124: hr_utility.set_location('Entering:'|| l_proc, 60);

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

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

135: p_object_version_number := l_object_version_number;
136: p_effective_start_date := l_effective_start_date;
137: p_effective_end_date := l_effective_end_date;
138: --
139: hr_utility.set_location(' Leaving:'||l_proc, 70);
140: exception
141: when hr_api.validate_enabled then
142: --
143: -- As the Validate_Enabled exception has been raised

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

152: p_run_type_org_method_id := null;
153: p_object_version_number := null;
154: p_effective_start_date := null;
155: p_effective_end_date := null;
156: hr_utility.set_location(' Leaving:'||l_proc, 80);
157: when others then
158: --
159: -- A validation or unexpected error has occured
160: --

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

166: p_object_version_number := null;
167: p_effective_start_date := null;
168: p_effective_end_date := null;
169: --
170: hr_utility.set_location(' Leaving:'||l_proc, 90);
171: raise;
172: end create_run_type_org_method;
173: --
174: -- ----------------------------------------------------------------------------

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

205: --
206: l_object_version_number pay_run_type_org_methods_f.object_version_number%TYPE;
207: --
208: begin
209: hr_utility.set_location('Entering:'|| l_proc, 10);
210: --
211: -- Issue a savepoint and assign IN OUT parameters to local variables.
212: --
213: l_object_version_number := p_object_version_number;

Line 219: hr_utility.set_location('Entering:'|| l_proc, 20);

215: --
216: -- Truncate the time portion from all IN date parameters
217: --
218: l_effective_date := trunc(p_effective_date);
219: hr_utility.set_location('Entering:'|| l_proc, 20);
220: --
221: -- Call Before Process User Hook
222: --
223: begin

Line 242: hr_utility.set_location('Entering:'|| l_proc, 30);

238: (p_module_name => 'update_run_type_org_method'
239: ,p_hook_type => 'BP'
240: );
241: end;
242: hr_utility.set_location('Entering:'|| l_proc, 30);
243: --
244: -- Validation in addition to Row Handlers
245: --
246: hr_utility.set_location('Entering:'|| l_proc, 40);

Line 246: hr_utility.set_location('Entering:'|| l_proc, 40);

242: hr_utility.set_location('Entering:'|| l_proc, 30);
243: --
244: -- Validation in addition to Row Handlers
245: --
246: hr_utility.set_location('Entering:'|| l_proc, 40);
247: --
248: -- Process Logic
249: --
250: -- Call the row handler

Line 264: hr_utility.set_location('Entering:'|| l_proc, 50);

260: ,p_effective_start_date => l_effective_start_date
261: ,p_effective_end_date => l_effective_end_date
262: );
263: --
264: hr_utility.set_location('Entering:'|| l_proc, 50);
265: --
266: -- Call After Process User Hook
267: --
268: begin

Line 289: hr_utility.set_location('Entering:'|| l_proc, 60);

285: (p_module_name => 'update_run_type_org_method'
286: ,p_hook_type => 'AP'
287: );
288: end;
289: hr_utility.set_location('Entering:'|| l_proc, 60);
290: --
291: -- When in validation only mode raise the Validate_Enabled exception
292: --
293: if p_validate then

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

299: p_object_version_number := l_object_version_number;
300: p_effective_start_date := l_effective_start_date;
301: p_effective_end_date := l_effective_end_date;
302: --
303: hr_utility.set_location(' Leaving:'||l_proc, 70);
304: exception
305: when hr_api.validate_enabled then
306: --
307: -- As the Validate_Enabled exception has been raised

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

315: --
316: p_object_version_number := p_object_version_number;
317: p_effective_start_date := null;
318: p_effective_end_date := null;
319: hr_utility.set_location(' Leaving:'||l_proc, 80);
320: when others then
321: --
322: -- A validation or unexpected error has occured
323: --

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

328: p_object_version_number := l_object_version_number;
329: p_effective_start_date := null;
330: p_effective_end_date := null;
331: --
332: hr_utility.set_location(' Leaving:'||l_proc, 90);
333: raise;
334: end update_run_type_org_method;
335: --
336: -- ----------------------------------------------------------------------------

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

364: --
365: l_object_version_number pay_run_type_org_methods_f.object_version_number%TYPE;
366: --
367: begin
368: hr_utility.set_location('Entering:'|| l_proc, 10);
369: --
370: -- Issue a savepoint and assign IN OUT parameters to local variables.
371: --
372: l_object_version_number := p_object_version_number;

Line 378: hr_utility.set_location('Entering:'|| l_proc, 20);

374: --
375: -- Truncate the time portion from all IN date parameters
376: --
377: l_effective_date := trunc(p_effective_date);
378: hr_utility.set_location('Entering:'|| l_proc, 20);
379: --
380: -- Call Before Process User Hook
381: --
382: begin

Line 398: hr_utility.set_location('Entering:'|| l_proc, 30);

394: (p_module_name => 'delete_run_type_org_method'
395: ,p_hook_type => 'BP'
396: );
397: end;
398: hr_utility.set_location('Entering:'|| l_proc, 30);
399: --
400: -- Validation in addition to Row Handlers
401: --
402: hr_utility.set_location('Entering:'|| l_proc, 40);

Line 402: hr_utility.set_location('Entering:'|| l_proc, 40);

398: hr_utility.set_location('Entering:'|| l_proc, 30);
399: --
400: -- Validation in addition to Row Handlers
401: --
402: hr_utility.set_location('Entering:'|| l_proc, 40);
403: --
404: -- Process Logic
405: --
406: -- Call the row handler

Line 417: hr_utility.set_location('Entering:'|| l_proc, 50);

413: ,p_effective_start_date => l_effective_start_date
414: ,p_effective_end_date => l_effective_end_date
415: );
416: --
417: hr_utility.set_location('Entering:'|| l_proc, 50);
418: --
419: -- Call After Process User Hook
420: --
421: begin

Line 439: hr_utility.set_location('Entering:'|| l_proc, 60);

435: (p_module_name => 'delete_run_type_org_method'
436: ,p_hook_type => 'AP'
437: );
438: end;
439: hr_utility.set_location('Entering:'|| l_proc, 60);
440: --
441: -- When in validation only mode raise the Validate_Enabled exception
442: --
443: if p_validate then

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

449: p_object_version_number := l_object_version_number;
450: p_effective_start_date := l_effective_start_date;
451: p_effective_end_date := l_effective_end_date;
452: --
453: hr_utility.set_location(' Leaving:'||l_proc, 70);
454: exception
455: when hr_api.validate_enabled then
456: --
457: -- As the Validate_Enabled exception has been raised

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

465: --
466: p_object_version_number := p_object_version_number;
467: p_effective_start_date := null;
468: p_effective_end_date := null;
469: hr_utility.set_location(' Leaving:'||l_proc, 80);
470: when others then
471: --
472: -- A validation or unexpected error has occured
473: --

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

478: p_object_version_number := l_object_version_number;
479: p_effective_start_date := null;
480: p_effective_end_date := null;
481: --
482: hr_utility.set_location(' Leaving:'||l_proc, 90);
483: raise;
484: end delete_run_type_org_method;
485: --
486: end PAY_RUN_TYPE_ORG_METHOD_API;