DBA Data[Home] [Help]

APPS.WIP_WS_UTIL dependencies on WIP_LOGGER

Line 1270: wip_logger.log((to_char(p_date,'hh:mi:ss') || '-' || p_msg),l_returnStatus);

1266: l_returnStatus varchar2(1);
1267: BEGIN
1268:
1269: if (g_logLevel <= wip_constants.trace_logging) then
1270: wip_logger.log((to_char(p_date,'hh:mi:ss') || '-' || p_msg),l_returnStatus);
1271: end if;
1272: END log_time;
1273:
1274:

Line 1380: wip_logger.log(p_msg,l_returnStatus);

1376: l_returnStatus varchar2(1);
1377: BEGIN
1378: fnd_file.put_line(fnd_file.log,p_msg);
1379: if (g_logLevel <= wip_constants.trace_logging) then
1380: wip_logger.log(p_msg,l_returnStatus);
1381: end if;
1382: END trace_log;
1383:
1384: