Hello PavanBujji,
Most time when we see this error message, it is due to a trigger on the table that is not a core GP Trigger. I believe this will be on the SY03900 or the SOP10100 table.
The triggers i have on these tables are:
SY03900 -- No Triggers.
SOP10100 -- zDT_SOP10100U -- tr_SVC_SOP10100_D -- sopWFupdateSOP10104
Use the scripts below to review the triggers on these tables.
SP_Helptrigger SOP10100
SP_Helptrigger SY03900
If you have any additional triggers on these tables, test disabling it and determining if the issue still occurs. If it does still occurs, can you provide the results of the script below to look at all your triggers you have on your tables.
select substring(b.name,1,50) as TriggerName,a.name as TableName
from sysobjects a join sysobjects b on
a.id = b.parent_obj
where
b.xtype = 'TR' order by TableName
I will then be able to compare your triggers to mine in hopes of determining which extra ones you have.
I hope this helps!
Microsoft Support Engineer | Brandon Jarrett