DBA Data[Home] [Help]

APPS.HXT_TIME_SUMMARY dependencies on FND_PROFILE

Line 469: IF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'

465: ,l_retcode);
466: */
467:
468:
469: IF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'
470: -- AND l_retcode = 1
471: THEN
472: store_globals;
473: END IF;

Line 780: IF fnd_profile.value('HXT_HOLIDAY_EXPLOSION') IN ('NO','OO')

776:
777: -- If No Regular hours on holiday is the rule, delete
778: -- all that is paid as WEEKLY/DAILY regular.
779:
780: IF fnd_profile.value('HXT_HOLIDAY_EXPLOSION') IN ('NO','OO')
781: THEN
782: -- Bug 10123886
783: -- We no longer need this kind of checking.
784: /*

Line 935: IF FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION') = 'OO'

931:
932: -- If holiday explosion should occur only for what had to be paid for Regular,
933: -- we need to subtract the total overtime paid from the total number of hours.
934:
935: IF FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION') = 'OO'
936: THEN
937: IF g_debug
938: THEN
939: hr_utility.trace('Holiday profile set to apply only on Reg elements ');

Line 1039: IF FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION') IN( 'OO','NO')

1035:
1036: -- Bug 10123886
1037: -- Need to set this Boolean variable so that SDP
1038: -- is paid correctly.
1039: IF FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION') IN( 'OO','NO')
1040: THEN
1041: hxt_time_detail.g_holiday_sdp_paid := TRUE;
1042: hr_utility.trace('yes '||g_sdp_id);
1043: g_sdf_rule_completed := 'Y';

Line 1135: AND FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION') IN( 'NO','OO')

1131: -- Bug 10123886
1132: -- We need to check and delete the duplicate SDPs here.
1133:
1134: IF g_hol_time_in IS NOT NULL
1135: AND FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION') IN( 'NO','OO')
1136: THEN
1137:
1138: IF g_debug
1139: THEN

Line 1845: ELSIF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'

1841: -- Commented out the ELSIF here, because we need to call this even if an Overriden entry is
1842: -- present.
1843: -- Moved this procedure call outside -- IF g_element_type_id is not null THEN
1844: /*
1845: ELSIF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'
1846: THEN
1847: NULL;
1848: -- check_holiday_rule_behavior;
1849: -- Do caching the values for holiday.

Line 1856: IF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'

1852: */
1853:
1854: END IF; --element_type_id is not null
1855:
1856: IF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'
1857: THEN
1858: -- Do caching the values for holiday.
1859: -- Set flag
1860: check_holiday_rule_behavior;

Line 1900: IF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'

1896: if g_debug then
1897: hr_utility.set_location('hxt_time_summary.generate_details',170);
1898: end if;
1899: -- Bug 8600894
1900: IF NVL(FND_PROFILE.VALUE('HXT_HOLIDAY_EXPLOSION'),'EX') <> 'EX'
1901: THEN
1902: l_error_code := adjust_holiday_rule;
1903: END IF;
1904: RETURN l_error_code;