DBA Data[Home] [Help]

APPS.PO_DEBUG dependencies on FND_LOG

Line 371: -- FND_LOG_MESSAGES

367: --Pre-reqs:
368: -- None.
369: --Modifies:
370: -- API message list
371: -- FND_LOG_MESSAGES
372: --Locks:
373: -- None.
374: --Function:
375: -- Adds an exception message to the standard API message list

Line 376: -- and to the FND log, when appropriate.

372: --Locks:
373: -- None.
374: --Function:
375: -- Adds an exception message to the standard API message list
376: -- and to the FND log, when appropriate.
377: --Parameters:
378: --IN:
379: --p_pkg_name
380: -- Name of the PL/SQL package that encountered the error.

Line 442: -- FND_LOG_MESSAGES

438: --Name: write_msg_list_to_file
439: --Pre-reqs:
440: -- None.
441: --Modifies:
442: -- FND_LOG_MESSAGES
443: --Locks:
444: -- None.
445: --Function:
446: -- Writes the messages on the API message list (FND_MSG_PUB) to the concurrent

Line 447: -- program log file output, and to the FND log, if enabled.

443: --Locks:
444: -- None.
445: --Function:
446: -- Writes the messages on the API message list (FND_MSG_PUB) to the concurrent
447: -- program log file output, and to the FND log, if enabled.
448: --Parameters:
449: --IN:
450: --p_log_head
451: -- Module value to pass to FND_LOG, indicating the package, procedure, etc.

Line 451: -- Module value to pass to FND_LOG, indicating the package, procedure, etc.

447: -- program log file output, and to the FND log, if enabled.
448: --Parameters:
449: --IN:
450: --p_log_head
451: -- Module value to pass to FND_LOG, indicating the package, procedure, etc.
452: --p_progress
453: -- Label indicating the location within the procedure.
454: --End of Comments
455: -------------------------------------------------------------------------------

Line 474: -- Write the message to the FND log, if enabled.

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
476: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
477: FND_LOG.string ( log_level => FND_LOG.level_unexpected,
478: module => l_module,

Line 476: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN

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
476: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
477: FND_LOG.string ( log_level => FND_LOG.level_unexpected,
478: module => l_module,
479: message => l_msg );
480: END IF;

Line 477: FND_LOG.string ( log_level => FND_LOG.level_unexpected,

473:
474: -- Write the message to the FND log, if enabled.
475: IF PO_LOG.d_unexp THEN
476: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
477: FND_LOG.string ( log_level => FND_LOG.level_unexpected,
478: module => l_module,
479: message => l_msg );
480: END IF;
481: END IF;