DBA Data[Home] [Help]

APPS.FND_CONC_SUMMARIZER dependencies on FND_TEMP_FILES

Line 180: --temp_name := fnd_message.get_string('FND', 'FND_TEMP_FILES');

176: where event_type in (1,2,3,4) and timestamp < sysdate -1 ;
177:
178: insert_row('Transaction Management Events', to_char(cnt));
179:
180: --temp_name := fnd_message.get_string('FND', 'FND_TEMP_FILES');
181:
182: -- FND_TEMP_FILES
183: select count(*)
184: into cnt

Line 182: -- FND_TEMP_FILES

178: insert_row('Transaction Management Events', to_char(cnt));
179:
180: --temp_name := fnd_message.get_string('FND', 'FND_TEMP_FILES');
181:
182: -- FND_TEMP_FILES
183: select count(*)
184: into cnt
185: from fnd_temp_files
186: WHERE TYPE <> 'R'

Line 185: from fnd_temp_files

181:
182: -- FND_TEMP_FILES
183: select count(*)
184: into cnt
185: from fnd_temp_files
186: WHERE TYPE <> 'R'
187: AND session_id NOT in (SELECT SID FROM v$session);
188:
189: insert_row('Temporary Files', to_char(cnt));