DBA Data[Home] [Help]

APPS.FND_FILE dependencies on FND_CONC_PRIVATE_UTILS

Line 239: if ( fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') <> 1) then

235:
236: if UTL_FILE_DELAY > 0 then
237: if IS_OPEN('LOG') = 0 then
238: TEMP_UTL := TEMP_DIR || '/' || LOG_FNAME;
239: if ( fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') <> 1) then
240: log_simple_msg (fnd_log.level_statement, 'put_names_os',
241: 'call record_temp_file_use for: '|| TEMP_UTL);
242: fnd_conc_private_utils.record_temp_file_use(TEMP_UTL, NULL, 'F', NULL);
243: end if;

Line 242: fnd_conc_private_utils.record_temp_file_use(TEMP_UTL, NULL, 'F', NULL);

238: TEMP_UTL := TEMP_DIR || '/' || LOG_FNAME;
239: if ( fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') <> 1) then
240: log_simple_msg (fnd_log.level_statement, 'put_names_os',
241: 'call record_temp_file_use for: '|| TEMP_UTL);
242: fnd_conc_private_utils.record_temp_file_use(TEMP_UTL, NULL, 'F', NULL);
243: end if;
244: end if;
245:
246: if IS_OPEN('OUT') = 0 then

Line 248: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') <> 1) then

244: end if;
245:
246: if IS_OPEN('OUT') = 0 then
247: TEMP_UTL := TEMP_DIR || '/' || OUT_FNAME;
248: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') <> 1) then
249: log_simple_msg (fnd_log.level_statement, 'put_names_os',
250: 'call record_temp_file_use for: '|| TEMP_UTL);
251: fnd_conc_private_utils.record_temp_file_use(TEMP_UTL, NULL, 'F', NULL);
252: end if;

Line 251: fnd_conc_private_utils.record_temp_file_use(TEMP_UTL, NULL, 'F', NULL);

247: TEMP_UTL := TEMP_DIR || '/' || OUT_FNAME;
248: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') <> 1) then
249: log_simple_msg (fnd_log.level_statement, 'put_names_os',
250: 'call record_temp_file_use for: '|| TEMP_UTL);
251: fnd_conc_private_utils.record_temp_file_use(TEMP_UTL, NULL, 'F', NULL);
252: end if;
253: end if;
254: end if;
255:

Line 566: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') = 1) then

562: END;
563:
564: if UTL_FILE_DELAY > 0 then
565: temp_utl := TEMP_DIR || '/' || LOG_FNAME;
566: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') = 1) then
567: log_recorded := TRUE;
568: end if;
569:
570: if log_recorded then

Line 573: fnd_conc_private_utils.erase_temp_file_use(temp_utl,NULL,'F');

569:
570: if log_recorded then
571: log_simple_msg(fnd_log.level_statement, 'close',
572: 'temp file: '|| temp_utl ||' recorded');
573: fnd_conc_private_utils.erase_temp_file_use(temp_utl,NULL,'F');
574: else
575: log_simple_msg(fnd_log.level_statement, 'close',
576: 'temp file: '|| temp_utl ||' not recorded');
577: end if;

Line 580: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') = 1) then

576: 'temp file: '|| temp_utl ||' not recorded');
577: end if;
578:
579: temp_utl := TEMP_DIR || '/' || OUT_FNAME;
580: if (fnd_conc_private_utils.check_temp_file_use(temp_utl,NULL,'F') = 1) then
581: out_recorded := TRUE;
582: end if;
583: if out_recorded then
584: log_simple_msg(fnd_log.level_statement, 'close',

Line 586: fnd_conc_private_utils.erase_temp_file_use(temp_utl,NULL,'F');

582: end if;
583: if out_recorded then
584: log_simple_msg(fnd_log.level_statement, 'close',
585: 'temp file: '|| temp_utl ||' recorded');
586: fnd_conc_private_utils.erase_temp_file_use(temp_utl,NULL,'F');
587: else
588: log_simple_msg(fnd_log.level_statement, 'close',
589: 'temp file: '|| temp_utl ||' not recorded');
590: end if;