DBA Data[Home] [Help]

APPS.PAY_COSTING_DETAIL_REP_PKG dependencies on HR_ORGANIZATION_UNITS

Line 37: TYPE tab_tax_unit_name is TABLE OF HR_ORGANIZATION_UNITS.NAME%TYPE index by BINARY_INTEGER;

33: TYPE costing_rec IS RECORD (segment_label varchar2(100),
34: column_name varchar2(100));
35: TYPE costing_tab IS TABLE OF costing_rec INDEX BY BINARY_INTEGER;
36:
37: TYPE tab_tax_unit_name is TABLE OF HR_ORGANIZATION_UNITS.NAME%TYPE index by BINARY_INTEGER;
38: g_tax_unit_name tab_tax_unit_name;
39:
40: function get_costing_tax_unit_id(p_ACTION_TYPE pay_payroll_actions.action_type%TYPE,
41: p_TAX_UNIT_ID pay_assignment_actions.TAX_UNIT_ID%TYPE,

Line 45: function get_costing_tax_unit_name(p_tax_unit_id HR_ORGANIZATION_UNITS.ORGANIZATION_ID%TYPE)

41: p_TAX_UNIT_ID pay_assignment_actions.TAX_UNIT_ID%TYPE,
42: p_assignment_action_id pay_assignment_actions.assignment_action_id%TYPE,
43: p_element_type_id pay_element_types_f.element_type_id%TYPE
44: ) return number;
45: function get_costing_tax_unit_name(p_tax_unit_id HR_ORGANIZATION_UNITS.ORGANIZATION_ID%TYPE)
46: return VARCHAR2;
47:
48: end pay_costing_detail_rep_pkg;