Business rule not getting called when sys_attachment , table_name column changes from sc_cart_item to sc_req_itemIssue When we Order Catalog Item with attachment sys_attachment table entry get updated with table name from sc_cart_item to sc_req_item. Customer has Created before / after update Business Rule on the sys_attachment table to create a log entry for current.table_name value which is not working. The Business rule is not getting called when sys_attachment , table_name column changes from sc_cart_item to sc_req_item ResolutionThis is reproduce-able Out of Box. Table Name field value in the sys_attachment table is not being changed by any business rule or script include so code which updates this table name would be part of service catalog platform code.Before or after business rule will not execute on an update of this table name value from sc_cart_item to sc_req_itemI have verified this by creating the Business rule on before and After Update operation of sys_attachment tableNo log get added by the gs.log method for this transaction.However, If I change the Business rule to before / after insert it create 2 log entries with current.table_name = sc_cart_item which is correct.If I update sys_attachment table_name value from list view then Business rule created on before / after update operation works correctly and it creates a log entry. Customer will need to find the alternate approach of doing this customization as this is OOB (out of box) designed behavior.