DBA Data[Home] [Help]

APPS.PQP_FTE_UTILITIES dependencies on FND_GLOBAL

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

2152:
2153: --l_calculation_date := to_date(substr(p_calculation_date, 1, 10), 'YYYY/MM/DD');
2154: l_calculation_date := fnd_date.canonical_to_date(p_calculation_date);
2155:
2156: -- as business group id is not passed as a parameter use the fnd_global value
2157: -- this implies that concurrent process must be run from within apps
2158: -- and cannot be run from sql unless an explicit apps initialization is done
2159: -- as a prereq step.
2160: -- we donot want to add the parameter as that implies a conc spec change

Line 2163: l_business_group_id := fnd_global.per_business_group_id;

2159: -- as a prereq step.
2160: -- we donot want to add the parameter as that implies a conc spec change
2161: -- which in turn will cause the patch size for this change to increase
2162: -- as it will force us to include/pre-req several
2163: l_business_group_id := fnd_global.per_business_group_id;
2164:
2165: IF g_debug THEN
2166: debug('l_business_group_id:'||l_business_group_id);
2167: END IF;