DBA Data[Home] [Help]

APPS.WMS_PUTAWAY_UTILS dependencies on INV_LOG_UTIL

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

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

Line 139: inv_log_util.trace('$Header: WMSPUTLB.pls 120.40.12010000.5 2008/10/10 08:03:59 abasheer ship $',g_pkg_name, 9);

135: p_level IN NUMBER := 9 ) IS
136: BEGIN
137:
138: IF NOT g_version_printed THEN
139: inv_log_util.trace('$Header: WMSPUTLB.pls 120.40.12010000.5 2008/10/10 08:03:59 abasheer ship $',g_pkg_name, 9);
140: g_version_printed := TRUE;
141: END IF;
142:
143: inv_log_util.trace(p_message, g_pkg_name || '.' || p_module,p_level);

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

139: inv_log_util.trace('$Header: WMSPUTLB.pls 120.40.12010000.5 2008/10/10 08:03:59 abasheer ship $',g_pkg_name, 9);
140: g_version_printed := TRUE;
141: END IF;
142:
143: inv_log_util.trace(p_message, g_pkg_name || '.' || p_module,p_level);
144: --dbms_output.put_line(substr(g_pkg_name || p_module || p_message,1,255) );
145: END DEBUG; -- Procedure debug
146:
147: