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 121: if ( l_logLevel <= wip_constants.trace_logging) then

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

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

269: moveData.txnQty,
270: moveData.txnUOM
271: );
272:
273: if ( moveData.txnMode = WIP_CONSTANTS.BACKGROUND ) then
274: return;
275: end if;
276:
277: -- process online move transactions

Line 307: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,

303: end if;
304:
305: wip_movProc_priv.processIntf(
306: p_group_id => groupID,
307: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,
308: p_time_out => 0,
309: p_move_mode => WIP_CONSTANTS.ONLINE,
310: p_bf_mode => WIP_CONSTANTS.ONLINE,
311: p_mtl_mode => moveData.mtlMode,

Line 309: p_move_mode => WIP_CONSTANTS.ONLINE,

305: wip_movProc_priv.processIntf(
306: p_group_id => groupID,
307: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,
308: p_time_out => 0,
309: p_move_mode => WIP_CONSTANTS.ONLINE,
310: p_bf_mode => WIP_CONSTANTS.ONLINE,
311: p_mtl_mode => moveData.mtlMode,
312: p_endDebug => fnd_api.g_true,
313: p_initMsgList => fnd_api.g_true,

Line 310: p_bf_mode => WIP_CONSTANTS.ONLINE,

306: p_group_id => groupID,
307: p_proc_phase => WIP_CONSTANTS.MOVE_PROC,
308: p_time_out => 0,
309: p_move_mode => WIP_CONSTANTS.ONLINE,
310: p_bf_mode => WIP_CONSTANTS.ONLINE,
311: p_mtl_mode => moveData.mtlMode,
312: p_endDebug => fnd_api.g_true,
313: p_initMsgList => fnd_api.g_true,
314: p_insertAssy => fnd_api.g_false,

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

325: when fnd_api.g_exc_unexpected_error THEN
326: rollback to dsmove1;
327: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
328: wip_utilities.get_message_stack(p_msg => x_errMessage);
329: if (l_logLevel <= wip_constants.trace_logging) then
330: wip_logger.exitPoint(p_procName => 'wip_discrete_ws_move.insertMoveRecord',
331: p_procReturnStatus => x_returnStatus,
332: p_msg => x_errMessage,
333: x_returnStatus => l_returnStatus);

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

339: fnd_message.set_name ('WIP', 'GENERIC_ERROR');
340: fnd_message.set_token ('PROCEDURE', 'wip_discrete_ws_move.processMove');
341: fnd_message.set_token ('ERROR', SQLCODE || ' ' || SQLERRM);
342: x_errMessage := fnd_message.get;
343: if (l_logLevel <= wip_constants.trace_logging) then
344: wip_logger.exitPoint(p_procName => 'wip_discrete_ws_move.processMove',
345: p_procReturnStatus => x_returnStatus,
346: p_msg => x_errMessage,
347: x_returnStatus => l_returnStatus);