DBA Data[Home] [Help]

APPS.WIP_RESOURCE_DEFAULT dependencies on WIP_CONSTANTS

Line 30: if (l_logLevel <= wip_constants.trace_logging) then

26: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
27: l_params wip_logger.param_tbl_t;
28:
29: BEGIN
30: if (l_logLevel <= wip_constants.trace_logging) then
31: l_params(1).paramName := 'p_group_id';
32: l_params(1).paramValue := p_group_id;
33: l_params(2).paramName := 'p_wip_entity_id';
34: l_params(2).paramValue := p_wip_entity_id;

Line 102: inv_convert.inv_um_convert(0,WIP_CONSTANTS.MAX_DISPLAYED_PRECISION,usage_rate_or_amount,

98: assigned_units = nvl(assigned_units,l_assigned_units),
99: applied_resource_units = decode(p_substitution_type,WIP_JOB_DETAILS.WIP_ADD,0,applied_resource_units), /*Bug 3499921*/
100: applied_resource_value = decode(p_substitution_type,WIP_JOB_DETAILS.WIP_ADD,0,applied_resource_value), /*Bug 3499921*/
101: usage_rate_or_amount = decode(usage_rate_or_amount,NULL,NULL,
102: inv_convert.inv_um_convert(0,WIP_CONSTANTS.MAX_DISPLAYED_PRECISION,usage_rate_or_amount,
103: nvl(uom_code,x_uom_code), x_uom_code,
104: null,null)), /* fix for bug#2367650 +APS*/
105: uom_code = x_uom_code,
106: basis_type = nvl(basis_type,x_basis_type),/*Fix for bug 2119945*/

Line 132: IF(l_logLevel <= wip_constants.trace_logging) then

128: and substitute_group_num is not null
129: );
130:
131: x_state_num := x_state_num + 1;
132: IF(l_logLevel <= wip_constants.trace_logging) then
133: wip_logger.exitPoint(p_procName => 'WIP_RESOURCE_DEFAULT.DEFAULT_RESOURCE',
134: p_procReturnStatus => l_retStatus,
135: p_msg => 'success',
136: x_returnStatus => l_retStatus);

Line 142: IF(l_logLevel <= wip_constants.trace_logging) then

138: exception
139: when others then
140: p_err_msg := 'WIPRSDFB(' || x_state_num || '): ' || SQLERRM;
141: p_err_code := SQLCODE;
142: IF(l_logLevel <= wip_constants.trace_logging) then
143: wip_logger.exitPoint(p_procName => 'WIP_RESOURCE_DEFAULT.DEFAULT_RESOURCE',
144: p_procReturnStatus => l_retStatus,
145: p_msg => 'exception error',
146: x_returnStatus => l_retStatus);