DBA Data[Home] [Help]

APPS.PER_PERRPROH_XMLP_PKG dependencies on HR_REPORTS

Line 31: c_business_group_name := hr_reports.get_business_group(p_business_group_id);

27: OPEN csr_org_structure_version(p_org_structure_version_id);
28: FETCH csr_org_structure_version INTO p_business_group_id;
29: CLOSE csr_org_structure_version;
30: IF (p_business_group_id IS NOT NULL) THEN
31: c_business_group_name := hr_reports.get_business_group(p_business_group_id);
32: ELSE
33: c_business_group_name := c_global_hierarchy;
34: END IF;
35:

Line 37: hr_reports.get_organization_hierarchy(null,

33: c_business_group_name := c_global_hierarchy;
34: END IF;
35:
36:
37: hr_reports.get_organization_hierarchy(null,
38: p_org_structure_version_id,
39: v_org_structure_name,
40: v_org_version,
41: v_version_start_date,

Line 49: hr_reports.get_organization(p_parent_organization_id,

45: c_version := v_org_version;
46: c_version_start_date := v_version_start_date;
47: c_version_end_date := v_version_end_date;
48:
49: hr_reports.get_organization(p_parent_organization_id,
50: v_parent_org_name,
51: v_parent_org_type);
52:
53: c_parent_org_name := v_parent_org_name;

Line 64: hr_reports.get_lookup_meaning('YES_NO',

60: c_session_date := c_version_start_date;
61: end if;
62:
63: c_managers_shown :=
64: hr_reports.get_lookup_meaning('YES_NO',
65: p_manager_flag);
66:
67: end; return (TRUE);
68: end;

Line 78: hr_reports.get_organization(organization_id_parent,

74: v_org_name varchar2(240);
75: v_org_type varchar2(90);
76: begin
77:
78: hr_reports.get_organization(organization_id_parent,
79: v_org_name,
80: v_org_type);
81: c_type := v_org_type;
82:

Line 91: return(hr_reports.count_org_subordinates(p_org_structure_version_id,organization_id_child));

87:
88: function c_count_org_subords2formula(organization_id_child in number) return number is
89: begin
90:
91: return(hr_reports.count_org_subordinates(p_org_structure_version_id,organization_id_child));
92:
93: end;
94:
95: --function c_count_child_orgs1formula(organization_id_parent in number) return number is

Line 175: return (hr_reports.count_org_subordinates(p_org_structure_version_id,

171: function c_count_org_subordsformula(organization_id_parent in number) return number is
172: begin
173:
174:
175: return (hr_reports.count_org_subordinates(p_org_structure_version_id,
176: organization_id_parent));
177:
178:
179: end;