DBA Data[Home] [Help]

APPS.WIP_SCHEDULER dependencies on WIP_LOGGER

Line 39: l_params wip_logger.param_tbl_t;

35: (SELECT fnd.pk1_value
36: FROM fnd_attached_documents fnd
37: WHERE fnd.pk1_value = to_char(ops.operation_sequence_id)
38: AND fnd.entity_name = 'BOM_OPERATION_SEQUENCES');
39: l_params wip_logger.param_tbl_t;
40: l_returnStatus VARCHAR(1);
41: l_logLevel NUMBER := to_number(fnd_log.g_current_runtime_level);
42: BEGIN
43: if (l_logLevel <= wip_constants.trace_logging) then

Line 55: wip_logger.entryPoint(p_procName =>'wip_scheduler.explode_routing',

51: l_params(4).paramValue := X_Routing_Seq ;
52: l_params(5).paramName := 'routing_rev_date';
53: l_params(5).paramValue := X_Routing_Rev_Date;
54: -- write parameter value to log file
55: wip_logger.entryPoint(p_procName =>'wip_scheduler.explode_routing',
56: p_params => l_params,
57: x_returnStatus => l_returnStatus);
58: end if;
59:

Line 332: wip_logger.exitPoint(p_procName => 'wip_scheduler.explode_routing',

328:
329: END IF;
330: END LOOP;
331: if (l_logLevel <= wip_constants.trace_logging) then
332: wip_logger.exitPoint(p_procName => 'wip_scheduler.explode_routing',
333: p_procReturnStatus => 'S',
334: p_msg => 'procedure complete',
335: x_returnStatus => l_returnStatus);
336: end if;