DBA Data[Home] [Help]

APPS.PER_ASG_AGGR dependencies on FND_PROFILE

Line 222: fnd_profile.get('GB_PAYE_NI_AGGREGATION',l_profile_value);

218: IF l_count_assignments <=1 THEN
219: IF p_message = 'Y' THEN
220: -- start of bug 8370225
221: -- We should igonore the HR_78101_CHK_MULTI_ASSG error message while defaulting the PAYE and NI flags
222: fnd_profile.get('GB_PAYE_NI_AGGREGATION',l_profile_value);
223: if NVL(l_profile_value,'N') <> 'Y' then
224: -- end of bug 8370225
225: /* Bug 9253988. Setting validation failure flag. */
226: if (nvl(G_WHO_CALLED,'~') = 'PER_ASG_AGGR.SET_PAYE_AGGR') then

Line 689: fnd_profile.get('GB_PAYE_NI_AGGREGATION',l_profile_value);

685: -- Check for multiple assignments and same tax district
686: IF NOT assg_aggr_possible (p_person_id , p_effective_date,'Y') THEN
687: -- start of bug 8370225
688: -- We should igonore error message while defaulting the PAYE and NI flags
689: fnd_profile.get('GB_PAYE_NI_AGGREGATION',l_profile_value);
690: IF NVL(l_profile_value,'N') <> 'Y' then
691: -- End of bug 8370225
692: /* Bug 9253988. Setting validation failure flag. */
693: if (nvl(G_WHO_CALLED,'~') = 'PER_ASG_AGGR.SET_PAYE_AGGR') then

Line 1173: fnd_profile.get('GB_DEFAULT_AGG_FLAG',l_paye_profile);

1169: savepoint start_agg_flag;
1170: G_VALIDATION_FAILURE := false;
1171: G_WHO_CALLED := null;
1172:
1173: fnd_profile.get('GB_DEFAULT_AGG_FLAG',l_paye_profile);
1174:
1175: IF (NVL(l_paye_profile,'~') = 'NI') THEN
1176:
1177: open cur_get_ni_aggr_flag(p_person_id, p_effective_date);

Line 1479: fnd_profile.get (p_profile_name

1475: FUNCTION check_profile_exists
1476: (p_profile_name IN varchar2) RETURN boolean IS
1477: l_profile_value varchar2(30);
1478: BEGIN
1479: fnd_profile.get (p_profile_name
1480: ,l_profile_value);
1481:
1482: IF l_profile_value = 'PARTIAL'
1483: OR l_profile_value = 'ALL' THEN