DBA Data[Home] [Help]

APPS.FND_CONC_STAT dependencies on FND_CONCURRENT_PROGRAMS

Line 16: -- the STAT_COLLECT column of FND_CONCURRENT_PROGRAMS:

12: -- complete list of the statistics available for the shadow process,
13: -- select * from the V$STATNAME view.
14:
15: -- There are four levels of collection, set at the program level in
16: -- the STAT_COLLECT column of FND_CONCURRENT_PROGRAMS:
17: --
18: -- O = Off
19: -- S = Standard
20: -- E = Extra which includes S

Line 64: FROM fnd_concurrent_programs

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
65: WHERE concurrent_program_id = fnd_global.conc_program_id
66: AND application_id = fnd_global.prog_appl_id;
67: IF f_stat_collect IS NULL THEN
68: RETURN 'O';