DBA Data[Home] [Help]

APPS.PO_DEBUG dependencies on DBMS_OUTPUT

Line 534: --dbms_output.put_line(v_line);

530: else
531:
532: -- write to standard out
533: x_temp := 'STD OUT';
534: --dbms_output.put_line(v_line);
535:
536: end if;
537:
538: EXCEPTION

Line 542: --dbms_output.put_line('*** ERROR WRITING TO FILE - Check UTL_FILE_DIR Parameter in init.ora *** : ' || x_temp);

538: EXCEPTION
539:
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:

Line 557: /* Bug 1014430 : dbms_output should be enabled conditionally only if the

553: BEGIN
554:
555: PO_DEBUG.write_to_file := flag;
556:
557: /* Bug 1014430 : dbms_output should be enabled conditionally only if the
558: flag is false.
559: */
560:
561: if (flag or flag is null) then

Line 562: dbms_output.disable;

558: flag is false.
559: */
560:
561: if (flag or flag is null) then
562: dbms_output.disable;
563: else
564: dbms_output.enable(1000000);
565: end if;
566:

Line 564: dbms_output.enable(1000000);

560:
561: if (flag or flag is null) then
562: dbms_output.disable;
563: else
564: dbms_output.enable(1000000);
565: end if;
566:
567: EXCEPTION
568: when others then null;