DBA Data[Home] [Help]

APPS.BSC_METADATA_OPTIMIZER_PKG dependencies on FND_PROFILE

Line 638: g_Adv_Summarization_Level := fnd_profile.value('BSC_ADVANCED_SUMMARIZATION_LEVEL');

634: PROCEDURE initMVFlags IS
635: BEGIN
636: --BSC-MV Note: Get advanced summarization level profile value
637: g_Sum_Level_Change := 0;
638: g_Adv_Summarization_Level := fnd_profile.value('BSC_ADVANCED_SUMMARIZATION_LEVEL');
639: g_Current_Adv_Sum_Level := bsc_mo_helper_pkg.getInitColumn('ADV_SUM_LEVEL');
640:
641: If (g_Current_Adv_Sum_Level IS NOT NULL AND g_Adv_Summarization_Level IS NULL) Then
642: --User cannot go back to old architecture.

Line 802: g_dir:=fnd_profile.value('UTL_FILE_LOG');

798: g_bsc_apps_initialized := true;
799: bsc_apps.Init_Big_In_Cond_Table;
800: logProgress('INIT', 'Starting Setup');
801: g_dir := null;
802: g_dir:=fnd_profile.value('UTL_FILE_LOG');
803: IF g_dir is null THEN
804: g_dir:=getUtlFileDir;
805: END IF;
806: g_log_level := fnd_profile.value('AFLOG_LEVEL');

Line 806: g_log_level := fnd_profile.value('AFLOG_LEVEL');

802: g_dir:=fnd_profile.value('UTL_FILE_LOG');
803: IF g_dir is null THEN
804: g_dir:=getUtlFileDir;
805: END IF;
806: g_log_level := fnd_profile.value('AFLOG_LEVEL');
807: IF (FND_PROFILE.VALUE('BIS_PMF_DEBUG') = 'Y') THEN
808: g_log := TRUE;
809: ELSE -- IF BIS_PMF_DEBUG is set, then enable logging automatically
810: g_log_level := FND_LOG.g_current_runtime_level;

Line 807: IF (FND_PROFILE.VALUE('BIS_PMF_DEBUG') = 'Y') THEN

803: IF g_dir is null THEN
804: g_dir:=getUtlFileDir;
805: END IF;
806: g_log_level := fnd_profile.value('AFLOG_LEVEL');
807: IF (FND_PROFILE.VALUE('BIS_PMF_DEBUG') = 'Y') THEN
808: g_log := TRUE;
809: ELSE -- IF BIS_PMF_DEBUG is set, then enable logging automatically
810: g_log_level := FND_LOG.g_current_runtime_level;
811: END IF;