DBA Data[Home] [Help]

APPS.WIP_CFMPROC_PRIV dependencies on WIP_FLOWUTIL_PRIV

Line 71: wip_flowUtil_priv.createFlowSchedule(p_txnTempID,

67: -- For unscheduled work orderless completion, we should create an entry
68: -- in wip_flow_schedules and wip_entities since that is needed for resource
69: -- transactions and material transactions.
70:
71: wip_flowUtil_priv.createFlowSchedule(p_txnTempID,
72: l_returnStatus);
73: if ( l_returnStatus <> fnd_api.g_ret_sts_success ) then
74: raise processing_exception;
75: end if;

Line 108: wip_flowUtil_priv.updateFlowSchedule(p_txnTempID,

104:
105:
106: -- Step 4:
107: -- Update the flow schedule
108: wip_flowUtil_priv.updateFlowSchedule(p_txnTempID,
109: l_returnStatus);
110: if ( l_returnStatus <> fnd_api.g_ret_sts_success ) then
111: raise processing_exception;
112: end if;

Line 192: wip_flowUtil_priv.setMmttError(p_txnTempID,

188: exception
189: when processing_exception then
190: x_returnStatus := fnd_api.g_ret_sts_error;
191: rollback to wip_cfmproc_s0;
192: wip_flowUtil_priv.setMmttError(p_txnTempID,
193: 'Processing Error');
194: if (l_logLevel <= wip_constants.trace_logging) then
195: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',
196: p_procReturnStatus => x_returnStatus,

Line 203: wip_flowUtil_priv.setMmttError(p_txnTempID,

199: end if;
200: when others then
201: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
202: rollback to wip_cfmproc_s0;
203: wip_flowUtil_priv.setMmttError(p_txnTempID,
204: 'Unexpected Error');
205: if (l_logLevel <= wip_constants.trace_logging) then
206: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',
207: p_procReturnStatus => x_returnStatus,

Line 254: wip_flowUtil_priv.createFlowSchedule(p_txnInterfaceID => p_txnTmpID,

250: --need to create the flow schedule, this also updates component records
251: --so they have the proper transaction_source_id
252: if(fnd_api.to_boolean(p_processInv)) then
253: --create the flow schedule from MTI
254: wip_flowUtil_priv.createFlowSchedule(p_txnInterfaceID => p_txnTmpID,
255: x_returnStatus => x_returnStatus,
256: x_wipEntityID => l_wipEntityID);
257: else
258: --create the flow schedule from MMTT

Line 259: wip_flowUtil_priv.createFlowSchedule(p_txnTmpID => p_txnTmpID,

255: x_returnStatus => x_returnStatus,
256: x_wipEntityID => l_wipEntityID);
257: else
258: --create the flow schedule from MMTT
259: wip_flowUtil_priv.createFlowSchedule(p_txnTmpID => p_txnTmpID,
260: x_returnStatus => x_returnStatus,
261: x_wipEntityID => l_wipEntityID);
262: end if;
263: