DBA Data[Home] [Help]

APPS.PAY_ELEMENT_TEMPLATE_UTIL dependencies on FND_MESSAGE

Line 582: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');

578: -- the LONG formula text column.
579: --
580: when plsql_value_error then
581: hr_utility.set_location('Leaving:'|| l_proc, 30);
582: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
583: fnd_message.set_token('BASE_NAME', '');
584: fnd_message.set_token('LENGTH', 32767);
585: fnd_message.raise_error;
586: when others then

Line 583: fnd_message.set_token('BASE_NAME', '');

579: --
580: when plsql_value_error then
581: hr_utility.set_location('Leaving:'|| l_proc, 30);
582: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
583: fnd_message.set_token('BASE_NAME', '');
584: fnd_message.set_token('LENGTH', 32767);
585: fnd_message.raise_error;
586: when others then
587: hr_utility.set_location('Leaving:'|| l_proc, 40);

Line 584: fnd_message.set_token('LENGTH', 32767);

580: when plsql_value_error then
581: hr_utility.set_location('Leaving:'|| l_proc, 30);
582: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
583: fnd_message.set_token('BASE_NAME', '');
584: fnd_message.set_token('LENGTH', 32767);
585: fnd_message.raise_error;
586: when others then
587: hr_utility.set_location('Leaving:'|| l_proc, 40);
588: raise;

Line 585: fnd_message.raise_error;

581: hr_utility.set_location('Leaving:'|| l_proc, 30);
582: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
583: fnd_message.set_token('BASE_NAME', '');
584: fnd_message.set_token('LENGTH', 32767);
585: fnd_message.raise_error;
586: when others then
587: hr_utility.set_location('Leaving:'|| l_proc, 40);
588: raise;
589: end get_formulas;

Line 1751: fnd_message.set_name(801, 'PAY_50206_MULTIPLE_FF_USAGES');

1747: --
1748: -- A formula usage has already been applied to this element. This
1749: -- means that the exclusion rules were not applied correctly.
1750: --
1751: fnd_message.set_name(801, 'PAY_50206_MULTIPLE_FF_USAGES');
1752: fnd_message.set_token('TABLE', 'PAY_SHADOW_ELEMENT_TYPES');
1753: fnd_message.raise_error;
1754: else
1755: p_element_types(j).payroll_formula_id :=

Line 1752: fnd_message.set_token('TABLE', 'PAY_SHADOW_ELEMENT_TYPES');

1748: -- A formula usage has already been applied to this element. This
1749: -- means that the exclusion rules were not applied correctly.
1750: --
1751: fnd_message.set_name(801, 'PAY_50206_MULTIPLE_FF_USAGES');
1752: fnd_message.set_token('TABLE', 'PAY_SHADOW_ELEMENT_TYPES');
1753: fnd_message.raise_error;
1754: else
1755: p_element_types(j).payroll_formula_id :=
1756: p_template_ff_usages(i).formula_id;

Line 1753: fnd_message.raise_error;

1749: -- means that the exclusion rules were not applied correctly.
1750: --
1751: fnd_message.set_name(801, 'PAY_50206_MULTIPLE_FF_USAGES');
1752: fnd_message.set_token('TABLE', 'PAY_SHADOW_ELEMENT_TYPES');
1753: fnd_message.raise_error;
1754: else
1755: p_element_types(j).payroll_formula_id :=
1756: p_template_ff_usages(i).formula_id;
1757: l_applied(j) := p_element_types(j);

Line 2917: fnd_message.set_name(801, 'PAY_50067_ETM_BUS_LEG_MISMATCH' );

2913: -- legislation and apply it. --
2914: ------------------------------------------------------------------------
2915: if not busgrp_in_legislation
2916: (p_business_group_id, p_element_template.legislation_code) then
2917: fnd_message.set_name(801, 'PAY_50067_ETM_BUS_LEG_MISMATCH' );
2918: fnd_message.raise_error;
2919: end if;
2920: p_element_template.business_group_id := p_business_group_id;
2921: p_element_template.legislation_code := null;

Line 2918: fnd_message.raise_error;

2914: ------------------------------------------------------------------------
2915: if not busgrp_in_legislation
2916: (p_business_group_id, p_element_template.legislation_code) then
2917: fnd_message.set_name(801, 'PAY_50067_ETM_BUS_LEG_MISMATCH' );
2918: fnd_message.raise_error;
2919: end if;
2920: p_element_template.business_group_id := p_business_group_id;
2921: p_element_template.legislation_code := null;
2922: i := p_formulas.first;

Line 3249: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');

3245: replace_name(p_formulas(i).formula_text, l_base_name, 32767);
3246: exception
3247: when plsql_value_error then
3248: hr_utility.set_location('Leaving:'|| l_proc, 20);
3249: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
3250: fnd_message.set_token('BASE_NAME', l_base_name, false);
3251: fnd_message.set_token('LENGTH', 32767);
3252: fnd_message.raise_error;
3253: when others then

Line 3250: fnd_message.set_token('BASE_NAME', l_base_name, false);

3246: exception
3247: when plsql_value_error then
3248: hr_utility.set_location('Leaving:'|| l_proc, 20);
3249: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
3250: fnd_message.set_token('BASE_NAME', l_base_name, false);
3251: fnd_message.set_token('LENGTH', 32767);
3252: fnd_message.raise_error;
3253: when others then
3254: hr_utility.set_location('Leaving:'|| l_proc, 30);

Line 3251: fnd_message.set_token('LENGTH', 32767);

3247: when plsql_value_error then
3248: hr_utility.set_location('Leaving:'|| l_proc, 20);
3249: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
3250: fnd_message.set_token('BASE_NAME', l_base_name, false);
3251: fnd_message.set_token('LENGTH', 32767);
3252: fnd_message.raise_error;
3253: when others then
3254: hr_utility.set_location('Leaving:'|| l_proc, 30);
3255: raise;

Line 3252: fnd_message.raise_error;

3248: hr_utility.set_location('Leaving:'|| l_proc, 20);
3249: fnd_message.set_name(801, 'PAY_50068_ETM_GEN_FF_TOO_LONG');
3250: fnd_message.set_token('BASE_NAME', l_base_name, false);
3251: fnd_message.set_token('LENGTH', 32767);
3252: fnd_message.raise_error;
3253: when others then
3254: hr_utility.set_location('Leaving:'|| l_proc, 30);
3255: raise;
3256: end;