DBA Data[Home] [Help]

APPS.PER_JP_PEM_RULES dependencies on HR_MULTI_MESSAGE

Line 29: hr_multi_message.add(p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION1');

25: if not hr_jp_standard_pkg.is_hankaku(p_pem_information1) then
26: fnd_message.set_name('PER', 'HR_JP_IS_NOT_HANKAKU');
27: fnd_message.set_token('NAME', 'HR_JP_EMPLOYER_NAME_KANA', true);
28: fnd_message.set_token('VALUE', p_pem_information1);
29: hr_multi_message.add(p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION1');
30: end if;
31: end if;
32: --
33: if p_pem_information2 is not null then

Line 38: hr_multi_message.add(p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION2');

34: if not hr_jp_standard_pkg.is_hankaku(p_pem_information2) then
35: fnd_message.set_name('PER', 'HR_JP_IS_NOT_HANKAKU');
36: fnd_message.set_token('NAME', 'HR_JP_EMPLOYER_ADDRESS_KANA', true);
37: fnd_message.set_token('VALUE', p_pem_information2);
38: hr_multi_message.add(p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION2');
39: end if;
40: end if;
41: --
42: /*

Line 55: hr_multi_message.add(p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION3');

51: fnd_message.set_token('HIGH_NAME', 'HR_JP_EMPLOYMENT_INCOME', true);
52: fnd_message.set_token('HIGH_VALUE', to_char(l_employment_income, fnd_currency.get_format_mask('JPY', 38)));
53: fnd_message.set_token('LOW_NAME', 'HR_JP_TOTAL_DEDUCTIONS', true);
54: fnd_message.set_token('LOW_VALUE', to_char(l_total_deductions, fnd_currency.get_format_mask('JPY', 38)));
55: hr_multi_message.add(p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION3');
56: end if;
57: --
58: if l_si_prems < l_mutual_aid_prem then
59: fnd_message.set_name('PER', 'HR_JP_A_LESS_THAN_B');

Line 64: hr_multi_message.add(

60: fnd_message.set_token('HIGH_NAME', 'HR_JP_SI_PREMS', true);
61: fnd_message.set_token('HIGH_VALUE', to_char(l_si_prems, fnd_currency.get_format_mask('JPY', 38)));
62: fnd_message.set_token('LOW_NAME', 'HR_JP_MUTUAL_AID_PREM', true);
63: fnd_message.set_token('LOW_VALUE', to_char(l_mutual_aid_prem, fnd_currency.get_format_mask('JPY', 38)));
64: hr_multi_message.add(
65: p_associated_column1 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION4',
66: p_associated_column2 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION5');
67: end if;
68: */

Line 70: hr_multi_message.end_validation_set;

66: p_associated_column2 => 'PER_PREVIOUS_EMPLOYERS.PEM_INFORMATION5');
67: end if;
68: */
69: --
70: hr_multi_message.end_validation_set;
71: --
72: hr_utility.set_location('Leaving: ' || c_proc, 20);
73: end chk_ddf;
74: --