DBA Data[Home] [Help]

APPS.PSP_REPORT_TEMPLATE_API dependencies on HR_API

Line 7: p_legislation_code varchar(50):=hr_api.userenv_lang;

3: --
4: -- Package Variables
5: --
6: g_package varchar2(33) := ' PSP_Report_Template_API.';
7: p_legislation_code varchar(50):=hr_api.userenv_lang;
8:
9:
10: --
11: -- ----------------------------------------------------------------------------

Line 127: when hr_api.cannot_find_prog_unit then

123: ,P_HUNDRED_PCENT_EFF_AT_PER_ASG => P_HUNDRED_PCENT_EFF_AT_PER_ASG
124: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
125: );
126: exception
127: when hr_api.cannot_find_prog_unit then
128: hr_api.cannot_find_prog_unit_error
129: (p_module_name => 'Create_Report_Template'
130: ,p_hook_type => 'BP'
131: );

Line 128: hr_api.cannot_find_prog_unit_error

124: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
125: );
126: exception
127: when hr_api.cannot_find_prog_unit then
128: hr_api.cannot_find_prog_unit_error
129: (p_module_name => 'Create_Report_Template'
130: ,p_hook_type => 'BP'
131: );
132: end;

Line 197: when hr_api.cannot_find_prog_unit then

193: ,P_HUNDRED_PCENT_EFF_AT_PER_ASG => P_HUNDRED_PCENT_EFF_AT_PER_ASG
194: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
195: );
196: exception
197: when hr_api.cannot_find_prog_unit then
198: hr_api.cannot_find_prog_unit_error
199: (p_module_name => 'Create_Report_Template'
200: ,p_hook_type => 'AP'
201: );

Line 198: hr_api.cannot_find_prog_unit_error

194: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
195: );
196: exception
197: when hr_api.cannot_find_prog_unit then
198: hr_api.cannot_find_prog_unit_error
199: (p_module_name => 'Create_Report_Template'
200: ,p_hook_type => 'AP'
201: );
202: end;

Line 207: raise hr_api.validate_enabled;

203: --
204: -- When in validation only mode raise the Validate_Enabled exception
205: --
206: if p_validate then
207: raise hr_api.validate_enabled;
208: end if;
209: --
210: -- Set all IN OUT and OUT parameters with out values
211: --

Line 216: when hr_api.validate_enabled then

212: p_object_version_number := p_object_version_number;
213: --
214: hr_utility.set_location(' Leaving:'||l_proc, 70);
215: exception
216: when hr_api.validate_enabled then
217: --
218: -- As the Validate_Enabled exception has been raised
219: -- we must rollback to the savepoint
220: --

Line 335: when hr_api.cannot_find_prog_unit then

331: ,P_HUNDRED_PCENT_EFF_AT_PER_ASG => P_HUNDRED_PCENT_EFF_AT_PER_ASG
332: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
333: );
334: exception
335: when hr_api.cannot_find_prog_unit then
336: hr_api.cannot_find_prog_unit_error
337: (p_module_name => 'Update_Report_Template'
338: ,p_hook_type => 'BP'
339: );

Line 336: hr_api.cannot_find_prog_unit_error

332: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
333: );
334: exception
335: when hr_api.cannot_find_prog_unit then
336: hr_api.cannot_find_prog_unit_error
337: (p_module_name => 'Update_Report_Template'
338: ,p_hook_type => 'BP'
339: );
340: end;

Line 405: when hr_api.cannot_find_prog_unit then

401: ,P_HUNDRED_PCENT_EFF_AT_PER_ASG => P_HUNDRED_PCENT_EFF_AT_PER_ASG
402: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
403: );
404: exception
405: when hr_api.cannot_find_prog_unit then
406: hr_api.cannot_find_prog_unit_error
407: (p_module_name => 'Update_Report_Template'
408: ,p_hook_type => 'AP'
409: );

Line 406: hr_api.cannot_find_prog_unit_error

402: ,P_SELECTION_MATCH_LEVEL => P_SELECTION_MATCH_LEVEL
403: );
404: exception
405: when hr_api.cannot_find_prog_unit then
406: hr_api.cannot_find_prog_unit_error
407: (p_module_name => 'Update_Report_Template'
408: ,p_hook_type => 'AP'
409: );
410: end;

Line 415: raise hr_api.validate_enabled;

411: --
412: -- When in validation only mode raise the Validate_Enabled exception
413: --
414: if p_validate then
415: raise hr_api.validate_enabled;
416: end if;
417: --
418: -- Set all IN OUT and OUT parameters with out values
419: --

Line 427: when hr_api.validate_enabled then

423: -- p_some_warning := p_some_warning ;
424: --
425: hr_utility.set_location(' Leaving:'||l_proc, 70);
426: exception
427: when hr_api.validate_enabled then
428: --
429: -- As the Validate_Enabled exception has been raised
430: -- we must rollback to the savepoint
431: --

Line 503: when hr_api.cannot_find_prog_unit then

499: PSP_Report_Template_BK3.Delete_Report_template_b
500: ( P_TEMPLATE_ID => P_TEMPLATE_ID
501: );
502: exception
503: when hr_api.cannot_find_prog_unit then
504: hr_api.cannot_find_prog_unit_error
505: (p_module_name => 'Delete_Report_template'
506: ,p_hook_type => 'BP'
507: );

Line 504: hr_api.cannot_find_prog_unit_error

500: ( P_TEMPLATE_ID => P_TEMPLATE_ID
501: );
502: exception
503: when hr_api.cannot_find_prog_unit then
504: hr_api.cannot_find_prog_unit_error
505: (p_module_name => 'Delete_Report_template'
506: ,p_hook_type => 'BP'
507: );
508: end;

Line 537: when hr_api.cannot_find_prog_unit then

533: ,P_WARNING => P_WARNING
534:
535: );
536: exception
537: when hr_api.cannot_find_prog_unit then
538: hr_api.cannot_find_prog_unit_error
539: (p_module_name => 'Delete_Report_template'
540: ,p_hook_type => 'AP'
541: );

Line 538: hr_api.cannot_find_prog_unit_error

534:
535: );
536: exception
537: when hr_api.cannot_find_prog_unit then
538: hr_api.cannot_find_prog_unit_error
539: (p_module_name => 'Delete_Report_template'
540: ,p_hook_type => 'AP'
541: );
542: end;

Line 547: raise hr_api.validate_enabled;

543: --
544: -- When in validation only mode raise the Validate_Enabled exception
545: --
546: if p_validate then
547: raise hr_api.validate_enabled;
548: end if;
549: --
550: -- Set all IN OUT and OUT parameters with out values
551: --

Line 559: when hr_api.validate_enabled then

555: -- p_some_warning := p_some_warning ;
556: --
557: hr_utility.set_location(' Leaving:'||l_proc, 70);
558: exception
559: when hr_api.validate_enabled then
560: --
561: -- As the Validate_Enabled exception has been raised
562: -- we must rollback to the savepoint
563: --