DBA Data[Home] [Help]

APPS.WIP_DISCRETE_WS_MOVE dependencies on WIP_CONSTANTS

Line 33: WIP_CONSTANTS.ONLINE);

29: select mtl_material_transactions_s.nextval into x_txnHeaderID from dual;
30:
31: openPastPeriod := false;
32: x_mtlMode := nvl(to_number(fnd_profile.value('TRANSACTION_PROCESS_MODE')),
33: WIP_CONSTANTS.ONLINE);
34: if ( x_mtlMode = WIP_CONSTANTS.FORM_LEVEL ) then
35: x_mtlMode := nvl(to_number(fnd_profile.value('WIP_SHOP_FLOOR_MTL_TRANSACTION')),
36: WIP_CONSTANTS.ONLINE);
37: end if;

Line 34: if ( x_mtlMode = WIP_CONSTANTS.FORM_LEVEL ) then

30:
31: openPastPeriod := false;
32: x_mtlMode := nvl(to_number(fnd_profile.value('TRANSACTION_PROCESS_MODE')),
33: WIP_CONSTANTS.ONLINE);
34: if ( x_mtlMode = WIP_CONSTANTS.FORM_LEVEL ) then
35: x_mtlMode := nvl(to_number(fnd_profile.value('WIP_SHOP_FLOOR_MTL_TRANSACTION')),
36: WIP_CONSTANTS.ONLINE);
37: end if;
38:

Line 36: WIP_CONSTANTS.ONLINE);

32: x_mtlMode := nvl(to_number(fnd_profile.value('TRANSACTION_PROCESS_MODE')),
33: WIP_CONSTANTS.ONLINE);
34: if ( x_mtlMode = WIP_CONSTANTS.FORM_LEVEL ) then
35: x_mtlMode := nvl(to_number(fnd_profile.value('WIP_SHOP_FLOOR_MTL_TRANSACTION')),
36: WIP_CONSTANTS.ONLINE);
37: end if;
38:
39: if ( x_mtlMode <> WIP_CONSTANTS.ONLINE ) then
40: select mtl_material_transactions_s.nextval into x_compHeaderID from dual;

Line 39: if ( x_mtlMode <> WIP_CONSTANTS.ONLINE ) then

35: x_mtlMode := nvl(to_number(fnd_profile.value('WIP_SHOP_FLOOR_MTL_TRANSACTION')),
36: WIP_CONSTANTS.ONLINE);
37: end if;
38:
39: if ( x_mtlMode <> WIP_CONSTANTS.ONLINE ) then
40: select mtl_material_transactions_s.nextval into x_compHeaderID from dual;
41: else
42: x_compHeaderID := x_txnHeaderID;
43: end if;

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

114: l_totalNum := 0;
115: l_logLevel := to_number(fnd_log.g_current_runtime_level);
116: savepoint dsmove1;
117:
118: if ( l_logLevel <= wip_constants.trace_logging) then
119: l_params(1).paramName := 'not printing params';
120: l_params(1).paramValue := ' ';
121: wip_logger.entryPoint(p_procName => 'wip_discrete_ws_move.insertMoveRecord',
122: p_params => l_params,

Line 244: if ( moveData.txnMode = WIP_CONSTANTS.BACKGROUND ) then

240: moveData.txnQty,
241: moveData.txnUOM
242: );
243:
244: if ( moveData.txnMode = WIP_CONSTANTS.BACKGROUND ) then
245: return;
246: end if;
247:
248: -- process online move transactions

Line 278: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,

274: end if;
275:
276: wip_movProc_priv.processIntf(
277: p_group_id => groupID,
278: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,
279: p_time_out => 0,
280: p_move_mode => WIP_CONSTANTS.ONLINE,
281: p_bf_mode => WIP_CONSTANTS.ONLINE,
282: p_mtl_mode => moveData.mtlMode,

Line 280: p_move_mode => WIP_CONSTANTS.ONLINE,

276: wip_movProc_priv.processIntf(
277: p_group_id => groupID,
278: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,
279: p_time_out => 0,
280: p_move_mode => WIP_CONSTANTS.ONLINE,
281: p_bf_mode => WIP_CONSTANTS.ONLINE,
282: p_mtl_mode => moveData.mtlMode,
283: p_endDebug => fnd_api.g_true,
284: p_initMsgList => fnd_api.g_true,

Line 281: p_bf_mode => WIP_CONSTANTS.ONLINE,

277: p_group_id => groupID,
278: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,
279: p_time_out => 0,
280: p_move_mode => WIP_CONSTANTS.ONLINE,
281: p_bf_mode => WIP_CONSTANTS.ONLINE,
282: p_mtl_mode => moveData.mtlMode,
283: p_endDebug => fnd_api.g_true,
284: p_initMsgList => fnd_api.g_true,
285: p_insertAssy => fnd_api.g_false,

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

296: when fnd_api.g_exc_unexpected_error THEN
297: rollback to dsmove1;
298: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
299: wip_utilities.get_message_stack(p_msg => x_errMessage);
300: if (l_logLevel <= wip_constants.trace_logging) then
301: wip_logger.exitPoint(p_procName => 'wip_discrete_ws_move.insertMoveRecord',
302: p_procReturnStatus => x_returnStatus,
303: p_msg => x_errMessage,
304: x_returnStatus => l_returnStatus);

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

310: fnd_message.set_name ('WIP', 'GENERIC_ERROR');
311: fnd_message.set_token ('PROCEDURE', 'wip_discrete_ws_move.processMove');
312: fnd_message.set_token ('ERROR', SQLCODE || ' ' || SQLERRM);
313: x_errMessage := fnd_message.get;
314: if (l_logLevel <= wip_constants.trace_logging) then
315: wip_logger.exitPoint(p_procName => 'wip_discrete_ws_move.processMove',
316: p_procReturnStatus => x_returnStatus,
317: p_msg => x_errMessage,
318: x_returnStatus => l_returnStatus);