DBA Data[Home] [Help]

APPS.PER_JP_CTR_UTILITY_PKG dependencies on PER_CONTACT_EXTRA_INFO_F

Line 8: c_kou_information_type constant per_contact_extra_info_f.information_type%TYPE := 'JP_ITAX_DEPENDENT';

4: -- Constants
5: --
6: c_package constant varchar2(31) := 'per_jp_ctr_utility_pkg.';
7: c_default_itax_dpnt_ref_type constant hr_lookups.lookup_code%type := 'CTR_EE';
8: c_kou_information_type constant per_contact_extra_info_f.information_type%TYPE := 'JP_ITAX_DEPENDENT';
9: c_otsu_information_type constant per_contact_extra_info_f.information_type%TYPE := 'JP_ITAX_DEPENDENT_ON_OTHER_PAY';
10: c_husband_kanji constant hr_lookups.meaning%type := fnd_message.get_string('PAY', 'PAY_JP_HUSBAND');
11: c_husband_kana constant hr_lookups.meaning%type := hr_jp_standard_pkg.upper_kana(fnd_message.get_string('PAY', 'PAY_JP_HUSBAND_KANA'));
12: c_wife_kanji constant hr_lookups.meaning%type := fnd_message.get_string('PAY', 'PAY_JP_WIFE');

Line 9: c_otsu_information_type constant per_contact_extra_info_f.information_type%TYPE := 'JP_ITAX_DEPENDENT_ON_OTHER_PAY';

5: --
6: c_package constant varchar2(31) := 'per_jp_ctr_utility_pkg.';
7: c_default_itax_dpnt_ref_type constant hr_lookups.lookup_code%type := 'CTR_EE';
8: c_kou_information_type constant per_contact_extra_info_f.information_type%TYPE := 'JP_ITAX_DEPENDENT';
9: c_otsu_information_type constant per_contact_extra_info_f.information_type%TYPE := 'JP_ITAX_DEPENDENT_ON_OTHER_PAY';
10: c_husband_kanji constant hr_lookups.meaning%type := fnd_message.get_string('PAY', 'PAY_JP_HUSBAND');
11: c_husband_kana constant hr_lookups.meaning%type := hr_jp_standard_pkg.upper_kana(fnd_message.get_string('PAY', 'PAY_JP_HUSBAND_KANA'));
12: c_wife_kanji constant hr_lookups.meaning%type := fnd_message.get_string('PAY', 'PAY_JP_WIFE');
13: c_wife_kana constant hr_lookups.meaning%type := hr_jp_standard_pkg.upper_kana(fnd_message.get_string('PAY', 'PAY_JP_WIFE_KANA'));

Line 58: -- PER_CONTACT_EXTRA_INFO_F

54: -- ----------------------------------------------------------------------------
55: --
56: -- Procedure to derive dependent information from
57: -- PER_CONTACT_RELATIONSHIPS
58: -- PER_CONTACT_EXTRA_INFO_F
59: --
60: -- ----------------------------------------------------------------------------
61: procedure get_itax_dpnt_info(
62: p_assignment_id in number,

Line 72: l_information_type per_contact_extra_info_f.information_type%TYPE;

68: l_proc varchar2(61) := c_package || 'get_itax_dpnt_info';
69: l_effective_date date := p_effective_date;
70: l_soy date;
71: l_eoy date;
72: l_information_type per_contact_extra_info_f.information_type%TYPE;
73: l_index number := 0;
74: --
75: -- Note that the age used below is January 1st in the next calendar year.
76: -- Normally, effective date used is date paid, but if contact person is deceased,

Line 149: -- per_contact_extra_info_f cei,

145: -- )
146: -- /* Deceased person is available until the end of year in which the effective_date falls. */
147: -- and nvl(trunc(per.date_of_death, 'YYYY'), l_soy) >= l_soy
148: -- ) v,
149: -- per_contact_extra_info_f cei,
150: -- hr_lookups hrl1,
151: -- hr_lookups hrl2
152: -- /* Here again narrows CTR date range either date_of_death or effective_date. */
153: -- where v.effective_date

Line 194: per_contact_extra_info_f cei,

190: per.last_name LAST_NAME_KANA,
191: per.first_name FIRST_NAME_KANA
192: from per_all_assignments_f asg,
193: per_contact_relationships ctr,
194: per_contact_extra_info_f cei,
195: per_all_people_f per,
196: hr_lookups hrl1,
197: hr_lookups hrl2
198: where asg.assignment_id = p_assignment_id