摘要: 做Syteline System维护,用户特多要求,今天需要为用户修改一个Material Transaction Report. 具体实现如下,可以参考:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->CREATEPROCEDURE[dbo].[usp_SyteLine_GetMaterialTransactionsReport](@ConditionExpressionnvarchar(3000))ASDECLARE@sqlnvarc 阅读全文
posted @ 2010-12-08 18:50 Insus.NET 阅读(627) 评论(1) 推荐(1) 编辑
摘要: 只显示on hand quantity and wharehouse而且quantity 大于零。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->SELECTi.[item],i.[description],iw.[qty_on_hand],iw.[whse]FROM[dbo].[item]iINNERJOIN[dbo].[itemwhse]iwON(i.[item]=iw.[item])WHEREiw.[qty_on_hand]>0下 阅读全文
posted @ 2010-12-08 18:41 Insus.NET 阅读(493) 评论(0) 推荐(2) 编辑
摘要: 在Syteline system中,默认Goods Receiving Note Report格式不适合自己需求,再加上添加了一些自定义字段,因此写了一个存储过程,能在SQL查询分析器得到需要结果。代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->CREATEPROCEDURE[dbo].[usp_SyteLine_GetGoodsReceivingNoteReport](@ConditionExpressionnvarchar(3000) 阅读全文
posted @ 2010-12-08 18:32 Insus.NET 阅读(412) 评论(0) 推荐(2) 编辑