DBA Data[Home] [Help]

APPS.HR_GENERAL2 dependencies on FND_PROFILE

Line 197: l_mask_size := Fnd_Profile.value_wnps('HR_MASK_CHARACTERS');

193: BEGIN
194: --
195: IF (p_number IS NOT NULL) THEN
196:
197: l_mask_size := Fnd_Profile.value_wnps('HR_MASK_CHARACTERS');
198:
199: IF (ABS(l_mask_size) > LENGTH(p_number)) THEN
200: l_mask_size := LENGTH(p_number);
201: END IF;

Line 271: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then

267: l_dummy varchar2(1);
268: BEGIN
269: --
270: hr_utility.set_location('11',10);
271: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then
272: return l_duplicate_found;
273: end if;
274: -- Get the session date
275: SELECT se.effective_date

Line 384: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then

380: l_dummy varchar2(1);
381: BEGIN
382: --
383: hr_utility.set_location('1',10);
384: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then
385: return l_duplicate_found;
386: end if;
387: -- Get the session date
388: SELECT se.effective_date

Line 1104: IF NVL(fnd_profile.value('HR_SUPERVISOR_HIERARCHY_USAGE'), 'P') = 'A' THEN

1100: --
1101: -- If the profile restricts by assignment-based supervisor hierarchies,
1102: -- return true.
1103: --
1104: IF NVL(fnd_profile.value('HR_SUPERVISOR_HIERARCHY_USAGE'), 'P') = 'A' THEN
1105: RETURN 'TRUE';
1106: ELSE
1107: RETURN 'FALSE';
1108: END IF;

Line 1346: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then

1342: begin
1343:
1344: hr_utility.set_location('1',10);
1345:
1346: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then
1347: hr_utility.set_location('2',10);
1348: return l_duplicate_found;
1349: else
1350: if nvl(fnd_profile.value('HR_DUPLICATE_PERSON_CHECK'),'Y') = 'Y' then --fix for bug 5930576

Line 1350: if nvl(fnd_profile.value('HR_DUPLICATE_PERSON_CHECK'),'Y') = 'Y' then --fix for bug 5930576

1346: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then
1347: hr_utility.set_location('2',10);
1348: return l_duplicate_found;
1349: else
1350: if nvl(fnd_profile.value('HR_DUPLICATE_PERSON_CHECK'),'Y') = 'Y' then --fix for bug 5930576
1351: hr_utility.set_location('3',10);
1352: -- Get the session date
1353: SELECT se.effective_date
1354: INTO l_session_date

Line 1519: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then

1515:
1516:
1517: hr_utility.set_location('SSHR',10);
1518:
1519: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' then
1520: hr_utility.set_location('SSHR',10.1);
1521: --fix for bug 5923547 starts here.
1522: hr_person_name.derive_person_names
1523: (p_format_name => null

Line 1659: if nvl(fnd_profile.value('HR_DUPLICATE_PERSON_CHECK'),'Y') = 'Y' then --fix for bug 5930576

1655: l_duplicate_found := FALSE;
1656: end if;
1657: --fix for bug 5923547 ends here.
1658: else
1659: if nvl(fnd_profile.value('HR_DUPLICATE_PERSON_CHECK'),'Y') = 'Y' then --fix for bug 5930576
1660: hr_utility.set_location('SSHR',20);
1661:
1662:
1663: -- Query to detect duplicate person

Line 1808: hr_utility.set_location('Before: FND PROFILE CALL', 13163);

1804: is
1805:
1806: begin
1807:
1808: hr_utility.set_location('Before: FND PROFILE CALL', 13163);
1809:
1810: fnd_profile.put(NAME,VAL);
1811:
1812: hr_utility.set_location('After: FND PROFILE CALL', 13163);

Line 1810: fnd_profile.put(NAME,VAL);

1806: begin
1807:
1808: hr_utility.set_location('Before: FND PROFILE CALL', 13163);
1809:
1810: fnd_profile.put(NAME,VAL);
1811:
1812: hr_utility.set_location('After: FND PROFILE CALL', 13163);
1813:
1814: end SERVER_SIDE_PROFILE_PUT;

Line 1812: hr_utility.set_location('After: FND PROFILE CALL', 13163);

1808: hr_utility.set_location('Before: FND PROFILE CALL', 13163);
1809:
1810: fnd_profile.put(NAME,VAL);
1811:
1812: hr_utility.set_location('After: FND PROFILE CALL', 13163);
1813:
1814: end SERVER_SIDE_PROFILE_PUT;
1815:
1816: