DBA Data[Home] [Help]

APPS.HR_HIERARCHY_ELEMENT_API dependencies on HR_API

Line 94: when hr_api.cannot_find_prog_unit then

90: ,p_business_group_id => p_business_group_id
91: ,p_pos_control_enabled_flag => p_pos_control_enabled_flag
92: );
93: exception
94: when hr_api.cannot_find_prog_unit then
95: hr_api.cannot_find_prog_unit_error
96: (p_module_name => 'create_hierarchy_element'
97: ,p_hook_type => 'BP'
98: );

Line 95: hr_api.cannot_find_prog_unit_error

91: ,p_pos_control_enabled_flag => p_pos_control_enabled_flag
92: );
93: exception
94: when hr_api.cannot_find_prog_unit then
95: hr_api.cannot_find_prog_unit_error
96: (p_module_name => 'create_hierarchy_element'
97: ,p_hook_type => 'BP'
98: );
99: end;

Line 118: ,p_end_of_time => hr_api.g_eot --Bug 2879820

114: --
115: per_org_structure_elements_pkg.check_org_active
116: (p_org_id_parent => p_Organization_Id_Parent
117: ,p_date_from => l_date_from --Bug 2879820
118: ,p_end_of_time => hr_api.g_eot --Bug 2879820
119: ,p_warning_raised => l_warning_raised
120: );
121: if l_warning_raised= 'Y' then
122: p_inactive_org_warning := TRUE;

Line 201: when hr_api.cannot_find_prog_unit then

197: ,p_org_structure_element_id => p_org_structure_element_id
198: ,p_object_version_number => p_object_version_number
199: );
200: exception
201: when hr_api.cannot_find_prog_unit then
202: hr_api.cannot_find_prog_unit_error
203: (p_module_name => 'create_hierarchy_element'
204: ,p_hook_type => 'AP'
205: );

Line 202: hr_api.cannot_find_prog_unit_error

198: ,p_object_version_number => p_object_version_number
199: );
200: exception
201: when hr_api.cannot_find_prog_unit then
202: hr_api.cannot_find_prog_unit_error
203: (p_module_name => 'create_hierarchy_element'
204: ,p_hook_type => 'AP'
205: );
206: end;

Line 211: raise hr_api.validate_enabled;

207: --
208: -- When in validation only mode raise the Validate_Enabled exception
209: --
210: if p_validate then
211: raise hr_api.validate_enabled;
212: end if;
213: --
214: -- Set all output arguments
215: -- use values returned from ins (PZWALKER)

Line 222: when hr_api.validate_enabled then

218: -- p_some_warning := ;
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
225: -- we must rollback to the savepoint
226: --

Line 320: ,p_organization_id_parent in number default hr_api.g_number

316: procedure update_hierarchy_element
317: (p_validate in boolean default false
318: ,p_effective_date in date
319: ,p_org_structure_element_id in number
320: ,p_organization_id_parent in number default hr_api.g_number
321: ,p_organization_id_child in number default hr_api.g_number
322: ,p_pos_control_enabled_flag in varchar2 default hr_api.g_varchar2
323: ,p_object_version_number in out nocopy number
324: ) is

Line 321: ,p_organization_id_child in number default hr_api.g_number

317: (p_validate in boolean default false
318: ,p_effective_date in date
319: ,p_org_structure_element_id in number
320: ,p_organization_id_parent in number default hr_api.g_number
321: ,p_organization_id_child in number default hr_api.g_number
322: ,p_pos_control_enabled_flag in varchar2 default hr_api.g_varchar2
323: ,p_object_version_number in out nocopy number
324: ) is
325: --

Line 322: ,p_pos_control_enabled_flag in varchar2 default hr_api.g_varchar2

318: ,p_effective_date in date
319: ,p_org_structure_element_id in number
320: ,p_organization_id_parent in number default hr_api.g_number
321: ,p_organization_id_child in number default hr_api.g_number
322: ,p_pos_control_enabled_flag in varchar2 default hr_api.g_varchar2
323: ,p_object_version_number in out nocopy number
324: ) is
325: --
326: -- Declare cursors and local variables

Line 359: when hr_api.cannot_find_prog_unit then

