DBA Data[Home] [Help]

APPS.AME_TRANS_TYPE_API dependencies on HR_API

Line 14: ,p_language_code in varchar2 default hr_api.userenv_lang

10: -- ----------------------------------------------------------------------------
11: --
12: procedure create_ame_transaction_type
13: (p_validate in boolean default false
14: ,p_language_code in varchar2 default hr_api.userenv_lang
15: ,p_application_name in varchar2
16: ,p_fnd_application_id in number
17: ,p_transaction_type_id in varchar2
18: ,p_application_id out nocopy number

Line 77: when hr_api.cannot_find_prog_unit then

73: ,p_fnd_application_id => p_fnd_application_id
74: ,p_transaction_type_id => p_transaction_type_id
75: );
76: exception
77: when hr_api.cannot_find_prog_unit then
78: hr_api.cannot_find_prog_unit_error(p_module_name => 'create_ame_transaction_type'
79: ,p_hook_type => 'BP'
80: );
81: end;

Line 78: hr_api.cannot_find_prog_unit_error(p_module_name => 'create_ame_transaction_type'

74: ,p_transaction_type_id => p_transaction_type_id
75: );
76: exception
77: when hr_api.cannot_find_prog_unit then
78: hr_api.cannot_find_prog_unit_error(p_module_name => 'create_ame_transaction_type'
79: ,p_hook_type => 'BP'
80: );
81: end;
82: --

Line 166: when hr_api.cannot_find_prog_unit then

162: ,p_start_date => l_start_date
163: ,p_end_date => l_end_date
164: );
165: exception
166: when hr_api.cannot_find_prog_unit then
167: hr_api.cannot_find_prog_unit_error(p_module_name => 'create_ame_transaction_type'
168: ,p_hook_type => 'AP'
169: );
170: end;

Line 167: hr_api.cannot_find_prog_unit_error(p_module_name => 'create_ame_transaction_type'

163: ,p_end_date => l_end_date
164: );
165: exception
166: when hr_api.cannot_find_prog_unit then
167: hr_api.cannot_find_prog_unit_error(p_module_name => 'create_ame_transaction_type'
168: ,p_hook_type => 'AP'
169: );
170: end;
171: --

Line 175: raise hr_api.validate_enabled;

171: --
172: -- When in validation only mode raise the Validate_Enabled exception
173: --
174: if p_validate then
175: raise hr_api.validate_enabled;
176: end if;
177: --
178: -- Set all IN OUT and OUT parameters with out values
179: --

Line 187: when hr_api.validate_enabled then

183: p_end_date := l_end_date;
184: --
185: hr_utility.set_location(' Leaving:'||l_proc, 70);
186: exception
187: when hr_api.validate_enabled then
188: --
189: -- As the Validate_Enabled exception has been raised
190: -- we must rollback to the savepoint
191: --

Line 228: ,p_language_code in varchar2 default hr_api.userenv_lang

224: -- ----------------------------------------------------------------------------
225: --
226: procedure update_ame_transaction_type
227: (p_validate in boolean default false
228: ,p_language_code in varchar2 default hr_api.userenv_lang
229: ,p_application_name in varchar2 default hr_api.g_varchar2
230: ,p_application_id in number
231: ,p_object_version_number in out nocopy number
232: ,p_start_date out nocopy date

Line 229: ,p_application_name in varchar2 default hr_api.g_varchar2

225: --
226: procedure update_ame_transaction_type
227: (p_validate in boolean default false
228: ,p_language_code in varchar2 default hr_api.userenv_lang
229: ,p_application_name in varchar2 default hr_api.g_varchar2
230: ,p_application_id in number
231: ,p_object_version_number in out nocopy number
232: ,p_start_date out nocopy date
233: ,p_end_date out nocopy date

Line 263: when hr_api.cannot_find_prog_unit then

259: ,p_application_id => p_application_id
260: ,p_object_version_number => p_object_version_number
261: );
262: exception
263: when hr_api.cannot_find_prog_unit then
264: hr_api.cannot_find_prog_unit_error(p_module_name => 'update_ame_transaction_type'
265: ,p_hook_type => 'BP'
266: );
267: end;

Line 264: hr_api.cannot_find_prog_unit_error(p_module_name => 'update_ame_transaction_type'

260: ,p_object_version_number => p_object_version_number
261: );
262: exception
263: when hr_api.cannot_find_prog_unit then
264: hr_api.cannot_find_prog_unit_error(p_module_name => 'update_ame_transaction_type'
265: ,p_hook_type => 'BP'
266: );
267: end;
268: --

Line 272: ,p_datetrack_mode => hr_api.g_update

268: --
269: -- Process Logic
270: --
271: /*ame_aca_upd.upd(p_effective_date => sysdate
272: ,p_datetrack_mode => hr_api.g_update
273: ,p_application_id => p_application_id
274: ,p_object_version_number => p_object_version_number
275: ,p_line_item_id_query => hr_api.g_varchar2
276: ,p_security_group_id => hr_api.g_number

Line 275: ,p_line_item_id_query => hr_api.g_varchar2

271: /*ame_aca_upd.upd(p_effective_date => sysdate
272: ,p_datetrack_mode => hr_api.g_update
273: ,p_application_id => p_application_id
274: ,p_object_version_number => p_object_version_number
275: ,p_line_item_id_query => hr_api.g_varchar2
276: ,p_security_group_id => hr_api.g_number
277: ,p_start_date => l_start_date
278: ,p_end_date => l_end_date
279: );*/

Line 276: ,p_security_group_id => hr_api.g_number

272: ,p_datetrack_mode => hr_api.g_update
273: ,p_application_id => p_application_id
274: ,p_object_version_number => p_object_version_number
275: ,p_line_item_id_query => hr_api.g_varchar2
276: ,p_security_group_id => hr_api.g_number
277: ,p_start_date => l_start_date
278: ,p_end_date => l_end_date
279: );*/
280: --

