DBA Data[Home] [Help]

APPS.FII_PMV_HELPER_TABLES_C dependencies on FND_PROFILE

Line 22: := NVL(FND_PROFILE.value('FII_DEBUG_MODE'), 'N');

18: G_PHASE VARCHAR2(120);
19: g_schema_name VARCHAR2(120) := 'FII';
20: g_retcode VARCHAR2(20) := NULL;
21: g_debug_mode VARCHAR2(1)
22: := NVL(FND_PROFILE.value('FII_DEBUG_MODE'), 'N');
23:
24: p_tab dim_nodes_tab;
25:
26:

Line 69: l_dir := fnd_profile.value('BIS_DEBUG_LOG_DIRECTORY');

65: g_phase := 'Do set up for log file';
66: ----------------------------------------------
67: -- Do set up for log file
68: ----------------------------------------------
69: l_dir := fnd_profile.value('BIS_DEBUG_LOG_DIRECTORY');
70: ------------------------------------------------------
71: -- Set default directory in case if the profile option
72: -- BIS_DEBUG_LOG_DIRECTORY is not set up
73: ------------------------------------------------------

Line 138: l_nodes := NVL(fnd_profile.value('FII_AGGREGATE_NODES'), 100);

134: g_phase := 'Get the profile value for the number of nodes in a dimension';
135: BEGIN
136: -- Bug 4300047. Default no of nodes to be aggregated
137: -- should be 100.
138: l_nodes := NVL(fnd_profile.value('FII_AGGREGATE_NODES'), 100);
139: EXCEPTION
140: WHEN value_error THEN
141: FII_UTIL.Write_Log ('Value for profile FII: Nodes to be Aggregated is not set correctly.
142: Please enter a numeric value for the profile.');