DBA Data[Home] [Help]

APPS.WIP_WS_UTIL dependencies on WIP_LOGGER

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

1225: l_returnStatus varchar2(1);
1226: BEGIN
1227:
1228: if (g_logLevel <= wip_constants.trace_logging) then
1229: wip_logger.log((to_char(p_date,'hh:mi:ss') || '-' || p_msg),l_returnStatus);
1230: end if;
1231: END log_time;
1232:
1233:

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

1335: l_returnStatus varchar2(1);
1336: BEGIN
1337: fnd_file.put_line(fnd_file.log,p_msg);
1338: if (g_logLevel <= wip_constants.trace_logging) then
1339: wip_logger.log(p_msg,l_returnStatus);
1340: end if;
1341: END trace_log;
1342:
1343: