我在一个自定义项目中实现Microsoft Dynamics eConnect 10,在测试应该写入ERP的EntryPoint方法时,当某些数据丢失或输入不正确时,它会抛出异常。
异常是描述性的,并且解释得很好,但我的问题是如何找到eConnect 10可能抛出的错误号的详尽列表?
异常示例** (错误号3442)**
Sql procedure error codes returned:
Error Number = 3442 Stored Procedure taSopLineIvcInsert Error Description = Invalid Currency, a Functional currency must be set up
Node Identifier Parameters: taSopLineIvcInsert
SOPNUMBE = RTN-VAN000000002
SOPTYPE = 4
Related Error Code Parameters for Node : taSopLineIvcInsert
CURNCYID = Z-UD$附注:在eConnect 10默认文档中未找到任何内容
发布于 2011-09-06 20:05:06
您可以通过以下方式获取错误码列表:
SELECT * FROM DYNAMICS..taErrorCodehttps://stackoverflow.com/questions/7315643
复制相似问题