DBA Data[Home] [Help]

APPS.FUN_TRX_ENTRY_UTIL dependencies on FND_LOG

Line 200: * This procedure calls fnd_log to log debug messages *

196:
197: /****************************************************************
198: * FUNCTION : log_debug *
199: * *
200: * This procedure calls fnd_log to log debug messages *
201: * Debug Levels: *
202: * LEVEL_UNEXPECTED CONSTANT NUMBER := 6; *
203: * LEVEL_ERROR CONSTANT NUMBER := 5; *
204: * LEVEL_EXCEPTION CONSTANT NUMBER := 4; *

Line 219: l_debug_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;

215: )
216: IS
217: l_debug_level NUMBER;
218: BEGIN
219: l_debug_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
220: IF (p_log_level >= l_debug_level) THEN
221: FND_LOG.STRING(p_log_level, p_module, p_message);
222: END IF;
223: END log_debug;

Line 221: FND_LOG.STRING(p_log_level, p_module, p_message);

217: l_debug_level NUMBER;
218: BEGIN
219: l_debug_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
220: IF (p_log_level >= l_debug_level) THEN
221: FND_LOG.STRING(p_log_level, p_module, p_message);
222: END IF;
223: END log_debug;
224:
225: /*******************************************************************