MRP运算错误,急!!!
金蝶云社区-云社区用户zo4w1234
云社区用户zo4w1234
0人赞赏了该文章 510次浏览 未经作者许可,禁止转载编辑于2017年07月27日 10:15:25

计划运算错误,错误日志如下。影响使用,希望加快处理,谢谢
source: merge into t_mrp_reservelinkentry u1 using (
select t0.FBASETOTALQTY,t0.FRELATIONFORMID,t0.FRELATIONINTERID,t0.FRELATIONENTRYID,t0.FCOMPUTEID from T_MRP_SUPPLYDATA15 t0
where t0.FCOMPUTEID='0015178fdc779e2b11e77269f800a511') u2
on (u1.FSUPPLYFORMID=u2.FRELATIONFORMID and u1.FSUPPLYINTERID=u2.FRELATIONINTERID and u1.FSUPPLYENTRYID=u2.FRELATIONENTRYID and u1.FGENERATEID=u2.FCOMPUTEID)
when matched then update set u1.FBASEWILLQTY=u2.FBASETOTALQTY
message:ORA-01013: user requested cancel of current operation
stacktrace:
Server stack trace:
at Kingdee.BOS.App.Data.AbstractDatabase.ExecuteNonQuery(DbCommand command, IEnumerable`1 listParam)
at Kingdee.BOS.App.Data.Oracle.OracleDatabase.ExecuteBatch(List`1 sqlArray, Int32 batchSize, Int32 commandTimeout)
at Kingdee.BOS.App.Data.DBUtils.ExecuteBatchWithTime(Context ctx, List`1 sqlArray, Int32 batchSize, Int32 commandTimeout)

Exception rethrown at [0]:
at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
at Kingdee.BOS.Contracts.IDBService.ExecuteBatchWithTime(Context ctx, List`1 sqlArray, Int32 commandTimeout)
at Kingdee.K3.MFG.PLN.App.MrpModel.LogicUnitImpl.Mrp.TakeSnapshotMrpLogicUnit.OnExecuteLogicUnit()
at Kingdee.K3.MFG.PLN.App.MrpModel.AbstractMrpLogicUnit.Execute()
at Kingdee.K3.MFG.PLN.App.Core.MrpComputeService.RunMrp(Context ctx, DynamicObject mrpDataObject, OperateOption option)

inner exception:
source:Oracle Data Provider for .NET
message:ORA-01013: user requested cancel of current operation
stacktrace: at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure, Boolean bCheck)
at Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery()
at Kingdee.BOS.App.Data.AbstractDatabase.ExecuteNo