DBA Data[Home] [Help]

APPS.XLA_UTILITY_PKG dependencies on FND_FILE

Line 25: | - written to the current logfile through fnd_file |

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 |
28: | |
29: | Usage from SRS|Forms4.5+: |

Line 90: | fnd_file |

86: | dbms_pipe |
87: | dbms_utility |
88: | dbms_output |
89: | dbms_session |
90: | fnd_file |
91: | fnd_log |
92: | fnd_request |
93: | fnd_global |
94: | |

Line 446: fnd_file.put_line(fnd_file.log ,'');

442: -- a concurrent request and this output is enabled.
443: --
444: IF g_requestid NOT IN (0,-1)
445: AND g_srs_output_enable = 'Y' THEN
446: fnd_file.put_line(fnd_file.log ,'');
447: fnd_file.put_line(fnd_file.output,'');
448: END IF;
449:
450: EXCEPTION

Line 447: fnd_file.put_line(fnd_file.output,'');

443: --
444: IF g_requestid NOT IN (0,-1)
445: AND g_srs_output_enable = 'Y' THEN
446: fnd_file.put_line(fnd_file.log ,'');
447: fnd_file.put_line(fnd_file.output,'');
448: END IF;
449:
450: EXCEPTION
451: WHEN xla_exceptions_pkg.application_exception THEN

Line 802: fnd_file.put_line(fnd_file.log,p_msg);

798:
799: IS
800:
801: BEGIN
802: fnd_file.put_line(fnd_file.log,p_msg);
803:
804: -- IF xla_utility_event_pkg.is_event_set('RAISE_FND_FILE_OPEN_FAILURE') THEN
805: -- RAISE utl_file.invalid_path;
806: -- END IF;

Line 804: -- IF xla_utility_event_pkg.is_event_set('RAISE_FND_FILE_OPEN_FAILURE') THEN

800:
801: BEGIN
802: fnd_file.put_line(fnd_file.log,p_msg);
803:
804: -- IF xla_utility_event_pkg.is_event_set('RAISE_FND_FILE_OPEN_FAILURE') THEN
805: -- RAISE utl_file.invalid_path;
806: -- END IF;
807:
808: EXCEPTION

Line 2261: fnd_file.put_line(fnd_file.output,p_msg);

2257:
2258: BEGIN
2259: IF g_RequestId NOT IN (-1,0)
2260: AND g_srs_output_enable = 'Y' THEN
2261: fnd_file.put_line(fnd_file.output,p_msg);
2262: END IF;
2263: END print_outputfile;
2264:
2265:

Line 2284: fnd_file.put_line(fnd_file.log,p_msg);

2280:
2281: BEGIN
2282: IF g_RequestId NOT IN (0,-1)
2283: AND g_srs_output_enable = 'Y' THEN
2284: fnd_file.put_line(fnd_file.log,p_msg);
2285: END IF;
2286: END print_logfile;
2287:
2288: