DBA Data[Home] [Help]

PACKAGE: APPS.PER_ZA_EE_DIFFERENTIAL_PKG

Source


1 package per_za_ee_differential_pkg AUTHID CURRENT_USER as
2 /* $Header: perzaeid.pkh 120.0.12010000.1 2009/12/08 06:30:25 rbabla noship $ */
3 /*
4 ==============================================================================
5 
6 MODIFICATION HISTORY
7 Name           Date        Version Bug     Text
8 -------------- ----------- ------- ------- -----------------------------
9 R Babla        24-Nov-2009   115.0 9112237  Initial Version
10 ==============================================================================
11 */
12 P_BUSINESS_GROUP_ID number;
13 P_REPORT_DATE  date;
14 P_LEGAL_ENTITY_ID number;
15 P_SUBMISSION_DATE date;
16 P_SALARY_METHOD   varchar2(50);
17 
18 function BEFOREREPORT return boolean;
19 function AFTERREPORT return boolean;
20 
21 function get_seta_classification
22 (
23    p_business_group_id      in per_all_assignments_f.business_group_id%type,
24    p_legal_entity_id        in per_assignment_extra_info.aei_information7%type default null
25 ) return varchar2;
26 
27 
28 
29 FUNCTION get_total(p_employment_type IN VARCHAR2
30                   ,p_emp_type varchar2
31                   ,p_report_id varchar2
32                   ,p_legal_entity_id NUMBER) RETURN NUMBER;
33 
34 FUNCTION get_row_total(p_employment_type IN VARCHAR2
35                       ,p_inc_num varchar2
36 		      ,p_legal_entity_id NUMBER) RETURN NUMBER;
37 
38 end per_za_ee_differential_pkg;