DBA Data[Home] [Help]

APPS.FND_CONC_STAT dependencies on FND_PROFILE

Line 60: fnd_profile.get('CONC_REQUEST_STAT', crs);

56: FUNCTION stat_collect_level RETURN VARCHAR2 IS
57: crs VARCHAR2(80);
58: f_stat_collect VARCHAR2(1);
59: BEGIN
60: fnd_profile.get('CONC_REQUEST_STAT', crs);
61: IF crs = 'Y' THEN
62: SELECT stat_collect
63: INTO f_stat_collect
64: FROM fnd_concurrent_programs

Line 82: if( fnd_profile.defined('RT_PERF_STAT') ) then

78: FUNCTION rt_perf_stat_enabled RETURN BOOLEAN IS
79: rt_perf BOOLEAN := FALSE;
80: rt_perf_val VARCHAR2(1);
81: BEGIN
82: if( fnd_profile.defined('RT_PERF_STAT') ) then
83: fnd_profile.get('RT_PERF_STAT', rt_perf_val );
84: if ( rt_perf_val = 'Y' ) then
85: rt_perf := TRUE;
86: end if;

Line 83: fnd_profile.get('RT_PERF_STAT', rt_perf_val );

79: rt_perf BOOLEAN := FALSE;
80: rt_perf_val VARCHAR2(1);
81: BEGIN
82: if( fnd_profile.defined('RT_PERF_STAT') ) then
83: fnd_profile.get('RT_PERF_STAT', rt_perf_val );
84: if ( rt_perf_val = 'Y' ) then
85: rt_perf := TRUE;
86: end if;
87: end if;