DBA Data[Home] [Help]

APPS.INVKBCGN dependencies on INV_LOG_UTIL

Line 54: Internally it uses INV_LOG_UTIL.TRACE for writting

50: /*
51: This method is added as part of bug fix 2493917.
52: This method will write log messages to log file
53: for both modes, concurrent as well as standalone.
54: Internally it uses INV_LOG_UTIL.TRACE for writting
55: log messages to the log file.
56: */
57: PROCEDURE put_line(msg VARCHAR2) IS
58: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);

Line 61: INV_LOG_UTIL.TRACE(msg,g_pkg_name);

57: PROCEDURE put_line(msg VARCHAR2) IS
58: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
59: BEGIN
60: IF (l_debug = 1) THEN
61: INV_LOG_UTIL.TRACE(msg,g_pkg_name);
62: END IF;
63: END put_line;
64:
65: