DBA Data[Home] [Help]

APPS.PER_PERRPRMS_XMLP_PKG dependencies on HR_REPORTS

Line 14: hr_reports.get_business_group(p_business_group_id);

10: P_SESSION_DATE1:=TO_CHAR(P_SESSION_DATE,'DD-MON-YYYY');
11: --hr_standard.event('BEFORE REPORT');
12:
13: c_business_group_name :=
14: hr_reports.get_business_group(p_business_group_id);
15:
16: select legislation_code
17: into l_legislation_code
18: from per_business_groups

Line 26: hr_reports.get_position(p_position_id);

22: IF p_position_id is not null then
23: c_job_position_id := p_position_id;
24: p_job_position := 'POSITION_ID';
25: c_job_position_name :=
26: hr_reports.get_position(p_position_id);
27: ELSIF
28: p_job_id is not null then
29: c_job_position_id := p_job_id;
30: p_job_position := 'JOB_ID';

Line 32: hr_reports.get_job(p_job_id);

28: p_job_id is not null then
29: c_job_position_id := p_job_id;
30: p_job_position := 'JOB_ID';
31: c_job_position_name :=
32: hr_reports.get_job(p_job_id);
33: END IF;
34:
35:
36: c_person_type_desc :=

Line 37: hr_reports.get_lookup_meaning('EMP_OR_APL',p_person_type);

33: END IF;
34:
35:
36: c_person_type_desc :=
37: hr_reports.get_lookup_meaning('EMP_OR_APL',p_person_type);
38:
39:
40:
41: null;

Line 58: hr_reports.person_matching_skills

54:
55: if c_special_info_count = 0 then return(false);
56: else
57: return(
58: hr_reports.person_matching_skills
59: (person_id1
60: ,C_JOB_POSITION_ID
61: ,substr(P_JOB_POSITION,1,1)
62: ,P_MATCHING_LEVEL

Line 89: return(hr_reports.get_lookup_meaning

85:
86: function c_essential_decodeformula(essential in varchar2) return varchar2 is
87: begin
88:
89: return(hr_reports.get_lookup_meaning
90: ('YES_NO',essential));
91: end;
92:
93: function AfterReport return boolean is