求一份用存储过程写的记流水
--记流水
Exec @Rc = WebSales.dbo.P_ProductWasteBookList_Insert
@BusinessID,@BranchNo,@ShopNo,@ProductID,@ProductSerialNo,@LogDesc,@OperatorNo;
if @Rc < 0
Begin
rollBack Transaction P_ProductOrder_Add;
commit transaction;
return -3;
End
这是一个在其它存储过程中调用的记流水的存储过程语句,可我不知道记流水的存储过程怎么写, 不是哪位'大虾'可以为小弟指导指导..