A company has a business rule that runs on update of the Incident table. The rule sets the caller_id field to the sys_id of the user who last modified the record. However, the rule does not fire when an update is made via web services. What is the most likely cause?
This is correct because the 'UI action only' setting limits the rule to UI-triggered updates.
Why this answer
Option A is correct because business rules can be configured to run on UI actions only, which excludes web service updates. Option B is incorrect because the condition 'current.operation() == 'update'' is typically used correctly. Option C is incorrect because web services do trigger business rules unless explicitly excluded.
Option D is incorrect because an inactive rule would never run.