DBA Data[Home] [Help]

APPS.GCS_RULES_PROCESSOR dependencies on FND_LOG

Line 14: -- Context switches to FND_LOG for level constants can

10: -- of public procedures
11: runtimeLogLevel Number;
12: packageName CONSTANT Varchar2(30) := 'GCS_RULES_PROCESSOR';
13:
14: -- Context switches to FND_LOG for level constants can
15: -- be avoided by copying them here once
16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;
17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;

Line 16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;

12: packageName CONSTANT Varchar2(30) := 'GCS_RULES_PROCESSOR';
13:
14: -- Context switches to FND_LOG for level constants can
15: -- be avoided by copying them here once
16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;
17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;
19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;
20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;

Line 17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;

13:
14: -- Context switches to FND_LOG for level constants can
15: -- be avoided by copying them here once
16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;
17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;
19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;
20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;
21: unexpectedLogLevel CONSTANT NUMBER := FND_LOG.level_unexpected;

Line 18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;

14: -- Context switches to FND_LOG for level constants can
15: -- be avoided by copying them here once
16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;
17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;
19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;
20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;
21: unexpectedLogLevel CONSTANT NUMBER := FND_LOG.level_unexpected;
22:

Line 19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;

15: -- be avoided by copying them here once
16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;
17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;
19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;
20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;
21: unexpectedLogLevel CONSTANT NUMBER := FND_LOG.level_unexpected;
22:
23: --Exception handlers: everything that can go wrong here

Line 20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;

16: statementLogLevel CONSTANT NUMBER := FND_LOG.level_statement;
17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;
19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;
20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;
21: unexpectedLogLevel CONSTANT NUMBER := FND_LOG.level_unexpected;
22:
23: --Exception handlers: everything that can go wrong here
24: rule_has_no_steps EXCEPTION; -- p_rule_id not found in gcs_rule_steps

Line 21: unexpectedLogLevel CONSTANT NUMBER := FND_LOG.level_unexpected;

17: procedureLogLevel CONSTANT NUMBER := FND_LOG.level_procedure;
18: eventLogLevel CONSTANT NUMBER := FND_LOG.level_event;
19: exceptionLogLevel CONSTANT NUMBER := FND_LOG.level_exception;
20: errorLogLevel CONSTANT NUMBER := FND_LOG.level_error;
21: unexpectedLogLevel CONSTANT NUMBER := FND_LOG.level_unexpected;
22:
23: --Exception handlers: everything that can go wrong here
24: rule_has_no_steps EXCEPTION; -- p_rule_id not found in gcs_rule_steps
25: missing_rule_id EXCEPTION; -- an index in p_rule table is null

Line 460: FND_LOG.string(logLevel,

456: errBuf := substr(logText, 1, 5000);
457: end if;
458:
459: if logLevel >= runtimeLogLevel then
460: FND_LOG.string(logLevel,
461: rootString || logProc || '.' || logLabel,
462: errBuf);
463: end if;
464:

Line 5069: runtimeLogLevel := FND_LOG.g_current_runtime_level;

5065: procedureName := 'PROCESS_RULE';
5066:
5067: -- Make sure we have the current runtime log level
5068: -- THIS LINE OF CODE MUST BE THE FIRST EXECUTED!!
5069: runtimeLogLevel := FND_LOG.g_current_runtime_level;
5070:
5071: logString(procedureLogLevel,
5072: procedureName,
5073: 'begin',

Line 5468: runtimeLogLevel := FND_LOG.g_current_runtime_level;

5464: procedureName := 'PROCESS_RULE';
5465:
5466: -- Make sure we have the current runtime log level
5467: -- THIS LINE OF CODE MUST BE THE FIRST EXECUTED!!
5468: runtimeLogLevel := FND_LOG.g_current_runtime_level;
5469:
5470: logString(procedureLogLevel,
5471: procedureName,
5472: 'begin',

Line 5549: runtimeLogLevel := FND_LOG.g_current_runtime_level;

5545: End process_rule;
5546:
5547: -- Initialization of parameters
5548: BEGIN
5549: runtimeLogLevel := FND_LOG.g_current_runtime_level;
5550: systemDate := trunc(SYSDATE);
5551: userId := FND_GLOBAL.user_id;
5552: END GCS_RULES_PROCESSOR;