Viewing 3 posts - 1 through 4 (of 4 total)
My problem is VRCRAMT is not properly updating with BILLAMOUNT.
ie VRCRAMT = 0 even if BILLAMOUNT > 0
please help
PRASAD SJ
June 4, 2013 at 4:49 am
#1620870
Yes, only one record will be inserted into the table [dbo].[BILL_TRN] at a time.
June 4, 2013 at 4:10 am
#1620853
USE [FAS]
GO
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
ALTER TRIGGER [dbo].[BILL_TRN_AFTINS_TRIGGER]
ON [dbo].[BILL_TRN]
AFTER INSERT
AS
BEGIN
SET NOCOUNT ON;
IF (select i.BILL_TYPE from inserted i) = 'PURCHASE'...
June 3, 2013 at 5:28 pm
#1620749