DBA Data[Home] [Help]

APPS.HR_NL_CALC_TARGET_GROUP dependencies on PER_ALL_PEOPLE_F

Line 4: function get_country_code(p_person_id per_all_people_f.person_id%type,

1: PACKAGE HR_NL_CALC_TARGET_GROUP AUTHID CURRENT_USER AS
2: /* $Header: pernlctg.pkh 115.2 2002/05/17 05:58:18 pkm ship $ */
3: --
4: function get_country_code(p_person_id per_all_people_f.person_id%type,
5: p_contact_type per_contact_relationships.contact_type%type,
6: p_session_date date) return VARCHAR2;
7: --
8: function run_formula (p_country_of_birth_fth per_all_people_f.country_of_birth%type,

Line 8: function run_formula (p_country_of_birth_fth per_all_people_f.country_of_birth%type,

4: function get_country_code(p_person_id per_all_people_f.person_id%type,
5: p_contact_type per_contact_relationships.contact_type%type,
6: p_session_date date) return VARCHAR2;
7: --
8: function run_formula (p_country_of_birth_fth per_all_people_f.country_of_birth%type,
9: p_country_of_birth_mth per_all_people_f.country_of_birth%type,
10: p_country_of_birth_emp per_all_people_f.country_of_birth%type,
11: p_business_group_id per_all_people_f.business_group_id%type,
12: p_session_date date) return VARCHAR2;

Line 9: p_country_of_birth_mth per_all_people_f.country_of_birth%type,

5: p_contact_type per_contact_relationships.contact_type%type,
6: p_session_date date) return VARCHAR2;
7: --
8: function run_formula (p_country_of_birth_fth per_all_people_f.country_of_birth%type,
9: p_country_of_birth_mth per_all_people_f.country_of_birth%type,
10: p_country_of_birth_emp per_all_people_f.country_of_birth%type,
11: p_business_group_id per_all_people_f.business_group_id%type,
12: p_session_date date) return VARCHAR2;
13: --

Line 10: p_country_of_birth_emp per_all_people_f.country_of_birth%type,

6: p_session_date date) return VARCHAR2;
7: --
8: function run_formula (p_country_of_birth_fth per_all_people_f.country_of_birth%type,
9: p_country_of_birth_mth per_all_people_f.country_of_birth%type,
10: p_country_of_birth_emp per_all_people_f.country_of_birth%type,
11: p_business_group_id per_all_people_f.business_group_id%type,
12: p_session_date date) return VARCHAR2;
13: --
14: FUNCTION get_target_group(p_person_id per_all_people_f.person_id%type,

Line 11: p_business_group_id per_all_people_f.business_group_id%type,

7: --
8: function run_formula (p_country_of_birth_fth per_all_people_f.country_of_birth%type,
9: p_country_of_birth_mth per_all_people_f.country_of_birth%type,
10: p_country_of_birth_emp per_all_people_f.country_of_birth%type,
11: p_business_group_id per_all_people_f.business_group_id%type,
12: p_session_date date) return VARCHAR2;
13: --
14: FUNCTION get_target_group(p_person_id per_all_people_f.person_id%type,
15: p_session_date date) return VARCHAR2;

Line 14: FUNCTION get_target_group(p_person_id per_all_people_f.person_id%type,

10: p_country_of_birth_emp per_all_people_f.country_of_birth%type,
11: p_business_group_id per_all_people_f.business_group_id%type,
12: p_session_date date) return VARCHAR2;
13: --
14: FUNCTION get_target_group(p_person_id per_all_people_f.person_id%type,
15: p_session_date date) return VARCHAR2;
16:
17: END HR_NL_CALC_TARGET_GROUP;
18: