DBA Data[Home] [Help]

APPS.PO_DEBUG dependencies on FND_FILE

Line 471: FND_FILE.put_line ( FND_FILE.LOG,

467: p_encoded => FND_API.G_FALSE),
468: 1, 2000 );
469:
470: -- Write the message to the concurrent program log file.
471: FND_FILE.put_line ( FND_FILE.LOG,
472: substrb(l_module || ': ' || l_msg, 1, 2000) );
473:
474: -- Write the message to the FND log, if enabled.
475: IF PO_LOG.d_unexp THEN

Line 528: FND_FILE.PUT_LINE(FND_FILE.LOG, v_line);

524: -- Assuming all the rules for utl_file have been properly followed
525: -- the following call should write to a system generated log file.
526:
527: x_temp := 'FILE';
528: FND_FILE.PUT_LINE(FND_FILE.LOG, v_line);
529:
530: else
531:
532: -- write to standard out

Line 544: -- May run into rollback problems if the FND_FILE package is called again

540: when others then
541: -- do not raise any exception
542: --dbms_output.put_line('*** ERROR WRITING TO FILE - Check UTL_FILE_DIR Parameter in init.ora *** : ' || x_temp);
543: PO_DEBUG.write_to_file := NULL; -- Reset the file I/O flag so that the package is not invoked again
544: -- May run into rollback problems if the FND_FILE package is called again
545: -- because it performs an implicit commit.
546:
547: END PUT_LINE;
548: