An administrator is troubleshooting why conflict detection is not running when changes are updated via a REST API integration. Which condition in the conflict detection business rule might prevent execution during API calls?
Trap 1: Conflict detection requires an interactive web browser session
Conflict detection is a server-side engine and runs via business rules regardless of interaction method.
Trap 2: REST APIs inherently disable all database business rules globally
REST APIs execute business rules unless explicitly instructed otherwise with specific headers.
Trap 3: Integration accounts lack read access to the cmdb_ci table
Lack of read access causes security errors, not silent skipping of conflict logic.
- A
Conflict detection requires an interactive web browser session
Why wrong: Conflict detection is a server-side engine and runs via business rules regardless of interaction method.
- B
The business rule checks if the update modifies schedule-related fields (like planned start/end or CI) and runs accordingly
Conflict detection only runs when fields impacting scheduling or CI assignment are modified to optimize performance.
- C
REST APIs inherently disable all database business rules globally
Why wrong: REST APIs execute business rules unless explicitly instructed otherwise with specific headers.
- D
Integration accounts lack read access to the cmdb_ci table
Why wrong: Lack of read access causes security errors, not silent skipping of conflict logic.