DBA Data[Home] [Help]

APPS.FLM_EKANBAN_LOGGER dependencies on FND_LOG

Line 4: --This package logs messages by using the fnd log package. It formats

1: package flm_ekanban_logger AUTHID CURRENT_USER as
2: /* $Header: flmflogs.pls 120.1 2011/12/08 18:13:58 pding noship $ */
3:
4: --This package logs messages by using the fnd log package. It formats
5: --the strings for consistency and ease of use.
6:
7: --Loggging constants. They are associated with the
8: --'FND: Debug Log Level' profile

Line 9: NO_LOGGING CONSTANT NUMBER := fnd_log.level_unexpected + 1;

5: --the strings for consistency and ease of use.
6:
7: --Loggging constants. They are associated with the
8: --'FND: Debug Log Level' profile
9: NO_LOGGING CONSTANT NUMBER := fnd_log.level_unexpected + 1;
10: TRACE_LOGGING CONSTANT NUMBER := fnd_log.level_procedure;
11: FULL_LOGGING CONSTANT NUMBER := fnd_log.level_statement;
12:
13: --These types are used to pass an arbitrarily long parameter list to

Line 10: TRACE_LOGGING CONSTANT NUMBER := fnd_log.level_procedure;

6:
7: --Loggging constants. They are associated with the
8: --'FND: Debug Log Level' profile
9: NO_LOGGING CONSTANT NUMBER := fnd_log.level_unexpected + 1;
10: TRACE_LOGGING CONSTANT NUMBER := fnd_log.level_procedure;
11: FULL_LOGGING CONSTANT NUMBER := fnd_log.level_statement;
12:
13: --These types are used to pass an arbitrarily long parameter list to
14: --entryPoint.

Line 11: FULL_LOGGING CONSTANT NUMBER := fnd_log.level_statement;

7: --Loggging constants. They are associated with the
8: --'FND: Debug Log Level' profile
9: NO_LOGGING CONSTANT NUMBER := fnd_log.level_unexpected + 1;
10: TRACE_LOGGING CONSTANT NUMBER := fnd_log.level_procedure;
11: FULL_LOGGING CONSTANT NUMBER := fnd_log.level_statement;
12:
13: --These types are used to pass an arbitrarily long parameter list to
14: --entryPoint.
15: type param_rec_t is record(paramName VARCHAR2(255), paramValue VARCHAR2(255));