DBA Data[Home] [Help]

APPS.PER_PERRPRPH_XMLP_PKG dependencies on HR_REPORTS

Line 19: hr_reports.get_business_group(p_business_group_id);

15:
16: --hr_standard.event('BEFORE REPORT');
17:
18: c_business_group_name :=
19: hr_reports.get_business_group(p_business_group_id);
20:
21: hr_reports.get_position_hierarchy(null,
22: p_pos_structure_version_id,
23: v_pos_hierarchy_name,

Line 21: hr_reports.get_position_hierarchy(null,

17:
18: c_business_group_name :=
19: hr_reports.get_business_group(p_business_group_id);
20:
21: hr_reports.get_position_hierarchy(null,
22: p_pos_structure_version_id,
23: v_pos_hierarchy_name,
24: v_version,
25: v_version_start_date,

Line 43: hr_reports.get_position(p_parent_position_id, c_session_date);

39: end if;
40:
41:
42: c_parent_position_name :=
43: hr_reports.get_position(p_parent_position_id, c_session_date);
44:
45:
46: c_holders_shown :=
47: hr_reports.get_lookup_meaning('YES_NO',

Line 47: hr_reports.get_lookup_meaning('YES_NO',

43: hr_reports.get_position(p_parent_position_id, c_session_date);
44:
45:
46: c_holders_shown :=
47: hr_reports.get_lookup_meaning('YES_NO',
48: p_holder_flag);
49:
50: end; return (TRUE);
51: end;

Line 58: return (hr_reports.get_position(parent_position_id,c_session_date));

54: begin
55:
56: begin
57:
58: return (hr_reports.get_position(parent_position_id,c_session_date));
59:
60: end;
61: RETURN NULL; end;
62:

Line 66: return (hr_reports.count_pos_subordinates(p_pos_structure_version_id,

62:
63: function c_count_subordsformula(parent_position_id in number) return number is
64: begin
65:
66: return (hr_reports.count_pos_subordinates(p_pos_structure_version_id,
67: parent_position_id));
68:
69: end;
70:

Line 74: return(hr_reports.count_pos_subordinates(p_pos_structure_version_id,

70:
71: function c_count_subords1formula(subordinate_position_id in number) return number is
72: begin
73:
74: return(hr_reports.count_pos_subordinates(p_pos_structure_version_id,
75: subordinate_position_id));
76:
77:
78: end;