DBA Data[Home] [Help]

APPS.WMS_PUTAWAY_UTILS dependencies on INV_LOG_UTIL

Line 126: * This procedure will call the inv_log_util package to log the messages

122: g_grouping_rows WSH_UTIL_CORE.id_tab_type;
123:
124:
125: /**
126: * This procedure will call the inv_log_util package to log the messages
127: * This will prepend package name and the module (which is passed) to the log message
128: * This will also print the version of the file during the first execution only.
129:
130: * @param p_message The message which is to be logged

Line 140: inv_log_util.trace('$Header: WMSPUTLB.pls 120.71.12020000.15 2013/01/30 06:52:14 azjain ship $',g_pkg_name, 9);

136: p_level IN NUMBER := 9 ) IS
137: BEGIN
138:
139: IF NOT g_version_printed THEN
140: inv_log_util.trace('$Header: WMSPUTLB.pls 120.71.12020000.15 2013/01/30 06:52:14 azjain ship $',g_pkg_name, 9);
141: g_version_printed := TRUE;
142: END IF;
143:
144: inv_log_util.trace(p_message, g_pkg_name || '.' || p_module,p_level);

Line 144: inv_log_util.trace(p_message, g_pkg_name || '.' || p_module,p_level);

140: inv_log_util.trace('$Header: WMSPUTLB.pls 120.71.12020000.15 2013/01/30 06:52:14 azjain ship $',g_pkg_name, 9);
141: g_version_printed := TRUE;
142: END IF;
143:
144: inv_log_util.trace(p_message, g_pkg_name || '.' || p_module,p_level);
145: --dbms_output.put_line(substr(g_pkg_name || p_module || p_message,1,255) );
146: END DEBUG; -- Procedure debug
147:
148: