DBA Data[Home] [Help]

APPS.FII_SETUP_VAL_C dependencies on FND_PROFILE

Line 888: l_global_start_date := FND_PROFILE.Value('BIS_GLOBAL_START_DATE');

884: l_user_id := FND_GLOBAL.User_Id;
885: l_login_id := FND_GLOBAL.Login_Id;
886: l_req_id := FND_GLOBAL.Conc_Request_Id;
887:
888: l_global_start_date := FND_PROFILE.Value('BIS_GLOBAL_START_DATE');
889: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');
890: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');
891:
892: -- Print setup information to the logfile

Line 889: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');

885: l_login_id := FND_GLOBAL.Login_Id;
886: l_req_id := FND_GLOBAL.Conc_Request_Id;
887:
888: l_global_start_date := FND_PROFILE.Value('BIS_GLOBAL_START_DATE');
889: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');
890: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');
891:
892: -- Print setup information to the logfile
893: fii_util.put_line(' ');

Line 890: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');

886: l_req_id := FND_GLOBAL.Conc_Request_Id;
887:
888: l_global_start_date := FND_PROFILE.Value('BIS_GLOBAL_START_DATE');
889: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');
890: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');
891:
892: -- Print setup information to the logfile
893: fii_util.put_line(' ');
894: fii_util.put_line('Checking for missing setup information...');

Line 947: l_industry_profile := FND_PROFILE.value('INDUSTRY');

943: fii_util.put_line('INIT: Enterprise Calendar = '|| l_period_set_name);
944: fii_util.put_line('INIT: Period Type = '|| l_period_type);
945:
946: -- Print out if this is commercial or government install
947: l_industry_profile := FND_PROFILE.value('INDUSTRY');
948:
949: fii_util.put_line('INIT: Industry profile = '|| l_industry_profile);
950:
951: -- Print out budget/forecast source

Line 952: l_budget_source := FND_PROFILE.value('FII_BUDGET_SOURCE');

948:
949: fii_util.put_line('INIT: Industry profile = '|| l_industry_profile);
950:
951: -- Print out budget/forecast source
952: l_budget_source := FND_PROFILE.value('FII_BUDGET_SOURCE');
953:
954: fii_util.put_line('INIT: Budget/Forecast Source = '|| l_budget_source);
955: fii_util.put_line(' ');
956:

Line 2182: l_budget_source := FND_PROFILE.value('FII_BUDGET_SOURCE');

2178: -- Check the budget profile option
2179: fii_util.put_line('START CHECK: Budget Profile Check');
2180: fii_util.put_line(' ');
2181:
2182: l_budget_source := FND_PROFILE.value('FII_BUDGET_SOURCE');
2183: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');
2184: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');
2185:
2186: fii_util.put_line('The profile option ''FII: Budget/Foreacst Source'' = '

Line 2183: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');

2179: fii_util.put_line('START CHECK: Budget Profile Check');
2180: fii_util.put_line(' ');
2181:
2182: l_budget_source := FND_PROFILE.value('FII_BUDGET_SOURCE');
2183: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');
2184: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');
2185:
2186: fii_util.put_line('The profile option ''FII: Budget/Foreacst Source'' = '
2187: || l_budget_source);

Line 2184: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');

2180: fii_util.put_line(' ');
2181:
2182: l_budget_source := FND_PROFILE.value('FII_BUDGET_SOURCE');
2183: l_budget_time_unit := FND_PROFILE.Value('FII_BUDGET_TIME_UNIT');
2184: l_forecast_time_unit := FND_PROFILE.Value('FII_FORECAST_TIME_UNIT');
2185:
2186: fii_util.put_line('The profile option ''FII: Budget/Foreacst Source'' = '
2187: || l_budget_source);
2188:

Line 2215: l_profile_value := FND_PROFILE.value('INDUSTRY');

2211: fii_util.put_line(' ');
2212: fii_util.put_line('START CHECK: Industry Profile Option Check');
2213: fii_util.put_line(' ');
2214:
2215: l_profile_value := FND_PROFILE.value('INDUSTRY');
2216:
2217: fii_util.put_line('The profile option ''Industry'' = '
2218: || l_profile_value);
2219:

Line 2241: l_profile_value := FND_PROFILE.value('FII_DEBUG_MODE');

2237: fii_util.put_line(' ');
2238: fii_util.put_line('START CHECK: ''FII: Debug Mode'' Profile Option Check');
2239: fii_util.put_line(' ');
2240:
2241: l_profile_value := FND_PROFILE.value('FII_DEBUG_MODE');
2242:
2243: IF (l_profile_value IS NOT NULL) THEN
2244: fii_util.put_line('The profile option ''FII: Debug Mode'' = '
2245: || l_profile_value);