Has anyone had the problem that on the MultiCurrency table Dynamics MC40200 the update trigger to the new in GP 2010 DEX_ROW_TS produces the error message:
Maximum stored procedure, function, trigger, or view nesting level exceeded ?
The trigger is :
CREATE TRIGGER [dbo].[zDT_MC40200U] ON [dbo].[MC40200] AFTER UPDATE
AS
set nocount on
BEGIN
UPDATE dbo.MC40200 SET DEX_ROW_TS = GETUTCDATE()
FROM dbo.MC40200, inserted
WHERE MC40200.CURNCYID = inserted.CURNCYID
END
set nocount off
GO
If so, how did you fix the problem?
Thank you
*This post is locked for comments