DBA Data[Home] [Help]

APPS.XLA_UTILITY_PKG dependencies on STANDARD

Line 23: | - printed on the standard OUTPUT, |

19: | |
20: | A] Trace/Debugging facilities. |
21: | |
22: | The output debug messages are either: |
23: | - printed on the standard OUTPUT, |
24: | - sent to another SRS process waiting for a pipe, |
25: | - written to the current logfile through fnd_file |
26: | - written in an HTML page |
27: | - written in a flat file |

Line 42: | PL/SQL coding standard: |

38: | (...); |
39: | xla_utility_pkg.deactivate('OUTPUT|FILE',location); |
40: | END; |
41: | |
42: | PL/SQL coding standard: |
43: | BEGIN |
44: | xla_utility_pkg.activate(mode,location) |
45: | .../... |
46: | xla_utility_pkg.trace('String',trace_level); |

Line 725: | Print the messgae to the standard dbms_output |

721: | Private Procedure |
722: | |
723: | print_output |
724: | |
725: | Print the messgae to the standard dbms_output |
726: | |
727: | Parameters |
728: | 1 IN p_msg VARCHAR2 Debug message |
729: | |

Line 768: | Print the messgae to the standard dbms_output |

764: | Private Procedure |
765: | |
766: | print_html |
767: | |
768: | Print the messgae to the standard dbms_output |
769: | |
770: | Parameters |
771: | 1 IN p_msg VARCHAR2 Debug message |
772: | |

Line 1148: | Printer the standard header |

1144: | Private Procedure |
1145: | |
1146: | print_header |
1147: | |
1148: | Printer the standard header |
1149: | |
1150: +======================================================================*/
1151: PROCEDURE print_header
1152:

Line 1187: | Printer the standard footer |

1183: | Private Procedure |
1184: | |
1185: | print_footer |
1186: | |
1187: | Printer the standard footer |
1188: | |
1189: +======================================================================*/
1190: PROCEDURE print_footer
1191:

Line 1416: -- Print the standard header

1412: set_stat_on;
1413: END IF;
1414:
1415: --
1416: -- Print the standard header
1417: --
1418: print_header;
1419:
1420: END IF;

Line 1471: -- Print the standard footer as well as the statistics

1467: g_timeout := 20;
1468:
1469: BEGIN
1470: --
1471: -- Print the standard footer as well as the statistics
1472: --
1473: IF l_old_stat = 'Y' THEN
1474: print_stat_info;
1475: END IF;