DBA Data[Home] [Help]

APPS.WMA_MATERIAL dependencies on WMA_DERIVE

Line 69: -- if(wma_derive.getTxnMode(param.environment.orgID) = wip_constants.online OR

65: return;
66: end if;
67:
68: --if online, go ahead and process the txn
69: -- if(wma_derive.getTxnMode(param.environment.orgID) = wip_constants.online OR
70: -- param.isFromSerializedPage = 1 ) then
71: -- wip_mtlProc_priv.processTemp(p_initMsgList => fnd_api.g_true,
72: -- p_processInv => fnd_api.g_true,
73: -- p_endDebug => fnd_api.g_true,

Line 142: job := wma_derive.getJob(param.jobID);

138: openPastPeriod boolean := false;
139:
140: Begin
141:
142: job := wma_derive.getJob(param.jobID);
143: if (job.wipEntityID is null) then
144: fnd_message.set_name ('WIP', 'WIP_JOB_DOES_NOT_EXIST');
145: fnd_message.set_token('INTERFACE', 'wma_material.derive', TRUE);
146: errMsg := fnd_message.get;

Line 150: item := wma_derive.getItem(param.itemID,

146: errMsg := fnd_message.get;
147: return false;
148: end if;
149:
150: item := wma_derive.getItem(param.itemID,
151: param.environment.orgID,
152: param.locatorID);
153:
154: -- First, check qty entered.

Line 202: if(wma_derive.getTxnMode(param.environment.orgID) = wip_constants.online OR

198: mtlRec.final_completion_flag := 'N';
199: mtlRec.transaction_header_id := param.transactionHeaderID;
200: mtlRec.transaction_interface_id := param.transactionIntID;
201:
202: if(wma_derive.getTxnMode(param.environment.orgID) = wip_constants.online OR
203: param.isFromSerializedPage = 1 ) then
204: mtlRec.transaction_mode := WIP_CONSTANTS.ONLINE;
205: else
206: mtlRec.transaction_mode := WIP_CONSTANTS.BACKGROUND;