DBA Data[Home] [Help]

APPS.FND_APD dependencies on FND_PROFILE

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

288: FUNCTION rt_perf_stat_enabled RETURN BOOLEAN IS
289: rt_perf BOOLEAN := FALSE;
290: rt_perf_val VARCHAR2(1);
291: BEGIN
292: if( fnd_profile.defined('RT_PERF_STAT') ) then
293: fnd_profile.get('RT_PERF_STAT', rt_perf_val );
294: if ( rt_perf_val = 'Y' ) then
295: rt_perf := TRUE;
296: end if;

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

289: rt_perf BOOLEAN := FALSE;
290: rt_perf_val VARCHAR2(1);
291: BEGIN
292: if( fnd_profile.defined('RT_PERF_STAT') ) then
293: fnd_profile.get('RT_PERF_STAT', rt_perf_val );
294: if ( rt_perf_val = 'Y' ) then
295: rt_perf := TRUE;
296: end if;
297: end if;