Line 299: when hr_api.cannot_find_prog_unit then

295: ,p_start_date => l_start_date
296: ,p_end_date => l_end_date
297: );
298: exception
299: when hr_api.cannot_find_prog_unit then
300: hr_api.cannot_find_prog_unit_error(p_module_name => 'update_ame_transaction_type'
301: ,p_hook_type => 'AP'
302: );
303: end;

Line 300: hr_api.cannot_find_prog_unit_error(p_module_name => 'update_ame_transaction_type'

296: ,p_end_date => l_end_date
297: );
298: exception
299: when hr_api.cannot_find_prog_unit then
300: hr_api.cannot_find_prog_unit_error(p_module_name => 'update_ame_transaction_type'
301: ,p_hook_type => 'AP'
302: );
303: end;
304: --

Line 308: raise hr_api.validate_enabled;

304: --
305: -- When in validation only mode raise the Validate_Enabled exception
306: --
307: if p_validate then
308: raise hr_api.validate_enabled;
309: end if;
310: --
311: -- Set all IN OUT and OUT parameters with out values.
312: --

Line 318: when hr_api.validate_enabled then

314: p_end_date := l_end_date;
315: --
316: hr_utility.set_location(' Leaving:'||l_proc, 70);
317: exception
318: when hr_api.validate_enabled then
319: --
320: -- As the Validate_Enabled exception has been raised
321: -- we must rollback to the savepoint
322: --

Line 453: when hr_api.cannot_find_prog_unit then

449: (p_application_id => p_application_id
450: ,p_object_version_number => p_object_version_number
451: );
452: exception
453: when hr_api.cannot_find_prog_unit then
454: hr_api.cannot_find_prog_unit_error(p_module_name => 'delete_ame_transaction_type'
455: ,p_hook_type => 'BP'
456: );
457: end;

Line 454: hr_api.cannot_find_prog_unit_error(p_module_name => 'delete_ame_transaction_type'

450: ,p_object_version_number => p_object_version_number
451: );
452: exception
453: when hr_api.cannot_find_prog_unit then
454: hr_api.cannot_find_prog_unit_error(p_module_name => 'delete_ame_transaction_type'
455: ,p_hook_type => 'BP'
456: );
457: end;
458: --

Line 579: ,p_datetrack_mode => hr_api.g_delete

575: --
576: -- Process Logic
577: --
578: ame_aca_del.del(p_effective_date => sysdate
579: ,p_datetrack_mode => hr_api.g_delete
580: ,p_application_id => p_application_id
581: ,p_object_version_number => p_object_version_number
582: ,p_start_date => l_start_date
583: ,p_end_date => l_end_date

Line 596: when hr_api.cannot_find_prog_unit then

592: ,p_start_date => l_start_date
593: ,p_end_date => l_end_date
594: );
595: exception
596: when hr_api.cannot_find_prog_unit then
597: hr_api.cannot_find_prog_unit_error(p_module_name => 'delete_ame_transaction_type'
598: ,p_hook_type => 'AP'
599: );
600: end;

Line 597: hr_api.cannot_find_prog_unit_error(p_module_name => 'delete_ame_transaction_type'

593: ,p_end_date => l_end_date
594: );
595: exception
596: when hr_api.cannot_find_prog_unit then
597: hr_api.cannot_find_prog_unit_error(p_module_name => 'delete_ame_transaction_type'
598: ,p_hook_type => 'AP'
599: );
600: end;
601: --

Line 605: raise hr_api.validate_enabled;

601: --
602: -- When in validation only mode raise the Validate_Enabled exception
603: --
604: if p_validate then
605: raise hr_api.validate_enabled;
606: end if;
607: --
608: -- Set all IN OUT and OUT parameters with out values.
609: --

Line 615: when hr_api.validate_enabled then

611: p_end_date := l_end_date;
612: --
613: hr_utility.set_location(' Leaving:'||l_proc, 70);
614: exception
615: when hr_api.validate_enabled then
616: --
617: -- As the Validate_Enabled exception has been raised
618: -- we must rollback to the savepoint
619: --