We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4aba28 commit 98d22a4Copy full SHA for 98d22a4
Server-Side Components/Business Rules/README.md
@@ -0,0 +1,13 @@
1
+A business rule that verifies all checklist items are completed before allowing the record to progress to the next status.
2
+
3
+The business rule consists of three main parts:
4
5
+Part A: Looks up all checklists (checklist table) tied to the current record (document = current.sys_id).
6
7
+Part B: For each checklist, query the checklist_item records:
8
9
+ Only items in that checklist.
10
11
+ Only items that are not complete (complete = false).
12
13
+Part C: If any incomplete items exist, an error message is displayed and the action is aborted.
0 commit comments