355: ,p_pos_control_enabled_flag => p_pos_control_enabled_flag
356: ,p_object_version_number => p_object_version_number
357: );
358: exception
359: when hr_api.cannot_find_prog_unit then
360: hr_api.cannot_find_prog_unit_error
361: (p_module_name => 'update_hierarchy_element'
362: ,p_hook_type => 'BP'
363: );

Line 360: hr_api.cannot_find_prog_unit_error

356: ,p_object_version_number => p_object_version_number
357: );
358: exception
359: when hr_api.cannot_find_prog_unit then
360: hr_api.cannot_find_prog_unit_error
361: (p_module_name => 'update_hierarchy_element'
362: ,p_hook_type => 'BP'
363: );
364: end;

Line 398: when hr_api.cannot_find_prog_unit then

394: ,p_pos_control_enabled_flag => p_pos_control_enabled_flag
395: ,p_object_version_number => p_object_version_number
396: );
397: exception
398: when hr_api.cannot_find_prog_unit then
399: hr_api.cannot_find_prog_unit_error
400: (p_module_name => 'update_hierarchy_element'
401: ,p_hook_type => 'AP'
402: );

Line 399: hr_api.cannot_find_prog_unit_error

395: ,p_object_version_number => p_object_version_number
396: );
397: exception
398: when hr_api.cannot_find_prog_unit then
399: hr_api.cannot_find_prog_unit_error
400: (p_module_name => 'update_hierarchy_element'
401: ,p_hook_type => 'AP'
402: );
403: end;

Line 408: raise hr_api.validate_enabled;

404: --
405: -- When in validation only mode raise the Validate_Enabled exception
406: --
407: if p_validate then
408: raise hr_api.validate_enabled;
409: end if;
410: --
411: -- Set all output arguments
412: --

Line 417: when hr_api.validate_enabled then

413: p_object_version_number := l_object_version_number;
414: --
415: hr_utility.set_location(' Leaving:'||l_proc, 70);
416: exception
417: when hr_api.validate_enabled then
418: --
419: -- As the Validate_Enabled exception has been raised
420: -- we must rollback to the savepoint
421: --

Line 476: when hr_api.cannot_find_prog_unit then

472: (p_org_structure_element_id => p_org_structure_element_id
473: ,p_object_version_number => p_object_version_number
474: );
475: exception
476: when hr_api.cannot_find_prog_unit then
477: hr_api.cannot_find_prog_unit_error
478: (p_module_name => 'delete_hierarchy_element'
479: ,p_hook_type => 'BP'
480: );

Line 477: hr_api.cannot_find_prog_unit_error

473: ,p_object_version_number => p_object_version_number
474: );
475: exception
476: when hr_api.cannot_find_prog_unit then
477: hr_api.cannot_find_prog_unit_error
478: (p_module_name => 'delete_hierarchy_element'
479: ,p_hook_type => 'BP'
480: );
481: end;

Line 511: when hr_api.cannot_find_prog_unit then

507: (p_org_structure_element_id => p_org_structure_element_id
508: ,p_object_version_number => p_object_version_number
509: );
510: exception
511: when hr_api.cannot_find_prog_unit then
512: hr_api.cannot_find_prog_unit_error
513: (p_module_name => 'delete_hierarchy_element'
514: ,p_hook_type => 'AP'
515: );

Line 512: hr_api.cannot_find_prog_unit_error

508: ,p_object_version_number => p_object_version_number
509: );
510: exception
511: when hr_api.cannot_find_prog_unit then
512: hr_api.cannot_find_prog_unit_error
513: (p_module_name => 'delete_hierarchy_element'
514: ,p_hook_type => 'AP'
515: );
516: end;

Line 521: raise hr_api.validate_enabled;

517: --
518: -- When in validation only mode raise the Validate_Enabled exception
519: --
520: if p_validate then
521: raise hr_api.validate_enabled;
522: end if;
523: --
524: -- Set all output arguments
525: --

Line 529: when hr_api.validate_enabled then

525: --
526: --
527: hr_utility.set_location(' Leaving:'||l_proc, 70);
528: exception
529: when hr_api.validate_enabled then
530: --
531: -- As the Validate_Enabled exception has been raised
532: -- we must rollback to the savepoint
533: --