DBA Data[Home] [Help]

APPS.HR_FI_VALIDATE_PKG dependencies on FND_PROFILE

Line 37: IF l_field IS NOT NULL AND fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') THEN

33: l_field := hr_general.decode_lookup('FI_FORM_LABELS','PIN');
34: END IF;
35: END IF;
36:
37: IF l_field IS NOT NULL AND fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') THEN
38: fnd_message.set_name('PER', 'HR_376603_FI_MANDATORY_MSG');
39: fnd_message.set_token('NAME',l_field, translate => true );
40: hr_utility.raise_error;
41: END IF;

Line 2304: fnd_profile.put('PER_PERSON_ID',p_person_id);

2300: --
2301: IF hr_utility.chk_product_install('Oracle Human Resources', 'FI') THEN
2302: --
2303: -- get the values of the person_id profile
2304: fnd_profile.put('PER_PERSON_ID',p_person_id);
2305: if p_abs_information_category='FI_F' THEN
2306: OPEN get_start_date(p_person_id);
2307: FETCH get_start_date into l_start_date;
2308: CLOSE get_start_date;

Line 2356: fnd_profile.put('PER_PERSON_ID',l_person_id);

2352: fetch get_person_id into l_person_id;
2353: close get_person_id;
2354:
2355: -- get the values of the person_id profile
2356: fnd_profile.put('PER_PERSON_ID',l_person_id);
2357:
2358: if p_abs_information_category='FI_F' THEN
2359: OPEN get_start_date(l_person_id);
2360: FETCH get_start_date into l_start_date;