DBA Data[Home] [Help]

APPS.PQP_FTE_UTILITIES dependencies on FND_GLOBAL

Line 2101: -- as business group id is not passed as a parameter use the fnd_global value

2097:
2098: --l_calculation_date := to_date(substr(p_calculation_date, 1, 10), 'YYYY/MM/DD');
2099: l_calculation_date := fnd_date.canonical_to_date(p_calculation_date);
2100:
2101: -- as business group id is not passed as a parameter use the fnd_global value
2102: -- this implies that concurrent process must be run from within apps
2103: -- and cannot be run from sql unless an explicit apps initialization is done
2104: -- as a prereq step.
2105: -- we donot want to add the parameter as that implies a conc spec change

Line 2108: l_business_group_id := fnd_global.per_business_group_id;

2104: -- as a prereq step.
2105: -- we donot want to add the parameter as that implies a conc spec change
2106: -- which in turn will cause the patch size for this change to increase
2107: -- as it will force us to include/pre-req several
2108: l_business_group_id := fnd_global.per_business_group_id;
2109:
2110: IF g_debug THEN
2111: debug('l_business_group_id:'||l_business_group_id);
2112: END IF;